/** * QuickBooks Online Node - Version 1 * Discriminator: resource=estimate, operation=send */ interface Credentials { quickBooksOAuth2Api: CredentialReference; } export type QuickbooksV1EstimateSendParams = { resource: 'estimate'; operation: 'send'; /** * The ID of the estimate to send */ estimateId?: string | Expression | PlaceholderValue; /** * The email of the recipient of the estimate */ email?: string | Expression | PlaceholderValue; }; export type QuickbooksV1EstimateSendNode = { type: 'n8n-nodes-base.quickbooks'; version: 1; credentials?: Credentials; config: NodeConfig; };