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