github.com/grokify/go-ringcentral-client@v0.3.31/engagedigital/v1/client/model_user.go (about) 1 /* 2 * Engage Digital API 3 * 4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) 5 * 6 * API version: 1.0 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package engagedigital 11 12 import ( 13 "time" 14 ) 15 16 type User struct { 17 CategoryIds []string `json:"category_ids,omitempty"` 18 CreatedAt time.Time `json:"created_at,omitempty"` 19 Email string `json:"email,omitempty"` 20 Enabled bool `json:"enabled,omitempty"` 21 ExternalId string `json:"external_id,omitempty"` 22 Firstname string `json:"firstname,omitempty"` 23 Gender string `json:"gender,omitempty"` 24 Id string `json:"id"` 25 IdentityIds []string `json:"identity_ids,omitempty"` 26 InvitationPending bool `json:"invitation_pending,omitempty"` 27 Lastname string `json:"lastname,omitempty"` 28 Locale string `json:"locale,omitempty"` 29 Nickname string `json:"nickname,omitempty"` 30 RcUserId string `json:"rc_user_id,omitempty"` 31 RoleId string `json:"role_id,omitempty"` 32 SpokenLanguages []string `json:"spoken_languages,omitempty"` 33 TeamIds []string `json:"team_ids,omitempty"` 34 Timezone string `json:"timezone,omitempty"` 35 UpdatedAt time.Time `json:"updated_at,omitempty"` 36 }