Skip to content

Commit

Permalink
Fix issue binarywang#2411: 【微信公众号>草稿箱>获取草稿列表】新增url(点击图文消息跳转链接)、thumb_…
Browse files Browse the repository at this point in the history
…url(图文消息的封面url)字段
  • Loading branch information
wangqinggo committed Nov 29, 2021
1 parent cc6bc22 commit a7f22a6
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,16 @@ public class WxMpDraftArticles implements ToJson, Serializable {
*/
@SerializedName("only_fans_can_comment")
private Integer onlyFansCanComment;
/**
* 草稿的临时链接,点击图文消息跳转链接
*/
@SerializedName("url")
private String url;
/**
* 图文消息的封面url
*/
@SerializedName("thumb_url")
private String thumbUrl;

public static WxMpDraftArticles fromJson(String json) {
return WxGsonBuilder.create().fromJson(json, WxMpDraftArticles.class);
Expand Down

0 comments on commit a7f22a6

Please sign in to comment.