Search.../

onServiceOptionsAndVariantsDeleted( )

Developer Preview

Triggered when a serviceOptionsAndVariants object is deleted.

Syntax

function wixBookingsCatalog_onServiceOptionsAndVariantsDeleted(event: ServiceOptionsAndVariantsDeleted): void

onServiceOptionsAndVariantsDeleted Parameters

NAME
TYPE
DESCRIPTION
event
Optional
ServiceOptionsAndVariantsDeleted

Returns

This function does not return anything.

Return Type:

void

Was this helpful?

onServiceOptionsAndVariantsDeleted example

Copy Code
1
2 export function wixBookingsCatalog_onServiceOptionsAndVariantsDeleted(event) {
3 const eventId = event.metadata.id
4 const entityId = event.entity._id;
5 }
6
7