/** * 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. */ /** * Fields that uniquely reference a build. * @export * @interface InlineResponse2021AcceptedBuilds */ export interface InlineResponse2021AcceptedBuilds { /** * 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 InlineResponse2021AcceptedBuilds */ 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 InlineResponse2021AcceptedBuilds */ buildNumber: number; } export declare function InlineResponse2021AcceptedBuildsFromJSON(json: any): InlineResponse2021AcceptedBuilds; export declare function InlineResponse2021AcceptedBuildsFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2021AcceptedBuilds; export declare function InlineResponse2021AcceptedBuildsToJSON(value?: InlineResponse2021AcceptedBuilds): any;