/** * Wise Node - Version 1 * Discriminator: resource=transfer, operation=create */ interface Credentials { wiseApi: CredentialReference; } export type WiseV1TransferCreateParams = { resource: 'transfer'; operation: 'create'; /** * ID of the user profile to retrieve the balance of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @default [] */ profileId?: string | Expression; /** * ID of the quote based on which to create the transfer */ quoteId?: string | Expression | PlaceholderValue; /** * ID of the account that will receive the funds. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @default [] */ targetAccountId?: string | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Reference text to show in the recipient's bank statement */ reference?: string | Expression | PlaceholderValue; }; }; export type WiseV1TransferCreateNode = { type: 'n8n-nodes-base.wise'; version: 1; credentials?: Credentials; config: NodeConfig; };