pub struct AccountsDashboardListResponse {
pub data: Vec<AssetAccountWithBalance>,
pub next_cursor: Option<String>,
}Expand description
Paginated list of digital asset accounts for the dashboard.
JSON schema
{
"title": "AccountsDashboardListResponse",
"description": "Paginated list of digital asset accounts for the
dashboard.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"description": "The list of accounts, with balances included for
dashboard display.",
"type": "array",
"items": {
"$ref": "#/components/schemas/AssetAccountWithBalance"
}
},
"next_cursor": {
"description": "Cursor for fetching the next page of results, or
null if no more results.",
"type": "string"
}
},
"x-stainless-model": "accounts.accounts_dashboard_list_response"
}Fields§
§data: Vec<AssetAccountWithBalance>The list of accounts, with balances included for dashboard display.
next_cursor: Option<String>Cursor for fetching the next page of results, or null if no more results.
Trait Implementations§
Source§impl Clone for AccountsDashboardListResponse
impl Clone for AccountsDashboardListResponse
Source§fn clone(&self) -> AccountsDashboardListResponse
fn clone(&self) -> AccountsDashboardListResponse
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<'de> Deserialize<'de> for AccountsDashboardListResponse
impl<'de> Deserialize<'de> for AccountsDashboardListResponse
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 From<&AccountsDashboardListResponse> for AccountsDashboardListResponse
impl From<&AccountsDashboardListResponse> for AccountsDashboardListResponse
Source§fn from(value: &AccountsDashboardListResponse) -> Self
fn from(value: &AccountsDashboardListResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AccountsDashboardListResponse
impl RefUnwindSafe for AccountsDashboardListResponse
impl Send for AccountsDashboardListResponse
impl Sync for AccountsDashboardListResponse
impl Unpin for AccountsDashboardListResponse
impl UnsafeUnpin for AccountsDashboardListResponse
impl UnwindSafe for AccountsDashboardListResponse
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