/** * QuickBooks Online Node - Version 1 * Discriminator: resource=payment, operation=update */ interface Credentials { quickBooksOAuth2Api: CredentialReference; } export type QuickbooksV1PaymentUpdateParams = { resource: 'payment'; operation: 'update'; /** * The ID of the payment to update */ paymentId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Date when the transaction occurred */ TxnDate?: string | Expression; }; }; export type QuickbooksV1PaymentUpdateNode = { type: 'n8n-nodes-base.quickbooks'; version: 1; credentials?: Credentials; config: NodeConfig; };