fetch-jsd
Version: 
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
65 lines (64 loc) • 1.81 kB
TypeScript
/**
 * Service Desk Public REST API
 * Public REST API for Jira Service Desk
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { PagedLinkDTO, QueueDTO } from './';
/**
 *
 * @export
 * @interface PagedDTOQueueDTO
 */
export interface PagedDTOQueueDTO {
    /**
     * Number of items returned in the page.
     * @type {number}
     * @memberof PagedDTOQueueDTO
     */
    size?: number;
    /**
     * Index of the first item returned in the page.
     * @type {number}
     * @memberof PagedDTOQueueDTO
     */
    start?: number;
    /**
     * Number of items to be returned per page, up to the maximum set for these objects in the current implementation.
     * @type {number}
     * @memberof PagedDTOQueueDTO
     */
    limit?: number;
    /**
     * Indicates if this is the last page of records (true) or not (false).
     * @type {boolean}
     * @memberof PagedDTOQueueDTO
     */
    isLastPage?: boolean;
    /**
     * Details of the items included in the page.
     * @type {Array<QueueDTO>}
     * @memberof PagedDTOQueueDTO
     */
    values?: Array<QueueDTO>;
    /**
     *
     * @type {Array<string>}
     * @memberof PagedDTOQueueDTO
     */
    _expands?: Array<string>;
    /**
     * List of the links relating to the page.
     * @type {PagedLinkDTO}
     * @memberof PagedDTOQueueDTO
     */
    _links?: PagedLinkDTO;
}
export declare function PagedDTOQueueDTOFromJSON(json: any): PagedDTOQueueDTO;
export declare function PagedDTOQueueDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedDTOQueueDTO;
export declare function PagedDTOQueueDTOToJSON(value?: PagedDTOQueueDTO): any;