/** * Zoho CRM Node - Version 1 * Discriminator: resource=invoice, operation=get */ interface Credentials { zohoOAuth2Api: CredentialReference; } /** Get an account */ export type ZohoCrmV1InvoiceGetParams = { resource: 'invoice'; operation: 'get'; /** * ID of the invoice to retrieve */ invoiceId?: string | Expression | PlaceholderValue; }; export type ZohoCrmV1InvoiceGetNode = { type: 'n8n-nodes-base.zohoCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };