UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

31 lines (27 loc) 785 B
/** * Chargebee Node - Version 1 * Discriminator: resource=subscription, operation=cancel */ interface Credentials { chargebeeApi: CredentialReference; } /** Cancel a subscription */ export type ChargebeeV1SubscriptionCancelParams = { resource: 'subscription'; operation: 'cancel'; /** * The ID of the subscription to cancel */ subscriptionId?: string | Expression<string> | PlaceholderValue; /** * Whether it will not cancel it directly in will instead schedule the cancelation for the end of the term * @default false */ endOfTerm?: boolean | Expression<boolean>; }; export type ChargebeeV1SubscriptionCancelNode = { type: 'n8n-nodes-base.chargebee'; version: 1; credentials?: Credentials; config: NodeConfig<ChargebeeV1SubscriptionCancelParams>; };