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

me.chanjar.weixin.channel.bean.coupon.UserCouponResponse 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.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse;

/**
 * @author Zeyes
 */
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class UserCouponResponse extends WxChannelBaseResponse {

  private static final long serialVersionUID = 1434098386857953234L;
  @JsonProperty("user_coupon")
  private UserCoupon coupon;

  @JsonProperty("openid")
  private String openid;

  @JsonProperty("unionid")
  private String unionid;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy