n8n-nodes-base
Version:
Base nodes of n8n
29 lines (25 loc) • 669 B
text/typescript
/**
* 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<string> | PlaceholderValue;
/**
* The email of the recipient of the estimate
*/
email?: string | Expression<string> | PlaceholderValue;
};
export type QuickbooksV1EstimateSendNode = {
type: 'n8n-nodes-base.quickbooks';
version: 1;
credentials?: Credentials;
config: NodeConfig<QuickbooksV1EstimateSendParams>;
};