/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import { PageBeanString } from '../models'; export interface GetAllLabelsRequest { startAt?: number; maxResults?: number; } /** * no description */ export declare class LabelsApi extends runtime.BaseAPI { /** * Returns a [paginated](#pagination) list of available labels. * Get all labels */ getAllLabelsRaw(requestParameters: GetAllLabelsRequest): Promise>; /** * Returns a [paginated](#pagination) list of available labels. * Get all labels */ getAllLabels(requestParameters: GetAllLabelsRequest): Promise; }