8000 添加is_snapshotuser字段 by gap1994 · Pull Request #2779 · binarywang/WxJava · GitHub
[go: up one dir, main page]

Skip to content

添加is_snapshotuser字段 #2779

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 16, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
EFB9
Diff view
Diff view
Prev Previous commit
添加is_snapshotuser字段
  • Loading branch information
gap1994 committed Aug 12, 2022
commit 21e55dec7b7b89194f6c204556cb178ce3c947f0
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ public class WxOAuth2UserInfo implements Serializable {
@SerializedName("privilege")
private String[] privileges;
/**
* 是否为快照页模式虚拟账号,值为0时是普通用户,1时是虚拟帐号
* is_snapshotuser 是否为快照页模式虚拟账号,值为0时是普通用户,1时是虚拟帐号
*/
@SerializedName("is_snapshotuser")
private Integer snapshotuser;
private Integer snapshotUser;

public static WxOAuth2UserInfo fromJson(String json) {
return WxGsonBuilder.create().fromJson(json, WxOAuth2UserInfo.class);
Expand Down
0