weixin.popular.bean.card.update.UpdateGroupon 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.card.update;
import weixin.popular.bean.card.Groupon;
/**
* 微信卡券-卡券管理-更改卡券信息接口(团购券)-请求参数
* @author Moyq5
* @date 2016年7月30日
*/
public class UpdateGroupon extends AbstractUpdate {
/**
* 团购券
*/
private Groupon groupon;
/**
* @return 团购券
*/
public Groupon getGroupon() {
return groupon;
}
/**
* @param groupon 团购券
*/
public void setGroupon(Groupon groupon) {
this.groupon = groupon;
}
}