com.antgroup.antchain.openapi.twc.models.ContractPlatformApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;
import com.aliyun.tea.*;
public class ContractPlatformApplication extends TeaModel {
// 证件号
@NameInMap("id_number")
@Validation(required = true)
public String idNumber;
// 证件类型
@NameInMap("id_type")
@Validation(required = true)
public String idType;
// 企业法人名称
@NameInMap("org_legal_name")
public String orgLegalName;
// 企业法人证件号
@NameInMap("org_legal_id_number")
public String orgLegalIdNumber;
// 机构名称
@NameInMap("name")
@Validation(required = true)
public String name;
// 平台方账号id
@NameInMap("platform_id")
@Validation(required = true)
public String platformId;
public static ContractPlatformApplication build(java.util.Map map) throws Exception {
ContractPlatformApplication self = new ContractPlatformApplication();
return TeaModel.build(map, self);
}
public ContractPlatformApplication setIdNumber(String idNumber) {
this.idNumber = idNumber;
return this;
}
public String getIdNumber() {
return this.idNumber;
}
public ContractPlatformApplication setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ContractPlatformApplication setOrgLegalName(String orgLegalName) {
this.orgLegalName = orgLegalName;
return this;
}
public String getOrgLegalName() {
return this.orgLegalName;
}
public ContractPlatformApplication setOrgLegalIdNumber(String orgLegalIdNumber) {
this.orgLegalIdNumber = orgLegalIdNumber;
return this;
}
public String getOrgLegalIdNumber() {
return this.orgLegalIdNumber;
}
public ContractPlatformApplication setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ContractPlatformApplication setPlatformId(String platformId) {
this.platformId = platformId;
return this;
}
public String getPlatformId() {
return this.platformId;
}
}