Class UserDto.

UserDto

interface UserDto {
    Configuration?: UserConfiguration;
    EnableAutoLogin?: null | boolean;
    HasConfiguredEasyPassword?: boolean;
    HasConfiguredPassword?: boolean;
    HasPassword?: boolean;
    Id?: string;
    LastActivityDate?: null | string;
    LastLoginDate?: null | string;
    Name?: null | string;
    Policy?: UserPolicy;
    PrimaryImageAspectRatio?: null | number;
    PrimaryImageTag?: null | string;
    ServerId?: null | string;
    ServerName?: null | string;
}

Properties

Configuration?: UserConfiguration

UserDto

EnableAutoLogin?: null | boolean

Gets or sets whether async login is enabled or not.

UserDto

HasConfiguredEasyPassword?: boolean

Gets or sets a value indicating whether this instance has configured easy password.

UserDto

HasConfiguredPassword?: boolean

Gets or sets a value indicating whether this instance has configured password.

UserDto

HasPassword?: boolean

Gets or sets a value indicating whether this instance has password.

UserDto

Id?: string

Gets or sets the id.

UserDto

LastActivityDate?: null | string

Gets or sets the last activity date.

UserDto

LastLoginDate?: null | string

Gets or sets the last login date.

UserDto

Name?: null | string

Gets or sets the name.

UserDto

Policy?: UserPolicy

UserDto

PrimaryImageAspectRatio?: null | number

Gets or sets the primary image aspect ratio.

UserDto

PrimaryImageTag?: null | string

Gets or sets the primary image tag.

UserDto

ServerId?: null | string

Gets or sets the server identifier.

UserDto

ServerName?: null | string

Gets or sets the name of the server. This is not used by the server and is for client-side usage only.

UserDto