🎨 #1797 企业微信配置客户联系「联系我」方式接口返回增加二维码链接字段

新增联系我二维码链接,仅在scene为2时返回
This commit is contained in:
静宏 2020-10-12 10:43:59 +08:00 committed by GitHub
parent 9c91aeba6e
commit 6cc5ebdcce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,10 @@ import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
public class WxCpContactWayResult extends WxCpBaseResp {
@SerializedName("config_id")
private String configId;
@SerializedName("qr_code")
private String qrCode;
public static WxCpContactWayResult fromJson(String json) {
return WxCpGsonBuilder.create().fromJson(json, WxCpContactWayResult.class);
}