All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.channel.bean.coupon.CouponInfo Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
package me.chanjar.weixin.channel.bean.coupon;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * @author Zeyes
 */
@Data
@NoArgsConstructor
public class CouponInfo extends CouponIdInfo {

  private static final long serialVersionUID = -5862063828870424262L;
  /** 优惠券类型 **/
  @JsonProperty("type")
  private Integer type;

  /** 优惠券状态 **/
  @JsonProperty("status")
  private Integer status;

  /** 优惠券创建时间 */
  @JsonProperty("create_time")
  private Long createTime;

  /** 优惠券更新时间 */
  @JsonProperty("update_time")
  private Long updateTime;

  /** 优惠券信息 */
  @JsonProperty("coupon_info")
  private CouponDetailInfo detail;

  /** 库存信息 */
  @JsonProperty("stock_info")
  private StockInfo stockInfo;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy