connectwise-rest
    Preparing search index...

    Type Alias PatchOperation

    Manage patch operation input object, usually passed in an array of operations

    type PatchOperation = {
        op: "add" | "replace" | "remove";
        path: string;
        value: unknown;
    }
    Index

    Properties

    Properties

    op: "add" | "replace" | "remove"
    path: string
    value: unknown