/**
 * Wise Node - Version 1
 * Discriminator: resource=account, operation=getCurrencies
 */


interface Credentials {
  wiseApi: CredentialReference;
}

/** Retrieve currencies in the borderless account of this user */
export type WiseV1AccountGetCurrenciesParams = {
  resource: 'account';
  operation: 'getCurrencies';
};

export type WiseV1AccountGetCurrenciesNode = {
  type: 'n8n-nodes-base.wise';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<WiseV1AccountGetCurrenciesParams>;
};