Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.47 KB

ComplexUser.md

File metadata and controls

45 lines (30 loc) · 1.47 KB

ComplexUser

Complex user schema

Properties

Name Type Description Notes
userId Integer [optional] [readonly]
username String User login [optional] [readonly]
isAdmin Boolean True if user is admin, false otherwise [optional] [readonly]
firstName String First name of the user [optional]
lastName String Last name of the user [optional]
email String Email of the user [optional]
phone String User's phone (may be cellphone or phone) [optional]
profileImage String User's profile image [optional] [readonly]
status StatusEnum User status [optional] [readonly]
created OffsetDateTime The date and time [optional]
updated OffsetDateTime The date and time [optional]
language Language [optional]
timezone String User timezone [optional] [readonly]
showRemovedContacts Boolean True if the user can see removed contacts, false otherwise [optional] [readonly]
gender GenderEnum User gender [optional]

Enum: StatusEnum

Name Value
ACTIVE "active"
INACTIVE "inactive"

Enum: GenderEnum

Name Value
MALE "male"
FEMALE "female"