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

me.chanjar.weixin.cp.bean.external.WxCpUserExternalContactList 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.Expose;
import com.google.gson.annotations.SerializedName;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;

import java.util.List;

/**
 * 
 * 外部联系人列表
 * Created by Joe Cao on 2019/6/16.
 * 参考文档:https://work.weixin.qq.com/api/doc#90001/90143/91570
 * 
* * @author Joe Cao */ public class WxCpUserExternalContactList { @SerializedName("errcode") @Expose private Long errcode; @SerializedName("errmsg") @Expose private String errmsg; @SerializedName("external_userid") @Expose private List externalUserId = null; public Long getErrcode() { return errcode; } public void setErrcode(Long errcode) { this.errcode = errcode; } public String getErrmsg() { return errmsg; } public void setErrmsg(String errmsg) { this.errmsg = errmsg; } public List getExternalUserId() { return externalUserId; } public void setExternalUserId(List externalUserId) { this.externalUserId = externalUserId; } public static WxCpUserExternalContactList fromJson(String json) { return WxCpGsonBuilder.create().fromJson(json, WxCpUserExternalContactList.class); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy