com.antgroup.antchain.openapi.ato.models.UploadMerchantexpandFileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ato Show documentation
Show all versions of openapi-ato Show documentation
Ant Chain ATO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;
import com.aliyun.tea.*;
public class UploadMerchantexpandFileRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 文件名称 包含后缀
@NameInMap("file_name")
@Validation(required = true)
public String fileName;
// ● BUSINESS_LICENSE 营业执照 ● CARD_FRONT 身份证正面 ● CARD_BACK 身份证反面 ● SPLITTING 分账
@NameInMap("biz_scene")
@Validation(required = true)
public String bizScene;
public static UploadMerchantexpandFileRequest build(java.util.Map map) throws Exception {
UploadMerchantexpandFileRequest self = new UploadMerchantexpandFileRequest();
return TeaModel.build(map, self);
}
public UploadMerchantexpandFileRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public UploadMerchantexpandFileRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public UploadMerchantexpandFileRequest setFileName(String fileName) {
this.fileName = fileName;
return this;
}
public String getFileName() {
return this.fileName;
}
public UploadMerchantexpandFileRequest setBizScene(String bizScene) {
this.bizScene = bizScene;
return this;
}
public String getBizScene() {
return this.bizScene;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy