jira.js
    Preparing search index...

    Function getPaginatedIssueTypes

    • Returns paginated list of filtered issue types

      Parameters

      • client: Client
      • Optionalparameters: {
            maxResults?: number;
            projectIds?: number[];
            query?: string;
            startAt?: number;
            "X-Requested-With"?: string;
        }
        • OptionalmaxResults?: number

          The maximum number of issue types to return.

        • OptionalprojectIds?: number[]

          The set of project ids to filter issue types.

        • Optionalquery?: string

          The string that issue type names will be matched with.

        • OptionalstartAt?: number

          The index of the first issue type to return.

        • OptionalX-Requested-With?: string
      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              isLast: boolean;
              maxResults: number;
              startAt: number;
              total?: number;
              values: {
                  avatarId?: number;
                  description?: string;
                  iconUrl?: string;
                  id?: string;
                  name?: string;
                  self?: string;
                  subtask?: boolean;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >