/** * Invoice Ninja Node - Version 2 * Discriminator: resource=task, operation=get */ interface Credentials { invoiceNinjaApi: CredentialReference; } /** Get data of a client */ export type InvoiceNinjaV2TaskGetParams = { resource: 'task'; operation: 'get'; /** * API Version * @default v5 */ apiVersion?: 'v4' | 'v5' | Expression; /** * Task ID */ taskId?: string | Expression | PlaceholderValue; /** * Options * @default {} */ options?: { /** Include * @default client */ include?: 'client' | Expression; }; }; export type InvoiceNinjaV2TaskGetNode = { type: 'n8n-nodes-base.invoiceNinja'; version: 2; credentials?: Credentials; config: NodeConfig; };