Skip to content

Commit

Permalink
Merge pull request #1 from eryajf/main
Browse files Browse the repository at this point in the history
部门用户详情添加企业邮箱字段
  • Loading branch information
wenerme authored Jun 17, 2022
2 parents 8a15771 + 214af70 commit 2ee950d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# vendor/

.idea
.vscode
ignored*
cover.html
wecom-cache.json
Expand Down
2 changes: 2 additions & 0 deletions wecom/client_contacts_more.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ type ListUserResponseItem struct {
Gender string `json:"gender"`
// Email 邮箱,代开发自建应用需要管理员授权才返回;第三方仅通讯录应用可获取;对于非第三方创建的成员,第三方通讯录应用也不可获取
Email string `json:"email"`
// BizMail 企业邮箱,代开发自建应用不返回;第三方仅通讯录应用可获取;对于非第三方创建的成员,第三方通讯录应用也不可获取;上游企业不可获取下游企业成员该字段
BizMail string `json:"biz_mail"`
// IsLeaderInDept 表示在所在的部门内是否为上级。0-否;1-是。是一个列表,数量必须与department一致。第三方仅通讯录应用可获取;对于非第三方创建的成员,第三方通讯录应用也不可获取
IsLeaderInDept []int `json:"is_leader_in_dept"`
// Avatar 头像url。 第三方仅通讯录应用可获取;对于非第三方创建的成员,第三方通讯录应用也不可获取
Expand Down

0 comments on commit 2ee950d

Please sign in to comment.