com.alipay.api.response.KoubeiTradeTicketSendCloseResponse 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.send.close response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:39:05
*/
public class KoubeiTradeTicketSendCloseResponse extends AlipayResponse {
private static final long serialVersionUID = 7411623779699247228L;
/**
* 该字段用于描述本次返回中的业务属性,现有:BIZ_ALREADY_SUCCESS(幂等业务码)。
*/
@ApiField("biz_code")
private String bizCode;
/**
* 请求id,唯一标识一次请求
*/
@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