AuthenticationInfo

interface AuthenticationInfo {
    AccessToken?: null | string;
    AppName?: null | string;
    AppVersion?: null | string;
    DateCreated?: string;
    DateLastActivity?: string;
    DateRevoked?: null | string;
    DeviceId?: null | string;
    DeviceName?: null | string;
    Id?: number;
    IsActive?: boolean;
    UserId?: string;
    UserName?: null | string;
}

Properties

AccessToken?: null | string

Gets or sets the access token.

AuthenticationInfo

AppName?: null | string

Gets or sets the name of the application.

AuthenticationInfo

AppVersion?: null | string

Gets or sets the application version.

AuthenticationInfo

DateCreated?: string

Gets or sets the date created.

AuthenticationInfo

DateLastActivity?: string

AuthenticationInfo

DateRevoked?: null | string

Gets or sets the date revoked.

AuthenticationInfo

DeviceId?: null | string

Gets or sets the device identifier.

AuthenticationInfo

DeviceName?: null | string

Gets or sets the name of the device.

AuthenticationInfo

Id?: number

Gets or sets the identifier.

AuthenticationInfo

IsActive?: boolean

Gets or sets a value indicating whether this instance is active.

AuthenticationInfo

UserId?: string

Gets or sets the user identifier.

AuthenticationInfo

UserName?: null | string

AuthenticationInfo