/** * Mercurius API * API für Merciurius. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A JSONPatch document as defined by RFC 6902 */ export interface JsonPatchOperation { /** * The operation to be performed */ op: JsonPatchOperation.OpEnum; /** * A JSON-Pointer */ path: string; /** * The value to be used within the operations. */ value?: object; /** * A string containing a JSON Pointer value. */ from?: string; } export declare namespace JsonPatchOperation { type OpEnum = 'add' | 'remove' | 'replace' | 'move' | 'copy' | 'test'; const OpEnum: { Add: OpEnum; Remove: OpEnum; Replace: OpEnum; Move: OpEnum; Copy: OpEnum; Test: OpEnum; }; }