#[derive(Debug, Deserialize, Serialize)]
pub struct AccessTokenResponse {
pub access_token: String,
pub scope: String,
pub expires_in: i64,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct GetPriceHistoryResponse {
pub candles: Vec<Candle>,
pub empty: bool,
pub symbol: String,
}
#[derive(Clone, Copy, Debug, Deserialize, Serialize)]
pub struct Candle {
pub close: f64,
pub datetime: usize,
pub high: f64,
pub low: f64,
pub open: f64,
pub volume: i64,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Mover {
pub change: f64,
pub description: String,
pub direction: String,
pub last: f64,
pub symbol: String,
pub total_volume: i64,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Account {
pub securities_account: SecuritiesAccount,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(untagged)]
pub enum SecuritiesAccount {
#[serde(rename_all = "camelCase")]
MarginAccount {
r#type: String,
account_id: String,
round_trips: usize,
is_day_trader: bool,
is_closing_only_restricted: bool,
initial_balances: InitialBalances,
current_balances: CurrentBalances,
projected_balances: ProjectedBalances,
},
}
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct InitialBalances {
pub account_value: f64,
pub accrued_interest: f64,
pub available_funds_non_marginable_trade: Option<f64>,
pub bond_value: f64,
pub buying_power: Option<f64>,
pub cash_available_for_trading: f64,
pub cash_available_for_withdrawal: Option<f64>,
pub cash_balance: f64,
pub cash_debit_call_value: Option<f64>,
pub cash_receipts: f64,
pub day_trading_buying_power: Option<f64>,
pub day_trading_buying_power_call: Option<f64>,
pub day_trading_equity_call: Option<f64>,
pub equity: Option<f64>,
pub equity_percentage: Option<f64>,
pub is_in_call: bool,
pub liquidation_value: f64,
pub long_margin_value: Option<f64>,
pub long_option_market_value: f64,
pub long_stock_value: Option<f64>,
pub maintenance_call: Option<f64>,
pub maintenance_requirement: Option<f64>,
pub margin: Option<f64>,
pub margin_balance: Option<f64>,
pub margin_equity: Option<f64>,
pub money_market_fund: f64,
pub mutual_fund_value: f64,
pub pending_deposits: f64,
pub reg_t_call: Option<f64>,
pub short_balance: Option<f64>,
pub short_margin_value: Option<f64>,
pub short_option_market_value: f64,
pub short_stock_value: f64,
pub total_cash: Option<f64>,
pub unsettled_cash: Option<f64>,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct CurrentBalances {
pub accrued_interest: f64,
pub available_funds: Option<f64>,
pub available_funds_non_marginable_trade: Option<f64>,
pub bond_value: f64,
pub buying_power: Option<f64>,
pub buying_power_non_marginable_trade: Option<f64>,
pub cash_available_for_trading: Option<f64>,
pub cash_available_for_withdrawal: Option<f64>,
pub cash_balance: f64,
pub cash_call: Option<f64>,
pub cash_debit_call_value: Option<f64>,
pub cash_receipts: f64,
pub day_trading_buying_power: Option<f64>,
pub equity: Option<f64>,
pub equity_percentage: Option<f64>,
pub liquidation_value: f64,
pub long_margin_value: Option<f64>,
pub long_market_value: f64,
pub long_non_marginable_market_value: Option<f64>,
pub long_option_market_value: f64,
pub maintenance_call: Option<f64>,
pub maintenance_requirement: Option<f64>,
pub margin_balance: Option<f64>,
pub money_market_fund: f64,
pub mutual_fund_value: f64,
pub pending_deposits: f64,
pub reg_t_call: Option<f64>,
pub savings: f64,
pub short_balance: Option<f64>,
pub short_margin_value: Option<f64>,
pub short_market_value: f64,
pub short_option_market_value: f64,
pub sma: Option<f64>,
pub total_cash: Option<f64>,
pub unsettled_cash: Option<f64>,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ProjectedBalances {
pub available_funds: Option<f64>,
pub available_funds_non_marginable_trade: Option<f64>,
pub buying_power: Option<f64>,
pub cash_available_for_trading: Option<f64>,
pub cash_available_for_withdrawal: Option<f64>,
pub day_trading_buying_power: Option<f64>,
pub day_trading_buying_power_call: Option<f64>,
pub is_in_call: Option<bool>,
pub maintenance_call: Option<f64>,
pub reg_t_call: Option<f64>,
pub stock_buying_power: Option<f64>,
}