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