Added GCUser

This commit is contained in:
Frederick Holland 2025-10-23 15:41:44 +11:00
parent 7bf15cce48
commit ff0f873dd8

View File

@ -184,3 +184,18 @@ type NotificationConversationWithAttributes struct {
SecurePause bool `json:"securePause"`
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"`
}