/** * Jira Software Cloud API * Jira Software Cloud REST API documentation * * The version of the OpenAPI document: 1001.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { InlineResponse200ColumnConfig, InlineResponse200Estimation, InlineResponse200Filter, InlineResponse200Location, InlineResponse200Ranking, InlineResponse200SubQuery } from './'; /** * * @export * @interface InlineResponse200 */ export interface InlineResponse200 { /** * * @type {number} * @memberof InlineResponse200 */ id?: number; /** * * @type {string} * @memberof InlineResponse200 */ name?: string; /** * * @type {string} * @memberof InlineResponse200 */ type?: string; /** * * @type {string} * @memberof InlineResponse200 */ self?: string; /** * * @type {InlineResponse200Location} * @memberof InlineResponse200 */ location?: InlineResponse200Location; /** * * @type {InlineResponse200Filter} * @memberof InlineResponse200 */ filter?: InlineResponse200Filter; /** * * @type {InlineResponse200SubQuery} * @memberof InlineResponse200 */ subQuery?: InlineResponse200SubQuery; /** * * @type {InlineResponse200ColumnConfig} * @memberof InlineResponse200 */ columnConfig?: InlineResponse200ColumnConfig; /** * * @type {InlineResponse200Estimation} * @memberof InlineResponse200 */ estimation?: InlineResponse200Estimation; /** * * @type {InlineResponse200Ranking} * @memberof InlineResponse200 */ ranking?: InlineResponse200Ranking; } export declare function InlineResponse200FromJSON(json: any): InlineResponse200; export declare function InlineResponse200FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse200; export declare function InlineResponse200ToJSON(value?: InlineResponse200): any;