@moneytree/mt-link-javascript-sdk
    Preparing search index...

    Interface Token

    OAuth Access Token Response described in RFC 6749 section 5.1

    interface Token {
        access_token: string;
        created_at: number;
        expires_in: number;
        refresh_token: string;
        resource_server: string;
        scope: string;
        token_type: string;
    }
    Index
    access_token: string
    created_at: number

    Creation time of the token, unix timpstamp in seconds

    expires_in: number

    The lifetime in seconds of the access token. For example, the value "3600" denotes that the access token will expire in one hour from the time the response was generated.

    refresh_token: string
    resource_server: string
    scope: string
    token_type: string