/* tslint:disable */ /* eslint-disable */ /** * backgroundprocess * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A single change that needs to be made to a resource */ export interface PatchOperation { /** * The field from where a value should be moved, when using move */ from?: string; /** * The change to perform */ op: PatchOperationOpEnum; /** * The field to perform the operation on */ path: string; /** * The value of the field, can be null */ value?: object; } export const PatchOperationOpEnum = { Add: 'ADD', Replace: 'REPLACE', Remove: 'REMOVE', Move: 'MOVE', } as const; export type PatchOperationOpEnum = (typeof PatchOperationOpEnum)[keyof typeof PatchOperationOpEnum];