Setting the last name of the Customer produces the CustomerLastNameSetMessage.

interface CustomerSetLastNameAction {
    action: "setLastName";
    lastName?: string;
}

Properties

Properties

action: "setLastName"
lastName?: string

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

Generated using TypeDoc