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

me.chanjar.weixin.channel.bean.image.UploadImageResponse Maven / Gradle / Ivy

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

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 UploadImageResponse extends WxChannelBaseResponse {

  private static final long serialVersionUID = -609315696774437877L;

  /** 图片信息 */
  @JsonProperty("pic_file")
  private ChannelImageInfo imgInfo;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy