Search.../

onPlanBuyerCanCancelUpdated( )

Syntax

function wixPricingPlans_onPlanArchived(event: PlanBuyerCanCancelUpdated): void

onPlanBuyerCanCancelUpdated Parameters

NAME
TYPE
DESCRIPTION
event
Optional
PlanBuyerCanCancelUpdated

Returns

This function does not return anything.

Return Type:

void

Was this helpful?

onPlanBuyerCanCancelUpdated example

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