/** * 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 payload used to submit (update / insert) build data. * @export * @interface BodiesSubmitBuilds */ export interface BodiesSubmitBuilds { /** * Arbitrary properties to tag the submitted builds with. These properties can be used for delete operations to e.g. clean up all builds associated with an account in the event that the account is removed from your system. Note that these properties will never be returned with build data. They are not intended for use as metadata to associate with a build. Internally they are stored as a hash so that personal information etc. is never stored within Jira. A maximum of 5 properties can be associated with a build. * @type {{ [key: string]: string; }} * @memberof BodiesSubmitBuilds */ properties?: { [key: string]: string; }; /** * A list of builds to submit to Jira. Each build may be associated with one or more Jira issue keys, and will be associated with any properties included in this request. * @type {Array} * @memberof BodiesSubmitBuilds */ builds: Array; } export declare function BodiesSubmitBuildsFromJSON(json: any): BodiesSubmitBuilds; export declare function BodiesSubmitBuildsFromJSONTyped(json: any, ignoreDiscriminator: boolean): BodiesSubmitBuilds; export declare function BodiesSubmitBuildsToJSON(value?: BodiesSubmitBuilds): any;