We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94ff00b commit a126c8eCopy full SHA for a126c8e
weixin-java-common/src/main/java/me/chanjar/weixin/common/bean/WxOAuth2UserInfo.java
@@ -53,12 +53,16 @@ public class WxOAuth2UserInfo implements Serializable {
53
*/
54
@SerializedName("unionid")
55
private String unionId;
56
-
57
/**
58
* privilege 用户特权信息,json数组,如微信沃卡用户为(chinaunicom)
59
60
@SerializedName("privilege")
61
private String[] privileges;
+ /**
62
+ * is_snapshotuser 是否为快照页模式虚拟账号,值为0时是普通用户,1时是虚拟帐号
63
+ */
64
+ @SerializedName("is_snapshotuser")
65
+ private Integer snapshotUser;
66
67
public static WxOAuth2UserInfo fromJson(String json) {
68
return WxGsonBuilder.create().fromJson(json, WxOAuth2UserInfo.class);
0 commit comments