MonoCloud Management SDK
    Preparing search index...

    Interface RefreshToken

    Refresh Token: Represents a long-lived refresh token issued to a client.

    RefreshToken

    interface RefreshToken {
        audiences: string[];
        client_id: string;
        creation_time: number;
        expiration?: number | null;
        id: string;
        is_session_bound: boolean;
        issuer?: string | null;
        scopes: string[];
        session_id?: string | null;
    }
    Index

    Properties

    audiences: string[]

    The intended audiences for which access tokens may be issued using this refresh token.

    RefreshToken

    client_id: string

    The unique identifier of the client to which the grant was issued.

    RefreshToken

    creation_time: number

    Specifies the time at which the grant was issued (in Epoch).

    RefreshToken

    expiration?: number | null

    Specifies the time at which the token expires (in Epoch).

    RefreshToken

    id: string

    The unique identifier of the grant.

    RefreshToken

    is_session_bound: boolean

    Specifies whether the token is bound to the session.

    RefreshToken

    issuer?: string | null

    The issuer that generated this token.

    RefreshToken

    scopes: string[]

    The scopes granted to this token.

    RefreshToken

    session_id?: string | null

    The unique identifier of the user session associated with this token.

    RefreshToken