com.antgroup.antchain.openapi.bot.models.NotifyPullstrategyChargeorderinfoResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-bot Show documentation
Show all versions of openapi-bot Show documentation
Ant Chain BOT SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.bot.models;
import com.aliyun.tea.*;
public class NotifyPullstrategyChargeorderinfoResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 返回参数密文
@NameInMap("data")
public String data;
// 返回消息
@NameInMap("msg")
public String msg;
// 返回值
@NameInMap("ret")
public Long ret;
// 签名,原文为ret+msg+data密文
@NameInMap("sig")
public String sig;
public static NotifyPullstrategyChargeorderinfoResponse build(java.util.Map map) throws Exception {
NotifyPullstrategyChargeorderinfoResponse self = new NotifyPullstrategyChargeorderinfoResponse();
return TeaModel.build(map, self);
}
public NotifyPullstrategyChargeorderinfoResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public NotifyPullstrategyChargeorderinfoResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public NotifyPullstrategyChargeorderinfoResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public NotifyPullstrategyChargeorderinfoResponse setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public NotifyPullstrategyChargeorderinfoResponse setMsg(String msg) {
this.msg = msg;
return this;
}
public String getMsg() {
return this.msg;
}
public NotifyPullstrategyChargeorderinfoResponse setRet(Long ret) {
this.ret = ret;
return this;
}
public Long getRet() {
return this.ret;
}
public NotifyPullstrategyChargeorderinfoResponse setSig(String sig) {
this.sig = sig;
return this;
}
public String getSig() {
return this.sig;
}
}