Interface IEmailConfigFieldPatch

interface IEmailConfigFieldPatch {
    op: "replace" | "add" | "remove";
    path: "/username" | "/serverAddress" | "/serverPort" | "/securityType" | "/emailAddress" | "/emailPassword";
    value: string;
}

Properties

Properties

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

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