interface GetProjectComponentsPaginated {
    maxResults?: number;
    orderBy?: string;
    projectIdOrKey: string;
    query?: string;
    startAt?: number;
}

Properties

maxResults?: number

The maximum number of items to return per page.

orderBy?: string

Order the results by a field:

  • description Sorts by the component description.
  • issueCount Sorts by the count of issues associated with the component.
  • lead Sorts by the user key of the component's project lead.
  • name Sorts by component name.
projectIdOrKey: string

The project ID or project key (case sensitive).

query?: string

Filter the results using a literal string. Components with a matching name or description are returned (case insensitive).

startAt?: number

The index of the first item to return in a page of results (page offset).