struct MAGES::Editor::DeveloperAuthentication::AuthorizationToken

Overview

Contains the access token and refresh token to be used for future requests. More…

struct AuthorizationToken
{
    // fields

    string AccessToken;
    string RefreshToken;
    string TokenType;
    string ExpiresIn;
    string Scope;

    // methods

    override string ToString();
};

Detailed Documentation

Contains the access token and refresh token to be used for future requests.

Fields

string AccessToken

The access token for the user.

string RefreshToken

The refresh token for the user.

string TokenType

The type of the token.

string ExpiresIn

The expiration time of the token.

string Scope

The scope of the token.

Methods

override string ToString()

To string.

Returns:

The AuthorizationToken data as a string.