com.alipay.api.response.AlipayCommerceLotteryPresentSendResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.lottery.present.send response.
*
* @author auto create
* @since 1.0, 2017-07-24 14:37:10
*/
public class AlipayCommerceLotteryPresentSendResponse extends AlipayResponse {
private static final long serialVersionUID = 4698948352225943693L;
/**
* 是否赠送成功
*/
@ApiField("send_result")
private Boolean sendResult;
public void setSendResult(Boolean sendResult) {
this.sendResult = sendResult;
}
public Boolean getSendResult( ) {
return this.sendResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy