MonoCloud Management SDK
    Preparing search index...

    Interface ApiResourceClient

    API Resource Client Response: Represents a client’s authorized access to an API resource.

    ApiResourceClient

    interface ApiResourceClient {
        client_id: string;
        creation_time: number;
        last_updated: number;
        resource_id: string;
        restricted_scopes: string[];
    }
    Index

    Properties

    client_id: string

    The unique identifier of the client application.

    ApiResourceClient

    creation_time: number

    Specifies the creation time of the client–API resource association (in Epoch).

    ApiResourceClient

    last_updated: number

    Specifies the last update time of the client–API resource association (in Epoch).

    ApiResourceClient

    resource_id: string

    The unique identifier of the API resource.

    ApiResourceClient

    restricted_scopes: string[]

    List of API scopes the client is explicitly allowed to access. When empty, the client is permitted to access all scopes defined for the API resource.

    ApiResourceClient