pub struct UserSettingUpdatePortfolioUserSettingsParameters {
pub portfolio_chart: Option<String>,
pub holding_chart: Option<String>,
pub combined: Option<bool>,
pub report_combined: Option<bool>,
pub grouping: Option<String>,
pub report_grouping: Option<String>,
pub report_currency: Option<Currency>,
pub include_sold_shares: Option<bool>,
pub report_include_sold_shares: Option<bool>,
pub benchmark_instrument_id: Option<String>,
pub taxable_show_comments: Option<bool>,
pub taxable_grouped_by_holding: Option<bool>,
}Fields§
§portfolio_chart: Option<String>The chart type to use for the portfolio: VALUE, VALUELINE, GROWTH, BENCHMARK, HIDE
holding_chart: Option<String>The chart type to use for holdings in the portfolio: PRICE, HOLDING_VALUE, BENCHMARK, HIDE
combined: Option<bool>True to combine holdings in consolidated portfolios
report_combined: Option<bool>True to combine holdings in consolidated portfolios when showing reports
grouping: Option<String>Grouping to use, as a string or integer custom group id
report_grouping: Option<String>Grouping to use for reports
report_currency: Option<Currency>Currency to use for reports
True to include sold shares in calculations
True to include sold shares in reports
benchmark_instrument_id: Option<String>Instrument ID for benchmark
taxable_show_comments: Option<bool>True to show comments on taxable income report
taxable_grouped_by_holding: Option<bool>True to show holding totals on taxable income report
Trait Implementations§
Source§impl Clone for UserSettingUpdatePortfolioUserSettingsParameters
impl Clone for UserSettingUpdatePortfolioUserSettingsParameters
Source§fn clone(&self) -> UserSettingUpdatePortfolioUserSettingsParameters
fn clone(&self) -> UserSettingUpdatePortfolioUserSettingsParameters
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 moreAuto Trait Implementations§
impl Freeze for UserSettingUpdatePortfolioUserSettingsParameters
impl RefUnwindSafe for UserSettingUpdatePortfolioUserSettingsParameters
impl Send for UserSettingUpdatePortfolioUserSettingsParameters
impl Sync for UserSettingUpdatePortfolioUserSettingsParameters
impl Unpin for UserSettingUpdatePortfolioUserSettingsParameters
impl UnwindSafe for UserSettingUpdatePortfolioUserSettingsParameters
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