pub struct ListFundingPaymentsResponse {
pub page: Option<u32>,
pub page_size: Option<u32>,
pub records: Option<Vec<FundingPaymentRecord>>,
pub total: Option<u32>,
pub total_pages: Option<u32>,
}Expand description
ListFundingPaymentsResponse
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"
},
"records": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/FundingPaymentRecord"
}
},
"total": {
"description": "Total matching funding payment records",
"examples": [
2
],
"type": [
"integer",
"null"
],
"format": "uint32"
},
"totalPages": {
"description": "Total number of pages",
"examples": [
1
],
"type": [
"integer",
"null"
],
"format": "uint32"
}
}
}Fields§
§page: Option<u32>Current page number
page_size: Option<u32>Items per page
records: Option<Vec<FundingPaymentRecord>>§total: Option<u32>Total matching funding payment records
total_pages: Option<u32>Total number of pages
Trait Implementations§
Source§impl Clone for ListFundingPaymentsResponse
impl Clone for ListFundingPaymentsResponse
Source§fn clone(&self) -> ListFundingPaymentsResponse
fn clone(&self) -> ListFundingPaymentsResponse
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 ListFundingPaymentsResponse
impl Debug for ListFundingPaymentsResponse
Source§impl<'de> Deserialize<'de> for ListFundingPaymentsResponse
impl<'de> Deserialize<'de> for ListFundingPaymentsResponse
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 ListFundingPaymentsResponse
impl RefUnwindSafe for ListFundingPaymentsResponse
impl Send for ListFundingPaymentsResponse
impl Sync for ListFundingPaymentsResponse
impl Unpin for ListFundingPaymentsResponse
impl UnsafeUnpin for ListFundingPaymentsResponse
impl UnwindSafe for ListFundingPaymentsResponse
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