com.alipay.api.response.KoubeiTradeTicketTicketcodeCancelResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.trade.ticket.ticketcode.cancel response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:39:05
*/
public class KoubeiTradeTicketTicketcodeCancelResponse extends AlipayResponse {
private static final long serialVersionUID = 6333324671886567836L;
/**
* 该字段用于描述本次返回中的业务属性,现有:BIZ_ALREADY_SUCCESS(幂等业务码)。
*/
@ApiField("biz_code")
private String bizCode;
/**
* 外部请求号,支持英文字母和数字,由开发者自行定义(不允许重复)
*/
@ApiField("request_id")
private String requestId;
public void setBizCode(String bizCode) {
this.bizCode = bizCode;
}
public String getBizCode( ) {
return this.bizCode;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRequestId( ) {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy