schwab-api-cli-core 0.1.0

Charles Schwab Trader API client for schwab-api-cli (Accounts and Trading Production)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Deserialize, Serialize};
use serde_json::Value;

pub type UserPreference = Value;

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StreamerInfo {
    pub streamer_socket_url: Option<String>,
    pub schwab_client_customer_id: Option<String>,
    pub schwab_client_correl_id: Option<String>,
    pub schwab_client_channel: Option<String>,
    pub schwab_client_function_id: Option<String>,
}