/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * 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 SimpleErrorCollection */ export interface SimpleErrorCollection { /** * The list of error messages produced by this operation. For example, \"input parameter \'key\' must be provided\" * @type {Array} * @memberof SimpleErrorCollection */ errorMessages?: Array; /** * The list of errors by parameter returned by the operation. For example,\"projectKey\": \"Project keys must start with an uppercase letter, followed by one or more uppercase alphanumeric characters.\" * @type {{ [key: string]: string; }} * @memberof SimpleErrorCollection */ errors?: { [key: string]: string; }; /** * * @type {number} * @memberof SimpleErrorCollection */ httpStatusCode?: number; } export declare function SimpleErrorCollectionFromJSON(json: any): SimpleErrorCollection; export declare function SimpleErrorCollectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimpleErrorCollection; export declare function SimpleErrorCollectionToJSON(value?: SimpleErrorCollection): any;