Class AuthToken#

Inheritance Relationships#

Base Type#

Class Documentation#

class xbe.sdk.Models.AuthToken : xbe.sdk.ModelBase#

Describes an authorization token as returned by account services.

Public Functions

AuthToken ()#
AuthToken (Object obj)

Properties

string Refresh { get; set; }#

The token used to re-authenticate in the future.

string Token { get; set; }#

The primary access token used to identify the user.

string Type { get; set; }#

The type of auth token that was returned by the service.

Guid UserUid { get; set; }#

The unique identifier of the authenticated user.

Public Static Functions

new AuthToken Parse (string json)#

Parses the given JSON encoded string into a new AuthToken instance.

Param json:

Return:

Public Static Attributes

string ACCESS = "ACCESS"#
string CHALLENGE = "CHALLENGE"#