com.antgroup.antchain.openapi.twc.models.UpdateContractUserResponse 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 UpdateContractUserResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 状态码
@NameInMap("code")
public String code;
// 状态信息
@NameInMap("message")
public String message;
// 邮箱地址
@NameInMap("email")
public String email;
// 证件号
@NameInMap("id_number")
public String idNumber;
// 证件类型
@NameInMap("id_type")
public String idType;
// 手机号码
@NameInMap("mobile")
public String mobile;
// 姓名
@NameInMap("name")
public String name;
// 用户账号id
@NameInMap("user_id")
public String userId;
public static UpdateContractUserResponse build(java.util.Map map) throws Exception {
UpdateContractUserResponse self = new UpdateContractUserResponse();
return TeaModel.build(map, self);
}
public UpdateContractUserResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public UpdateContractUserResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public UpdateContractUserResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public UpdateContractUserResponse setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public UpdateContractUserResponse setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public UpdateContractUserResponse setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public UpdateContractUserResponse setIdNumber(String idNumber) {
this.idNumber = idNumber;
return this;
}
public String getIdNumber() {
return this.idNumber;
}
public UpdateContractUserResponse setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public UpdateContractUserResponse setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
public UpdateContractUserResponse setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateContractUserResponse setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}