com.antgroup.antchain.openapi.twc.models.QueryContractAccountResponse 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 QueryContractAccountResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 业务码,0表示成功
@NameInMap("code")
public Long code;
// 业务码信息
@NameInMap("message")
public String message;
// 个人账号id
@NameInMap("account_id")
public String accountId;
// 姓名
@NameInMap("name")
public String name;
// 证件类型,详见个人证件类型说明
@NameInMap("id_type")
public String idType;
// 证件号
@NameInMap("id_number")
public String idNumber;
// 联系方式,手机号码
@NameInMap("mobile")
public String mobile;
// 联系方式,邮箱地址
@NameInMap("email")
public String email;
// 第三方平台的用户id
@NameInMap("third_party_user_id")
public String thirdPartyUserId;
public static QueryContractAccountResponse build(java.util.Map map) throws Exception {
QueryContractAccountResponse self = new QueryContractAccountResponse();
return TeaModel.build(map, self);
}
public QueryContractAccountResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public QueryContractAccountResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public QueryContractAccountResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public QueryContractAccountResponse setCode(Long code) {
this.code = code;
return this;
}
public Long getCode() {
return this.code;
}
public QueryContractAccountResponse setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public QueryContractAccountResponse setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public QueryContractAccountResponse setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public QueryContractAccountResponse setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public QueryContractAccountResponse setIdNumber(String idNumber) {
this.idNumber = idNumber;
return this;
}
public String getIdNumber() {
return this.idNumber;
}
public QueryContractAccountResponse setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
public QueryContractAccountResponse setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public QueryContractAccountResponse setThirdPartyUserId(String thirdPartyUserId) {
this.thirdPartyUserId = thirdPartyUserId;
return this;
}
public String getThirdPartyUserId() {
return this.thirdPartyUserId;
}
}