/** * 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 { InlineResponse202ErrorMessages } from './'; /** * A response returned in the case of an error. * @export * @interface InlineResponse400 */ export interface InlineResponse400 { /** * List of errors occurred. * @type {Array} * @memberof InlineResponse400 */ errorMessages: Array; } export declare function InlineResponse400FromJSON(json: any): InlineResponse400; export declare function InlineResponse400FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse400; export declare function InlineResponse400ToJSON(value?: InlineResponse400): any;