com.antgroup.antchain.openapi.bot.models.XrTicketPoolFailList 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 XrTicketPoolFailList extends TeaModel {
// 券名称
@NameInMap("xr_ticket_pool_name")
@Validation(required = true)
public String xrTicketPoolName;
// 资源id
@NameInMap("resource_id")
@Validation(required = true)
public String resourceId;
// 错误码
@NameInMap("error_code")
@Validation(required = true)
public String errorCode;
// 租户id
@NameInMap("tenant_id")
@Validation(required = true)
public String tenantId;
// 错误信息
@NameInMap("error_msg")
@Validation(required = true)
public String errorMsg;
// 核销类型
@NameInMap("xr_verification_type")
@Validation(required = true)
public String xrVerificationType;
public static XrTicketPoolFailList build(java.util.Map map) throws Exception {
XrTicketPoolFailList self = new XrTicketPoolFailList();
return TeaModel.build(map, self);
}
public XrTicketPoolFailList setXrTicketPoolName(String xrTicketPoolName) {
this.xrTicketPoolName = xrTicketPoolName;
return this;
}
public String getXrTicketPoolName() {
return this.xrTicketPoolName;
}
public XrTicketPoolFailList setResourceId(String resourceId) {
this.resourceId = resourceId;
return this;
}
public String getResourceId() {
return this.resourceId;
}
public XrTicketPoolFailList setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public XrTicketPoolFailList setTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public String getTenantId() {
return this.tenantId;
}
public XrTicketPoolFailList setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
return this;
}
public String getErrorMsg() {
return this.errorMsg;
}
public XrTicketPoolFailList setXrVerificationType(String xrVerificationType) {
this.xrVerificationType = xrVerificationType;
return this;
}
public String getXrVerificationType() {
return this.xrVerificationType;
}
}