/** * 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 { InlineResponse200ColumnConfigColumns } from './'; /** * * @export * @interface InlineResponse200ColumnConfig */ export interface InlineResponse200ColumnConfig { /** * * @type {Array} * @memberof InlineResponse200ColumnConfig */ columns?: Array; /** * * @type {string} * @memberof InlineResponse200ColumnConfig */ constraintType?: string; } export declare function InlineResponse200ColumnConfigFromJSON(json: any): InlineResponse200ColumnConfig; export declare function InlineResponse200ColumnConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse200ColumnConfig; export declare function InlineResponse200ColumnConfigToJSON(value?: InlineResponse200ColumnConfig): any;