MonoCloud Management SDK
    Preparing search index...

    Interface AuthorizationCode

    Authorization Code: Represents a short-lived authorization code issued to a client.

    AuthorizationCode

    interface AuthorizationCode {
        authorized_scopes: string[];
        client_id: string;
        creation_time: number;
        expiration?: number | null;
        id: string;
        session_id?: string | null;
    }
    Index

    Properties

    authorized_scopes: string[]

    The scopes authorized by the user and associated with this authorization code.

    AuthorizationCode

    client_id: string

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

    AuthorizationCode

    creation_time: number

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

    AuthorizationCode

    expiration?: number | null

    Specifies the time at which the authorization code expires (in Epoch).

    AuthorizationCode

    id: string

    The unique identifier of the grant.

    AuthorizationCode

    session_id?: string | null

    The unique identifier of the user session associated with this authorization code.

    AuthorizationCode