hypercall_db/types/
rfq.rs1use chrono::{DateTime, Utc};
6use hypercall_types::WalletAddress;
7use rust_decimal::Decimal;
8use serde::{Deserialize, Serialize};
9
10#[derive(Debug, Clone, Serialize, Deserialize)]
12pub struct QuoteProviderRecord {
13 pub wallet_address: WalletAddress,
14 pub tier: String,
16 pub status: String,
18 pub allowed_underlyings: Option<Vec<String>>,
20 pub max_notional_per_quote: Decimal,
21 pub max_open_notional: Decimal,
22 pub created_at: DateTime<Utc>,
23 pub updated_at: DateTime<Utc>,
24}