/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface FieldUpdateOperation { /** * The value to add to the field. */ add?: any; /** * The field value to copy from another issue. */ copy?: any; /** * The value to edit in the field. */ edit?: any; /** * The value to removed from the field. */ remove?: any; /** * The value to set in the field. */ set?: any; } //# sourceMappingURL=FieldUpdateOperation.d.ts.map