Type Alias NotificationPatch

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

type NotificationPatch = {
    op: "replace";
    path: "/read";
    value: string;
}
Index

Properties

Properties

op: "replace"

The operation to be performed.

path: "/read"

The path for the given resource field to patch.

value: string

The value to be used for this operation.