import { QuoteTradeInterface } from './quote-trade.interface'; export interface QuotePrivateRequestInterface extends QuoteTradeInterface { /** * Calculation timeout in seconds */ timeout?: number; /** * Integrator address to set fees */ integratorAddress?: string; /** * Referrer address */ referrer?: string; /** * Show failed routes in response or not */ showFailedRoutes?: boolean; /** * Show dangerous routes in response or not */ showDangerousRoutes?: boolean; }