Added User's group actions

This commit is contained in:
2018-07-05 16:15:51 +02:00
parent ca7b998c76
commit 7ec5c2ee79
3 changed files with 114 additions and 6 deletions

View File

@ -41,6 +41,19 @@ type UserResponse struct {
} `json:"ocs"`
}
type SubAdminResponse struct {
Ocs struct {
Meta struct {
Status string `json:"status"`
Statuscode int `json:"statuscode"`
Message string `json:"message"`
Totalitems string `json:"totalitems"`
Itemsperpage string `json:"itemsperpage"`
} `json:"meta"`
Data []string `json:"data"`
} `json:"ocs"`
}
type GroupListResponse struct {
Ocs struct {
Meta struct {