com.antgroup.antchain.openapi.realperson.models.VerifyFacevrfZimResponse 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 VerifyFacevrfZimResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 预留扩展结果
@NameInMap("ext_params")
public String extParams;
// ""
@NameInMap("has_next")
public String hasNext;
// ""
@NameInMap("next_protocol")
public String nextProtocol;
// 产品返回明细码
@NameInMap("product_ret_code")
public String productRetCode;
// 明细返回码
@NameInMap("ret_code_sub")
public String retCodeSub;
// 明细返回码对应的文案
@NameInMap("ret_message_sub")
public String retMessageSub;
// 验证返回明细码
@NameInMap("validation_ret_code")
public String validationRetCode;
public static VerifyFacevrfZimResponse build(java.util.Map map) throws Exception {
VerifyFacevrfZimResponse self = new VerifyFacevrfZimResponse();
return TeaModel.build(map, self);
}
public VerifyFacevrfZimResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public VerifyFacevrfZimResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public VerifyFacevrfZimResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public VerifyFacevrfZimResponse setExtParams(String extParams) {
this.extParams = extParams;
return this;
}
public String getExtParams() {
return this.extParams;
}
public VerifyFacevrfZimResponse setHasNext(String hasNext) {
this.hasNext = hasNext;
return this;
}
public String getHasNext() {
return this.hasNext;
}
public VerifyFacevrfZimResponse setNextProtocol(String nextProtocol) {
this.nextProtocol = nextProtocol;
return this;
}
public String getNextProtocol() {
return this.nextProtocol;
}
public VerifyFacevrfZimResponse setProductRetCode(String productRetCode) {
this.productRetCode = productRetCode;
return this;
}
public String getProductRetCode() {
return this.productRetCode;
}
public VerifyFacevrfZimResponse setRetCodeSub(String retCodeSub) {
this.retCodeSub = retCodeSub;
return this;
}
public String getRetCodeSub() {
return this.retCodeSub;
}
public VerifyFacevrfZimResponse setRetMessageSub(String retMessageSub) {
this.retMessageSub = retMessageSub;
return this;
}
public String getRetMessageSub() {
return this.retMessageSub;
}
public VerifyFacevrfZimResponse setValidationRetCode(String validationRetCode) {
this.validationRetCode = validationRetCode;
return this;
}
public String getValidationRetCode() {
return this.validationRetCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy