MonoCloud Management SDK
    Preparing search index...

    Interface UserClientGrants

    User Client Grants: Represents issued grants for a user-client relationship.

    UserClientGrants

    interface UserClientGrants {
        authorization_codes: number;
        client_id: string;
        consented: boolean;
        reference_tokens: number;
        refresh_tokens: number;
    }
    Index

    Properties

    authorization_codes: number

    The number of active authorization codes issued for this client.

    UserClientGrants

    client_id: string

    The unique identifier of the client for which grants were issued.

    UserClientGrants

    consented: boolean

    Indicates whether the user has granted consent for one or more scopes to this client.

    UserClientGrants

    reference_tokens: number

    The number of active reference (opaque) access tokens issued for this client.

    UserClientGrants

    refresh_tokens: number

    The number of active refresh tokens issued for this client.

    UserClientGrants