/** * Vero Node - Version 1 * Discriminator: resource=user, operation=unsubscribe */ interface Credentials { veroApi: CredentialReference; } /** Create, update and manage the subscription status of your users */ export type VeroV1UserUnsubscribeParams = { resource: 'user'; operation: 'unsubscribe'; /** * The unique identifier of the user */ id?: string | Expression | PlaceholderValue; }; export type VeroV1UserUnsubscribeNode = { type: 'n8n-nodes-base.vero'; version: 1; credentials?: Credentials; config: NodeConfig; };