/** * 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. */ /** * Error messages from an operation. * @export * @interface ErrorCollection */ export interface ErrorCollection { /** * The list of error messages produced by this operation. For example, \"input parameter \'key\' must be provided\" * @type {Array} * @memberof ErrorCollection */ 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 ErrorCollection */ errors?: { [key: string]: string; }; /** * * @type {number} * @memberof ErrorCollection */ status?: number; } export declare function ErrorCollectionFromJSON(json: any): ErrorCollection; export declare function ErrorCollectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorCollection; export declare function ErrorCollectionToJSON(value?: ErrorCollection): any;