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

io.github.biezhi.wechat.api.response.MediaResponse Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package io.github.biezhi.wechat.api.response;

import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;

/**
 * 附件响应体
 *
 * @author biezhi
 * @date 2018/1/20
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class MediaResponse extends JsonResponse {

    @SerializedName("MediaId")
    private String mediaId;

    @SerializedName("StartPos")
    private Integer startPos;

    @SerializedName("CDNThumbImgHeight")
    private Integer cdnThumbImgHeight;

    @SerializedName("CDNThumbImgWidth")
    private Integer cdnThumbImgWidth;

    @SerializedName("EncryFileName")
    private String encryFileName;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy