orgization

This commit is contained in:
wangchuxiao
2022-09-20 11:08:46 +08:00
committed by Xinwei Xiong(cubxxw-openim)
parent 3651292186
commit c82e35f55c
7 changed files with 312 additions and 87 deletions
+11
View File
@@ -108,3 +108,14 @@ type DeleteUserInDepartmentReq struct {
type DeleteUserInDepartmentResp struct {
CommResp
}
type GetUserInOrganizationReq struct {
OperationID string `json:"operationID" binding:"required"`
UserIDList []string `json:"userIDList" binding:"required"`
}
type GetUserInOrganizationResp struct {
CommResp
OrganizationUserList []*open_im_sdk.OrganizationUser `json:"organizationUserList"`
Data []map[string]interface{} `json:"data" swaggerignore:"true"`
}