/** * 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 { InlineResponse2021Key, InlineResponse202ErrorMessages } from './'; /** * A build that has not been accepted for submission, usually due to a problem with the request data. The object is comprised of the key of the rejected build and the corresponding error messages. * @export * @interface InlineResponse2021RejectedBuilds */ export interface InlineResponse2021RejectedBuilds { /** * * @type {InlineResponse2021Key} * @memberof InlineResponse2021RejectedBuilds */ key: InlineResponse2021Key; /** * The error messages for the rejected build * @type {Array} * @memberof InlineResponse2021RejectedBuilds */ errors: Array; } export declare function InlineResponse2021RejectedBuildsFromJSON(json: any): InlineResponse2021RejectedBuilds; export declare function InlineResponse2021RejectedBuildsFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2021RejectedBuilds; export declare function InlineResponse2021RejectedBuildsToJSON(value?: InlineResponse2021RejectedBuilds): any;