Setting the first name of the Customer produces the CustomerFirstNameSetMessage.

interface MyCustomerSetFirstNameAction {
    action: "setFirstName";
    firstName?: string;
}

Properties

Properties

action: "setFirstName"
firstName?: string

Value to set. If empty, any existing value is removed.

Generated using TypeDoc