Type alias CustomerGroupChangedPayload

CustomerGroupChangedPayload: {
    changeType: "ADDED";
    customerGroup: CustomerGroup;
    eventType: "customer.customer_group_changed";
} | {
    changeType: "UPDATED";
    customerGroup: CustomerGroup;
    eventType: "customer.customer_group_changed";
    previousCustomerGroup: CustomerGroup;
} | {
    changeType: "REMOVED";
    eventType: "customer.customer_group_changed";
    previousCustomerGroup: CustomerGroup;
}

Type declaration

  • changeType: "ADDED"
  • customerGroup: CustomerGroup
  • eventType: "customer.customer_group_changed"

Type declaration

Type declaration

  • changeType: "REMOVED"
  • eventType: "customer.customer_group_changed"
  • previousCustomerGroup: CustomerGroup

Generated using TypeDoc