me.chanjar.weixin.mp.bean.device.WxDeviceAuthorizeResult Maven / Gradle / Ivy
package me.chanjar.weixin.mp.bean.device;
import me.chanjar.weixin.common.util.json.WxGsonBuilder;
import java.util.List;
/**
* Created by keungtung on 10/12/2016.
*/
public class WxDeviceAuthorizeResult extends AbstractDeviceBean {
private List resp;
public static WxDeviceAuthorizeResult fromJson(String response) {
return WxGsonBuilder.create().fromJson(response, WxDeviceAuthorizeResult.class);
}
public List getResp() {
return resp;
}
public void setResp(List resp) {
this.resp = resp;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy