Search.../

onServiceUpdated( )

Developer Preview

Syntax

function wixBookingsServices_onServiceUpdated(event: ServiceUpdated): void

onServiceUpdated Parameters

NAME
TYPE
DESCRIPTION
event
Optional
ServiceUpdated

Returns

This function does not return anything.

Return Type:

void

Was this helpful?

onServiceUpdated example

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