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

me.chanjar.weixin.mp.bean.menu.WxMpGetSelfMenuInfoResult Maven / Gradle / Ivy

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

import java.io.Serializable;

import com.google.gson.annotations.SerializedName;
import lombok.Data;
import me.chanjar.weixin.common.util.json.WxGsonBuilder;
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;

/**
 * 
 * Created by Binary Wang on 2016-11-25.
 * 
* * @author Binary Wang */ @Data public class WxMpGetSelfMenuInfoResult implements Serializable { private static final long serialVersionUID = -5612495636936835166L; @SerializedName("selfmenu_info") private WxMpSelfMenuInfo selfMenuInfo; @SerializedName("is_menu_open") private Integer isMenuOpen; public static WxMpGetSelfMenuInfoResult fromJson(String json) { return WxGsonBuilder.create().fromJson(json, WxMpGetSelfMenuInfoResult.class); } @Override public String toString() { return WxMpGsonBuilder.create().toJson(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy