Sets a new ID that can be used to refer to a Customer in a human-reabable way (for use in emails, invoices, etc).

interface CustomerSetCustomerNumberAction {
    action: "setCustomerNumber";
    customerNumber?: string;
}

Properties

action: "setCustomerNumber"
customerNumber?: string

Value to set. Once set, it cannot be changed.

Generated using TypeDoc