pub struct GetPortfolioAssetsResponse {
pub assets: Option<Vec<PortfolioAssetRow>>,
pub performance: Option<PortfolioAssetsPerformance>,
pub total_spot_equity: Option<String>,
pub valuation_status: Option<GetPortfolioAssetsResponseValuationStatus>,
pub window: Option<PortfolioSeriesWindow>,
}Expand description
GetPortfolioAssetsResponse
JSON schema
{
"type": "object",
"properties": {
"assets": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/PortfolioAssetRow"
}
},
"performance": {
"$ref": "#/components/schemas/PortfolioAssetsPerformance"
},
"totalSpotEquity": {
"type": [
"string",
"null"
]
},
"valuationStatus": {
"type": [
"string",
"null"
],
"enum": [
"complete",
"partial"
]
},
"window": {
"$ref": "#/components/schemas/PortfolioSeriesWindow"
}
}
}Fields§
§assets: Option<Vec<PortfolioAssetRow>>§performance: Option<PortfolioAssetsPerformance>§total_spot_equity: Option<String>§valuation_status: Option<GetPortfolioAssetsResponseValuationStatus>§window: Option<PortfolioSeriesWindow>Trait Implementations§
Source§impl Clone for GetPortfolioAssetsResponse
impl Clone for GetPortfolioAssetsResponse
Source§fn clone(&self) -> GetPortfolioAssetsResponse
fn clone(&self) -> GetPortfolioAssetsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetPortfolioAssetsResponse
impl Debug for GetPortfolioAssetsResponse
Source§impl Default for GetPortfolioAssetsResponse
impl Default for GetPortfolioAssetsResponse
Source§impl<'de> Deserialize<'de> for GetPortfolioAssetsResponse
impl<'de> Deserialize<'de> for GetPortfolioAssetsResponse
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
Auto Trait Implementations§
impl Freeze for GetPortfolioAssetsResponse
impl RefUnwindSafe for GetPortfolioAssetsResponse
impl Send for GetPortfolioAssetsResponse
impl Sync for GetPortfolioAssetsResponse
impl Unpin for GetPortfolioAssetsResponse
impl UnsafeUnpin for GetPortfolioAssetsResponse
impl UnwindSafe for GetPortfolioAssetsResponse
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