/** *
The user on the Amazon Chime account.
*/ export interface _User { /** *The user ID.
*/ UserId: string; /** *The Amazon Chime account ID.
*/ AccountId?: string; /** *The primary email address of the user.
*/ PrimaryEmail?: string; /** *The primary phone number associated with the user.
*/ PrimaryProvisionedNumber?: string; /** *The display name of the user.
*/ DisplayName?: string; /** *The license type for the user.
*/ LicenseType?: "Basic" | "Plus" | "Pro" | "ProTrial" | string; /** *The user registration status.
*/ UserRegistrationStatus?: "Unregistered" | "Registered" | "Suspended" | string; /** *The user invite status.
*/ UserInvitationStatus?: "Pending" | "Accepted" | "Failed" | string; /** *Date and time when the user is registered, in ISO 8601 format.
*/ RegisteredOn?: Date | string | number; /** *Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.
*/ InvitedOn?: Date | string | number; /** *The user's personal meeting PIN.
*/ PersonalPIN?: string; } export interface _UnmarshalledUser extends _User { /** *Date and time when the user is registered, in ISO 8601 format.
*/ RegisteredOn?: Date; /** *Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.
*/ InvitedOn?: Date; }