Changing an address of the Customer produces the CustomerAddressChanged Message.

Either `addressId` or `addressKey` is required.
interface MyCustomerChangeAddressAction {
    action: "changeAddress";
    address: _BaseAddress;
    addressId?: string;
    addressKey?: string;
}

Properties

action: "changeAddress"
address: _BaseAddress

Value to set.

addressId?: string

id of the Address to change.

addressKey?: string

key of the Address to change.

Generated using TypeDoc