Skip to content
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

🎨 【企业微信】永久授权码信息增加authMode、isCustomizedApp字段 #2344

Merged
merged 1 commit into from
Oct 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,18 @@ public static class Agent implements Serializable {
@Deprecated
private String appid;

/**
* 授权模式,0为管理员授权;1为成员授权
*/
@SerializedName("auth_mode")
private Integer authMode;

/**
* 是否为代开发自建应用
*/
@SerializedName("is_customized_app")
private Boolean isCustomizedApp;

/**
* 应用权限
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,18 @@ public static class Agent implements Serializable {
@Deprecated
private String appid;

/**
* 授权模式,0为管理员授权;1为成员授权
*/
@SerializedName("auth_mode")
private Integer authMode;

/**
* 是否为代开发自建应用
*/
@SerializedName("is_customized_app")
private Boolean isCustomizedApp;

/**
* 应用权限
*/
Expand Down