/** * 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. */ /** * The key of the rejected build * @export * @interface InlineResponse2021Key */ export interface InlineResponse2021Key { /** * An ID that relates a sequence of builds. Depending on your system this might be a project ID, pipeline ID, plan key etc. - whatever logical unit you use to group a sequence of builds. The combination of `pipelineId` and `buildNumber` must uniquely identify the build. * @type {string} * @memberof InlineResponse2021Key */ pipelineId: string; /** * Identifies a build within the sequence of builds identified by the build `pipelineId`. Used to identify the \'most recent\' build in that sequence of builds. The combination of `pipelineId` and `buildNumber` must uniquely identify the build. * @type {number} * @memberof InlineResponse2021Key */ buildNumber: number; } export declare function InlineResponse2021KeyFromJSON(json: any): InlineResponse2021Key; export declare function InlineResponse2021KeyFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2021Key; export declare function InlineResponse2021KeyToJSON(value?: InlineResponse2021Key): any;