MonoCloud Management SDK
    Preparing search index...

    Interface UserConsentScope

    User Consent Scope: Represents a scope granted by the user as part of a consent.

    UserConsentScope

    interface UserConsentScope {
        expiration?: number | null;
        granted_on: number;
        scope: string;
    }
    Index

    Properties

    expiration?: number | null

    Specifies the time at which the granted consent expires (in Epoch).

    UserConsentScope

    granted_on: number

    Specifies the time at which consent for the scope was granted (in Epoch).

    UserConsentScope

    scope: string

    The name of the scope for which consent was granted.

    UserConsentScope