Type Alias WebIntegrationPatch

A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902.

type WebIntegrationPatch = {
    op: "replace";
    path: "/name" | "/validOrigins";
    value: string;
}
Index

Properties

Properties

op: "replace"

The operation to be performed.

path: "/name" | "/validOrigins"

A JSON Pointer.

value: string

New value to be used for this operation.