com.alipay.api.response.AntfortuneEquityInstpointPrizeexchangeUseResponse 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: antfortune.equity.instpoint.prizeexchange.use response.
*
* @author auto create
* @since 1.0, 2024-03-01 16:29:04
*/
public class AntfortuneEquityInstpointPrizeexchangeUseResponse extends AlipayResponse {
private static final long serialVersionUID = 6289798621618395173L;
/**
* 积分兑换奖品结果。
INIT: 申请中,可能成功,可能失败。需要使用相同的out_biz_no重试判定结果,一般2分钟内会判定处理结果
FAIL: 兑换失败
SUCCESS:兑换成功
*/
@ApiField("exchange_result")
private String exchangeResult;
/**
* 积分兑换奖品流水。幂等返回结果时,流水号相同
*/
@ApiField("exchange_trans_no")
private String exchangeTransNo;
public void setExchangeResult(String exchangeResult) {
this.exchangeResult = exchangeResult;
}
public String getExchangeResult( ) {
return this.exchangeResult;
}
public void setExchangeTransNo(String exchangeTransNo) {
this.exchangeTransNo = exchangeTransNo;
}
public String getExchangeTransNo( ) {
return this.exchangeTransNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy