/** * 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. */ /** * Bulk operation filter details. * @export * @interface IssueFilterForBulkPropertySet */ export interface IssueFilterForBulkPropertySet { /** * Indicates whether the bulk operation occurs only when the property is present on or absent from an issue. * @type {boolean} * @memberof IssueFilterForBulkPropertySet */ hasProperty?: boolean; /** * The value of properties to perform the bulk operation on. * @type {object} * @memberof IssueFilterForBulkPropertySet */ currentValue?: object; /** * List of issues to perform the bulk operation on. * @type {Array} * @memberof IssueFilterForBulkPropertySet */ entityIds?: Array; } export declare function IssueFilterForBulkPropertySetFromJSON(json: any): IssueFilterForBulkPropertySet; export declare function IssueFilterForBulkPropertySetFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueFilterForBulkPropertySet; export declare function IssueFilterForBulkPropertySetToJSON(value?: IssueFilterForBulkPropertySet): any;