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

    Type Alias GetStackScriptsResponses

    type GetStackScriptsResponses = {
        "200": {
            data: {
                created: string;
                deployments_active: number;
                deployments_total: number;
                description: string;
                id: number;
                images: string[];
                is_public: boolean;
                label: string;
                mine: boolean;
                rev_note: string;
                script: string;
                updated: string;
                user_defined_fields: {
                    default?: string;
                    example: string;
                    label: string;
                    manyOf?: string;
                    name: string;
                    oneOf?: string;
                }[];
                user_gravatar_id: string;
                username: string;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            created: string;
            deployments_active: number;
            deployments_total: number;
            description: string;
            id: number;
            images: string[];
            is_public: boolean;
            label: string;
            mine: boolean;
            rev_note: string;
            script: string;
            updated: string;
            user_defined_fields: {
                default?: string;
                example: string;
                label: string;
                manyOf?: string;
                name: string;
                oneOf?: string;
            }[];
            user_gravatar_id: string;
            username: string;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    A list of StackScripts available to the User, including private StackScripts owned by the User if the request is authenticated.

    Type Declaration

    • data: {
          created: string;
          deployments_active: number;
          deployments_total: number;
          description: string;
          id: number;
          images: string[];
          is_public: boolean;
          label: string;
          mine: boolean;
          rev_note: string;
          script: string;
          updated: string;
          user_defined_fields: {
              default?: string;
              example: string;
              label: string;
              manyOf?: string;
              name: string;
              oneOf?: string;
          }[];
          user_gravatar_id: string;
          username: string;
      }[]
    • 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.