com.alipay.api.response.AlipayMarketingCardBenefitDeleteResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.marketing.card.benefit.delete response.
*
* @author auto create
* @since 1.0, 2017-06-23 09:40:27
*/
public class AlipayMarketingCardBenefitDeleteResponse extends AlipayResponse {
private static final long serialVersionUID = 3181171655381636867L;
/**
* 权益删除结果;true成功,false失败
*/
@ApiField("result")
private Boolean result;
public void setResult(Boolean result) {
this.result = result;
}
public Boolean getResult( ) {
return this.result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy