MonoCloud Management SDK
    Preparing search index...

    User Consent: Represents a consent grant issued by a user to a specific client.

    UserConsent

    interface UserConsent {
        client_id: string;
        creation_time: number;
        id: string;
        scopes: UserConsentScope[];
    }
    Index

    Properties

    client_id: string

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

    UserConsent

    creation_time: number

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

    UserConsent

    id: string

    The unique identifier of the grant.

    UserConsent

    The consented scopes.

    UserConsent