Type Alias ConditionPatchInner

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

Properties

Properties

op: "replace" | "remove" | "add"

The operation to be performed.

path: string

The path for the given resource field to patch.

value?: unknown

The value to be used for this operation.