jira.js
    Preparing search index...

    Function getPaginatedStatuses

    • Returns paginated list of filtered statuses

      Parameters

      • client: Client
      • Optionalparameters: {
            issueTypeIds?: string[];
            maxResults?: number;
            projectIds?: number[];
            query?: string;
            startAt?: number;
        }
        • OptionalissueTypeIds?: string[]

          The list of issue type ids to filter statuses.

        • OptionalmaxResults?: number

          The maximum number of statuses to return.

        • OptionalprojectIds?: number[]

          The list of project ids to filter statuses.

        • Optionalquery?: string

          The string that status names will be matched with.

        • OptionalstartAt?: number

          The index of the first status to return.

      • Optionaloptions: RequestOptions

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