interface ChannelSetAddressCustomFieldAction {
    action: "setAddressCustomField";
    name: string;
    value?: any;
}

Properties

Properties

action: "setAddressCustomField"
name: string

Name of the Custom Field.

value?: any

Specifies the format of the value of the Custom Field defined by name. If value is absent or null, this field will be removed, if it exists. Removing a field that does not exist returns an InvalidOperation error.

Generated using TypeDoc