/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ErrorCollectionAsResponse { /** * The list of error messages produced by this operation. For example, "input parameter 'key' must be provided" */ 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." */ errors?: { [x: string]: string; }; status?: number; } //# sourceMappingURL=ErrorCollectionAsResponse.d.ts.map