pub struct ListSettlements {
pub start_date: String,
pub end_date: String,
pub date_type: Option<ListSettlementsDateType>,
pub page: Option<usize>,
pub size: Option<usize>,
}
Fields§
§start_date: String
§end_date: String
§date_type: Option<ListSettlementsDateType>
§page: Option<usize>
§size: Option<usize>
Implementations§
Source§impl ListSettlements
impl ListSettlements
Sourcepub fn builder() -> ListSettlementsBuilder<((), (), (), (), ())>
pub fn builder() -> ListSettlementsBuilder<((), (), (), (), ())>
Create a builder for building ListSettlements
.
On the builder, call .start_date(...)
, .end_date(...)
, .date_type(...)
(optional), .page(...)
(optional), .size(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of ListSettlements
.
Trait Implementations§
Source§impl Clone for ListSettlements
impl Clone for ListSettlements
Source§fn clone(&self) -> ListSettlements
fn clone(&self) -> ListSettlements
Returns a duplicate of the value. Read more
1.0.0 · 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 ListSettlements
impl Debug for ListSettlements
Source§impl<'de> Deserialize<'de> for ListSettlements
impl<'de> Deserialize<'de> for ListSettlements
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 ListSettlements
impl RefUnwindSafe for ListSettlements
impl Send for ListSettlements
impl Sync for ListSettlements
impl Unpin for ListSettlements
impl UnwindSafe for ListSettlements
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