Interface SystemObjectPatchOperationInterface

interface SystemObjectPatchOperationInterface {
    field: string;
    from?: string;
    operation: "replace" | "remove" | "add" | "copy" | "increment" | "move" | "transform";
    value?: any;
}

Properties

field: string
from?: string
operation: "replace" | "remove" | "add" | "copy" | "increment" | "move" | "transform"
value?: any