/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { IssueFilterForBulkPropertySet } from './'; /** * Bulk issue property update request details. * @export * @interface BulkIssuePropertyUpdateRequest */ export interface BulkIssuePropertyUpdateRequest { /** * The value of the property. The value must be a [valid](http://tools.ietf.org/html/rfc4627), non-empty JSON blob. The maximum length is 32768 characters. * @type {object} * @memberof BulkIssuePropertyUpdateRequest */ value?: object; /** * The bulk operation filter. * @type {IssueFilterForBulkPropertySet} * @memberof BulkIssuePropertyUpdateRequest */ filter?: IssueFilterForBulkPropertySet; } export declare function BulkIssuePropertyUpdateRequestFromJSON(json: any): BulkIssuePropertyUpdateRequest; export declare function BulkIssuePropertyUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BulkIssuePropertyUpdateRequest; export declare function BulkIssuePropertyUpdateRequestToJSON(value?: BulkIssuePropertyUpdateRequest): any;