pub struct ListPendingWithdrawalsResponse {
pub page: Option<u32>,
pub page_size: Option<u32>,
pub total: Option<u32>,
pub total_pages: Option<u32>,
pub withdrawals: Option<Vec<PendingWithdrawal>>,
}Expand description
ListPendingWithdrawalsResponse
JSON schema
{
"type": "object",
"properties": {
"page": {
"description": "Current page number",
"examples": [
1
],
"type": [
"integer",
"null"
],
"format": "uint32"
},
"pageSize": {
"description": "Items per page",
"examples": [
20
],
"type": [
"integer",
"null"
],
"format": "uint32"
},
"total": {
"description": "Total number of pending withdrawals for the caller",
"examples": [
3
],
"type": [
"integer",
"null"
],
"format": "uint32"
},
"totalPages": {
"description": "Total number of pages",
"examples": [
1
],
"type": [
"integer",
"null"
],
"format": "uint32"
},
"withdrawals": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/PendingWithdrawal"
}
}
}
}Fields§
§page: Option<u32>Current page number
page_size: Option<u32>Items per page
total: Option<u32>Total number of pending withdrawals for the caller
total_pages: Option<u32>Total number of pages
withdrawals: Option<Vec<PendingWithdrawal>>Trait Implementations§
Source§impl Clone for ListPendingWithdrawalsResponse
impl Clone for ListPendingWithdrawalsResponse
Source§fn clone(&self) -> ListPendingWithdrawalsResponse
fn clone(&self) -> ListPendingWithdrawalsResponse
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 ListPendingWithdrawalsResponse
impl<'de> Deserialize<'de> for ListPendingWithdrawalsResponse
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 ListPendingWithdrawalsResponse
impl RefUnwindSafe for ListPendingWithdrawalsResponse
impl Send for ListPendingWithdrawalsResponse
impl Sync for ListPendingWithdrawalsResponse
impl Unpin for ListPendingWithdrawalsResponse
impl UnsafeUnpin for ListPendingWithdrawalsResponse
impl UnwindSafe for ListPendingWithdrawalsResponse
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