weixin.popular.bean.datacube.getcardcardinfo.CardInfoResultInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean.datacube.getcardcardinfo;
import weixin.popular.bean.datacube.getcardbizuininfo.BizuinInfoResultInfo;
import com.alibaba.fastjson.annotation.JSONField;
/**
* 获取免费券数据接口-响应参数-日统计结果
*
* @author Moyq5
*
*/
public class CardInfoResultInfo extends BizuinInfoResultInfo {
/**
* 卡券ID
*/
@JSONField(name = "card_id")
private String cardId;
/**
* cardtype:0:折扣券,1:代金券,2:礼品券,3:优惠券,4:团购券
* (暂不支持拉取特殊票券类型数据,电影票、飞机票、会议门票、景区门票)
*/
@JSONField(name = "card_type")
private String cardType;
/**
* @return 卡券ID
*/
public String getCardId() {
return cardId;
}
/**
* @param cardId 卡券ID
*/
public void setCardId(String cardId) {
this.cardId = cardId;
}
/**
* cardtype:0:折扣券,1:代金券,2:礼品券,3:优惠券,4:团购券
* (暂不支持拉取特殊票券类型数据,电影票、飞机票、会议门票、景区门票)
* @return 卡券类型
*/
public String getCardType() {
return cardType;
}
/**
* cardtype:0:折扣券,1:代金券,2:礼品券,3:优惠券,4:团购券
* (暂不支持拉取特殊票券类型数据,电影票、飞机票、会议门票、景区门票)
* @param cardType 卡券类型
*/
public void setCardType(String cardType) {
this.cardType = cardType;
}
}