/** * Information about a merge operation, which creates a new customer using aggregated properties from two or more existing customers. */ export interface CustomerDeletedEventEventContextMerge { /** The IDs of the existing customers that were merged and then deleted. */ fromCustomerIds?: string[] | null; /** The ID of the new customer created by the merge. */ toCustomerId?: string | null; }