/** * 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. */ /** * A message supplied in the case of an error. * @export * @interface InlineResponse202ErrorMessages */ export interface InlineResponse202ErrorMessages { /** * A human-readable message describing the error. * @type {string} * @memberof InlineResponse202ErrorMessages */ message: string; /** * An optional trace ID that can be used by Jira developers to locate the source of the error. * @type {string} * @memberof InlineResponse202ErrorMessages */ errorTraceId?: string; } export declare function InlineResponse202ErrorMessagesFromJSON(json: any): InlineResponse202ErrorMessages; export declare function InlineResponse202ErrorMessagesFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse202ErrorMessages; export declare function InlineResponse202ErrorMessagesToJSON(value?: InlineResponse202ErrorMessages): any;