A DTO representing device information.

DeviceInfoDto

interface DeviceInfoDto {
    AccessToken?: null | string;
    AppName?: null | string;
    AppVersion?: null | string;
    Capabilities?: ClientCapabilitiesDto;
    CustomName?: null | string;
    DateLastActivity?: null | string;
    IconUrl?: null | string;
    Id?: null | string;
    LastUserId?: null | string;
    LastUserName?: null | string;
    Name?: null | string;
}

Properties

AccessToken?: null | string

Gets or sets the access token.

DeviceInfoDto

AppName?: null | string

Gets or sets the name of the application.

DeviceInfoDto

AppVersion?: null | string

Gets or sets the application version.

DeviceInfoDto

Capabilities?: ClientCapabilitiesDto

DeviceInfoDto

CustomName?: null | string

Gets or sets the custom name.

DeviceInfoDto

DateLastActivity?: null | string

Gets or sets the date last modified.

DeviceInfoDto

IconUrl?: null | string

Gets or sets the icon URL.

DeviceInfoDto

Id?: null | string

Gets or sets the identifier.

DeviceInfoDto

LastUserId?: null | string

Gets or sets the last user identifier.

DeviceInfoDto

LastUserName?: null | string

Gets or sets the last name of the user.

DeviceInfoDto

Name?: null | string

Gets or sets the name.

DeviceInfoDto