pub struct ListTransactions {
pub start_date: String,
pub end_date: String,
pub starting_after: Option<String>,
pub limit: Option<usize>,
}
Fields§
§start_date: String
§end_date: String
§starting_after: Option<String>
§limit: Option<usize>
Implementations§
Source§impl ListTransactions
impl ListTransactions
Sourcepub fn builder() -> ListTransactionsBuilder<((), (), (), ())>
pub fn builder() -> ListTransactionsBuilder<((), (), (), ())>
Create a builder for building ListTransactions
.
On the builder, call .start_date(...)
, .end_date(...)
, .starting_after(...)
(optional), .limit(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of ListTransactions
.
Trait Implementations§
Source§impl Clone for ListTransactions
impl Clone for ListTransactions
Source§fn clone(&self) -> ListTransactions
fn clone(&self) -> ListTransactions
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 ListTransactions
impl Debug for ListTransactions
Source§impl<'de> Deserialize<'de> for ListTransactions
impl<'de> Deserialize<'de> for ListTransactions
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 ListTransactions
impl RefUnwindSafe for ListTransactions
impl Send for ListTransactions
impl Sync for ListTransactions
impl Unpin for ListTransactions
impl UnwindSafe for ListTransactions
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