com.antgroup.antchain.openapi.demo.models.QueryTestFilesystemFileinfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-demo Show documentation
Show all versions of openapi-demo Show documentation
Ant Chain DEMO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class QueryTestFilesystemFileinfoRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 主键
@NameInMap("id")
@Validation(required = true)
public Long id;
// 名称
@NameInMap("name")
@Validation(required = true)
public String name;
public static QueryTestFilesystemFileinfoRequest build(java.util.Map map) throws Exception {
QueryTestFilesystemFileinfoRequest self = new QueryTestFilesystemFileinfoRequest();
return TeaModel.build(map, self);
}
public QueryTestFilesystemFileinfoRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryTestFilesystemFileinfoRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryTestFilesystemFileinfoRequest setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public QueryTestFilesystemFileinfoRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}