MonoCloud Management SDK
    Preparing search index...

    Interface ReferenceToken

    Reference Token: Represents an opaque access token issued to a client.

    ReferenceToken

    interface ReferenceToken {
        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 this token is valid.

    ReferenceToken

    client_id: string

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

    ReferenceToken

    creation_time: number

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

    ReferenceToken

    expiration?: number | null

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

    ReferenceToken

    id: string

    The unique identifier of the grant.

    ReferenceToken

    is_session_bound: boolean

    Specifies whether the token is bound to the session.

    ReferenceToken

    issuer?: string | null

    The issuer that generated this token.

    ReferenceToken

    scopes: string[]

    The scopes granted to this token.

    ReferenceToken

    session_id?: string | null

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

    ReferenceToken