/** * 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 { InlineResponse2021AcceptedBuilds, InlineResponse2021RejectedBuilds } from './'; /** * The result of a successful `submitBuilds` request. * @export * @interface InlineResponse2021 */ export interface InlineResponse2021 { /** * The keys of builds that have been accepted for submission. A build key is a composite key that consists of `pipelineId` and `buildNumber`. A build may be rejected if it was only associated with unknown issue keys, or if the submitted data for that build does not match the required schema. Note that a build that isn\'t updated due to it\'s `updateSequenceNumber` being out of order is not considered a failed submission. * @type {Array} * @memberof InlineResponse2021 */ acceptedBuilds?: Array; /** * Details of builds that have not been accepted for submission. A build may be rejected if it was only associated with unknown issue keys, or if the submitted data for the build does not match the required schema. * @type {Array} * @memberof InlineResponse2021 */ rejectedBuilds?: Array; /** * Issue keys that are not known on this Jira instance (if any). These may be invalid keys (e.g. `UTF-8` is sometimes incorrectly identified as a Jira issue key), or they may be for projects that no longer exist. If a build has been associated with issue keys other than those in this array it will still be stored against those valid keys. If a build was only associated with issue keys deemed to be invalid it won\'t be persisted. * @type {Array} * @memberof InlineResponse2021 */ unknownIssueKeys?: Array; } export declare function InlineResponse2021FromJSON(json: any): InlineResponse2021; export declare function InlineResponse2021FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2021; export declare function InlineResponse2021ToJSON(value?: InlineResponse2021): any;