@akamai/openapi-ts
    Preparing search index...

    Type Alias GetClientsResponses

    type GetClientsResponses = {
        "200": {
            data: {
                id: string;
                label: string;
                public: boolean;
                redirect_uri: string;
                secret: string;
                status: "active" | "disabled" | "suspended";
                thumbnail_url: string | null;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            id: string;
            label: string;
            public: boolean;
            redirect_uri: string;
            secret: string;
            status: "active" | "disabled" | "suspended";
            thumbnail_url: string | null;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    A paginated list of OAuth Clients.

    Type Declaration

    • data: {
          id: string;
          label: string;
          public: boolean;
          redirect_uri: string;
          secret: string;
          status: "active" | "disabled" | "suspended";
          thumbnail_url: string | null;
      }[]
    • Readonlypage: number

      Read-only The current page.

    • Readonlypages: number

      Read-only The total number of pages.

    • Readonlyresults: number

      Read-only The total number of results.