Type Alias EmailConfigFieldPatch

A JSON Patch document as defined in https://datatracker.ietf.org/doc/html/rfc6902.

type EmailConfigFieldPatch = {
    op: "replace, remove, add";
    path:
        | "/username"
        | "/serverAddress"
        | "/serverPort"
        | "/securityType"
        | "/emailAddress"
        | "/emailPassword";
    value: string;
}
Index

Properties

Properties

op: "replace, remove, add"

The operation to be performed.

path:
    | "/username"
    | "/serverAddress"
    | "/serverPort"
    | "/securityType"
    | "/emailAddress"
    | "/emailPassword"

The path for the given resource field to patch.

value: string

The value to be used for this operation.