UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

26 lines (22 loc) 573 B
/** * Chargebee Node - Version 1 * Discriminator: resource=invoice, operation=pdfUrl */ interface Credentials { chargebeeApi: CredentialReference; } /** Get URL for the invoice PDF */ export type ChargebeeV1InvoicePdfUrlParams = { resource: 'invoice'; operation: 'pdfUrl'; /** * The ID of the invoice to get */ invoiceId?: string | Expression<string> | PlaceholderValue; }; export type ChargebeeV1InvoicePdfUrlNode = { type: 'n8n-nodes-base.chargebee'; version: 1; credentials?: Credentials; config: NodeConfig<ChargebeeV1InvoicePdfUrlParams>; };