Type Alias SharingTaskRecurringPatchRequestCompliant

type SharingTaskRecurringPatchRequestCompliant = {
    op: "replace" | "remove";
    path:
        | "/name"
        | "/tags"
        | "/ownerId"
        | "/enabled"
        | "/description"
        | "/scheduleOptions"
        | "/templates"
        | "/recipients"
        | "/recipient"
        | "/sharePointFolder"
        | "/dataConnectionID"
        | "/transportChannels"
        | "/bookmarkId";
    value?: unknown;
}
Index

Properties

Properties

op: "replace" | "remove"

The operation to be performed

path:
    | "/name"
    | "/tags"
    | "/ownerId"
    | "/enabled"
    | "/description"
    | "/scheduleOptions"
    | "/templates"
    | "/recipients"
    | "/recipient"
    | "/sharePointFolder"
    | "/dataConnectionID"
    | "/transportChannels"
    | "/bookmarkId"

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

value?: unknown

The value to be used for this operation.