com.antgroup.antchain.openapi.twc.models.UpdateContractOrganizationResponse 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 UpdateContractOrganizationResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 证件号
@NameInMap("id_number")
public String idNumber;
// 证件类型
@NameInMap("id_type")
public String idType;
// 企业法人名称
@NameInMap("legal_person")
public String legalPerson;
// 企业法人证件号
@NameInMap("legal_person_id")
public String legalPersonId;
// 机构名称
@NameInMap("name")
public String name;
// 机构账号id
@NameInMap("organization_id")
public String organizationId;
public static UpdateContractOrganizationResponse build(java.util.Map map) throws Exception {
UpdateContractOrganizationResponse self = new UpdateContractOrganizationResponse();
return TeaModel.build(map, self);
}
public UpdateContractOrganizationResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public UpdateContractOrganizationResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public UpdateContractOrganizationResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public UpdateContractOrganizationResponse setIdNumber(String idNumber) {
this.idNumber = idNumber;
return this;
}
public String getIdNumber() {
return this.idNumber;
}
public UpdateContractOrganizationResponse setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public UpdateContractOrganizationResponse setLegalPerson(String legalPerson) {
this.legalPerson = legalPerson;
return this;
}
public String getLegalPerson() {
return this.legalPerson;
}
public UpdateContractOrganizationResponse setLegalPersonId(String legalPersonId) {
this.legalPersonId = legalPersonId;
return this;
}
public String getLegalPersonId() {
return this.legalPersonId;
}
public UpdateContractOrganizationResponse setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateContractOrganizationResponse setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}