/** * 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. */ /** * * @export * @interface InlineResponse2002Values */ export interface InlineResponse2002Values { /** * * @type {number} * @memberof InlineResponse2002Values */ id?: number; /** * * @type {number} * @memberof InlineResponse2002Values */ boardId?: number; /** * * @type {string} * @memberof InlineResponse2002Values */ name?: string; /** * * @type {string} * @memberof InlineResponse2002Values */ jql?: string; /** * * @type {string} * @memberof InlineResponse2002Values */ description?: string; /** * * @type {number} * @memberof InlineResponse2002Values */ position?: number; } export declare function InlineResponse2002ValuesFromJSON(json: any): InlineResponse2002Values; export declare function InlineResponse2002ValuesFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2002Values; export declare function InlineResponse2002ValuesToJSON(value?: InlineResponse2002Values): any;