pub struct AccountInformation {Show 23 fields
pub account_id: String,
pub account_type: Option<String>,
pub acct_alias: Option<String>,
pub currency: Option<String>,
pub name: Option<String>,
pub master_name: Option<String>,
pub customer_type: Option<String>,
pub date_opened: Option<NaiveDate>,
pub date_funded: Option<NaiveDate>,
pub date_closed: Option<NaiveDate>,
pub primary_email: Option<String>,
pub street_address: Option<String>,
pub street_address2: Option<String>,
pub city: Option<String>,
pub state: Option<String>,
pub country: Option<String>,
pub postal_code: Option<String>,
pub account_capabilities: Option<String>,
pub trading_permissions: Option<String>,
pub registered_rep_name: Option<String>,
pub registered_rep_phone: Option<String>,
pub ib_entity: Option<String>,
pub model: Option<String>,
}Expand description
Account information and metadata
Fields§
§account_id: StringAccount ID
account_type: Option<String>Account type
acct_alias: Option<String>Account alias
currency: Option<String>Currency
name: Option<String>Account name
master_name: Option<String>Master account
customer_type: Option<String>Customer type
date_opened: Option<NaiveDate>Date account opened
date_funded: Option<NaiveDate>Date account funded
date_closed: Option<NaiveDate>Date closed
primary_email: Option<String>Primary email
street_address: Option<String>Street address
street_address2: Option<String>Street address 2
city: Option<String>City
state: Option<String>State
country: Option<String>Country
postal_code: Option<String>Postal code
account_capabilities: Option<String>Account capabilities
trading_permissions: Option<String>Trading permissions
registered_rep_name: Option<String>Registered representative name
registered_rep_phone: Option<String>Registered representative phone
ib_entity: Option<String>IB entity
model: Option<String>Model
Trait Implementations§
Source§impl Clone for AccountInformation
impl Clone for AccountInformation
Source§fn clone(&self) -> AccountInformation
fn clone(&self) -> AccountInformation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccountInformation
impl Debug for AccountInformation
Source§impl<'de> Deserialize<'de> for AccountInformation
impl<'de> Deserialize<'de> for AccountInformation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AccountInformation
impl PartialEq for AccountInformation
Source§impl Serialize for AccountInformation
impl Serialize for AccountInformation
impl StructuralPartialEq for AccountInformation
Auto Trait Implementations§
impl Freeze for AccountInformation
impl RefUnwindSafe for AccountInformation
impl Send for AccountInformation
impl Sync for AccountInformation
impl Unpin for AccountInformation
impl UnwindSafe for AccountInformation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more