![JAR search and dependency download from the Maven repository](/logo.png)
com.antgroup.antchain.openapi.realperson.models.CreateFacevrfServerResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-realperson Show documentation
Show all versions of openapi-realperson Show documentation
Ant Chain REALPERSON SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.realperson.models;
import com.aliyun.tea.*;
public class CreateFacevrfServerResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 实人认证唯一标识
@NameInMap("certify_id")
public String certifyId;
// 认证地址。只在特定场景返回。
@NameInMap("certify_url")
public String certifyUrl;
public static CreateFacevrfServerResponse build(java.util.Map map) throws Exception {
CreateFacevrfServerResponse self = new CreateFacevrfServerResponse();
return TeaModel.build(map, self);
}
public CreateFacevrfServerResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public CreateFacevrfServerResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public CreateFacevrfServerResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public CreateFacevrfServerResponse setCertifyId(String certifyId) {
this.certifyId = certifyId;
return this;
}
public String getCertifyId() {
return this.certifyId;
}
public CreateFacevrfServerResponse setCertifyUrl(String certifyUrl) {
this.certifyUrl = certifyUrl;
return this;
}
public String getCertifyUrl() {
return this.certifyUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy