/** * Wise Node - Version 1 * Discriminator: resource=transfer, operation=getAll */ interface Credentials { wiseApi: CredentialReference; } export type WiseV1TransferGetAllParams = { resource: 'transfer'; operation: 'getAll'; /** * ID of the user profile to retrieve. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @default [] */ profileId?: string | Expression; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 5 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Range of time for filtering the transfers * @default {} */ range?: { /** Range Properties */ rangeProperties?: { /** Created Date Start */ createdDateStart?: string | Expression; /** Created Date End */ createdDateEnd?: string | Expression; }; }; /** Code of the source currency for filtering the transfers */ sourceCurrency?: string | Expression | PlaceholderValue; /** Status * @default processing */ status?: 'bounced_back' | 'cancelled' | 'charged_back' | 'funds_converted' | 'funds_refunded' | 'incoming_payment_waiting' | 'outgoing_payment_sent' | 'processing' | 'unknown' | 'waiting_recipient_input_to_proceed' | Expression; /** Code of the target currency for filtering the transfers */ targetCurrency?: string | Expression | PlaceholderValue; }; }; export type WiseV1TransferGetAllNode = { type: 'n8n-nodes-base.wise'; version: 1; credentials?: Credentials; config: NodeConfig; };