/** * QuickBooks Online Node - Version 1 * Discriminator: resource=estimate, operation=get */ interface Credentials { quickBooksOAuth2Api: CredentialReference; } export type QuickbooksV1EstimateGetParams = { resource: 'estimate'; operation: 'get'; /** * The ID of the estimate to retrieve */ estimateId?: string | Expression | PlaceholderValue; /** * Whether to download the estimate as a PDF file * @default false */ download?: boolean | Expression; /** * Put Output File in Field * @hint The name of the output binary field to put the file in * @displayOptions.show { download: [true] } * @default data */ binaryProperty?: string | Expression | PlaceholderValue; /** * Name of the file that will be downloaded * @displayOptions.show { download: [true] } */ fileName?: string | Expression | PlaceholderValue; }; export type QuickbooksV1EstimateGetNode = { type: 'n8n-nodes-base.quickbooks'; version: 1; credentials?: Credentials; config: NodeConfig; };