
com.alipay.api.domain.AlipayMarketingCardBenefitDeleteModel 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
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 会员卡模板外部权益删除
*
* @author auto create
* @since 1.0, 2017-06-23 09:40:27
*/
public class AlipayMarketingCardBenefitDeleteModel extends AlipayObject {
private static final long serialVersionUID = 7254849619482336378L;
/**
* 权益ID
*/
@ApiField("benefit_id")
private String benefitId;
/**
* 会员卡模板ID
*/
@ApiField("template_id")
private String templateId;
public String getBenefitId() {
return this.benefitId;
}
public void setBenefitId(String benefitId) {
this.benefitId = benefitId;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy