/** * 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. */ /** * Details of an operation to perform on a field. * @export * @interface FieldUpdateOperation */ export interface FieldUpdateOperation { /** * A map containing the name of a field and the value to add to it. * @type {object} * @memberof FieldUpdateOperation */ add?: object; /** * A map containing the name of a field and the value to edit in it. * @type {object} * @memberof FieldUpdateOperation */ edit?: object; /** * A map containing the name of a field and the value to removed from it. * @type {object} * @memberof FieldUpdateOperation */ remove?: object; /** * A map containing the name of a field and the value to set in it. * @type {object} * @memberof FieldUpdateOperation */ set?: object; } export declare function FieldUpdateOperationFromJSON(json: any): FieldUpdateOperation; export declare function FieldUpdateOperationFromJSONTyped(json: any, ignoreDiscriminator: boolean): FieldUpdateOperation; export declare function FieldUpdateOperationToJSON(value?: FieldUpdateOperation): any;