A class representing an authentication result.

AuthenticationResult

interface AuthenticationResult {
    AccessToken?: null | string;
    ServerId?: null | string;
    SessionInfo?: SessionInfoDto;
    User?: UserDto;
}

Properties

AccessToken?: null | string

Gets or sets the access token.

AuthenticationResult

ServerId?: null | string

Gets or sets the server id.

AuthenticationResult

SessionInfo?: SessionInfoDto

AuthenticationResult

User?: UserDto

AuthenticationResult