import { QuoteOptionsInterface } from './quote-options.interface'; import { QuoteTradeInterface } from './quote-trade.interface'; export interface QuoteRequestInterface extends QuoteTradeInterface, QuoteOptionsInterface { showFailedRoutes?: boolean; showDangerousRoutes?: boolean; depositTradeParams?: 'onlyDeposits' | 'noDeposits' | 'all'; /** * client ref_code for PrivateMode access */ privacyRefCode?: string; }