Added GCUser
This commit is contained in:
parent
7bf15cce48
commit
ff0f873dd8
@ -184,3 +184,18 @@ type NotificationConversationWithAttributes struct {
|
|||||||
SecurePause bool `json:"securePause"`
|
SecurePause bool `json:"securePause"`
|
||||||
UtilizationLabelId string `json:"utilizationLabelId"`
|
UtilizationLabelId string `json:"utilizationLabelId"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type UsersQuery struct {
|
||||||
|
Entities []GCUser `json:"entities"`
|
||||||
|
PageSize int `json:"pageSize"`
|
||||||
|
Total int `json:"total"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GCUser struct {
|
||||||
|
Id string `json:"id" gorm:"primaryKey"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
State string `json:"state"`
|
||||||
|
Username string `json:"username"`
|
||||||
|
AcdAutoAnswer bool `json:"acdAutoAnswer"`
|
||||||
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user