schwab_api/models/user.rs
1use serde::{Deserialize, Serialize};
2use serde_json::Value;
3
4pub type UserPreference = Value;
5
6#[derive(Debug, Clone, Serialize, Deserialize)]
7#[serde(rename_all = "camelCase")]
8pub struct StreamerInfo {
9 pub streamer_socket_url: Option<String>,
10 pub schwab_client_customer_id: Option<String>,
11 pub schwab_client_correl_id: Option<String>,
12 pub schwab_client_channel: Option<String>,
13 pub schwab_client_function_id: Option<String>,
14}