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

    Type Alias GetEnrolledBetaProgramsResponses

    type GetEnrolledBetaProgramsResponses = {
        "200": { page: number; pages: number; results: number } & {
            data: {
                description: string | null;
                ended: string | null;
                enrolled: string;
                id: string;
                label: string;
                started: string;
            }[];
        };
    }
    Index

    Properties

    Properties

    "200": { page: number; pages: number; results: number } & {
        data: {
            description: string | null;
            ended: string | null;
            enrolled: string;
            id: string;
            label: string;
            started: string;
        }[];
    }

    Returns a paginated list of all enrolled Beta Program objects for the Account.

    Type Declaration

    • 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.

    • data: {
          description: string | null;
          ended: string | null;
          enrolled: string;
          id: string;
          label: string;
          started: string;
      }[]