Search...
onServiceOptionsAndVariantsCreated( )
Developer Preview
Triggered when a serviceOptionsAndVariants
object is created.
Syntax
function wixBookingsCatalog_onServiceOptionsAndVariantsCreated(event: ServiceOptionsAndVariantsCreated): void
onServiceOptionsAndVariantsCreated Parameters
NAME
TYPE
DESCRIPTION
event
Optional
ServiceOptionsAndVariantsCreated
Returns
This function does not return anything.
Return Type:
void
Was this helpful?
onServiceOptionsAndVariantsCreated example
Copy Code
12 export function wixBookingsCatalog_onServiceOptionsAndVariantsCreated(event) {3 const eventId = event.metadata.id4 const entityId = event.entity._id;5 }67