
com.alipay.api.domain.KoubeiMarketingMallTradeSubscribeModel 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-05-23 14:20:27
*/
public class KoubeiMarketingMallTradeSubscribeModel extends AlipayObject {
private static final long serialVersionUID = 6169649727693224752L;
/**
* 卡模版id
*/
@ApiField("card_template_id")
private String cardTemplateId;
/**
* 商圈id
*/
@ApiField("mall_id")
private String mallId;
public String getCardTemplateId() {
return this.cardTemplateId;
}
public void setCardTemplateId(String cardTemplateId) {
this.cardTemplateId = cardTemplateId;
}
public String getMallId() {
return this.mallId;
}
public void setMallId(String mallId) {
this.mallId = mallId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy