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

me.chanjar.weixin.cp.bean.external.WxCpProductAlbumResult Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.bean.external;

import com.google.gson.annotations.SerializedName;
import lombok.Getter;
import lombok.Setter;
import me.chanjar.weixin.cp.bean.WxCpBaseResp;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;

import java.io.Serializable;

/**
 * 
 * 获取商品图册执行结果
 * 参考文档:https://work.weixin.qq.com/api/doc/90000/90135/95096#获取商品图册
 * 
* * @author Lo_ading */ @Getter @Setter public class WxCpProductAlbumResult extends WxCpBaseResp implements Serializable { private static final long serialVersionUID = 4076734101839851497L; @SerializedName("product") private WxCpProductAlbumInfo product; /** * From json wx cp product album result. * * @param json the json * @return the wx cp product album result */ public static WxCpProductAlbumResult fromJson(String json) { return WxCpGsonBuilder.create().fromJson(json, WxCpProductAlbumResult.class); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy