pub struct GetTransactionsParams {
pub location_id: String,
pub limit: Option<u32>,
pub offset: Option<u32>,
pub contact_id: Option<String>,
pub entity_id: Option<String>,
pub entity_source_type: Option<String>,
pub subscription_id: Option<String>,
pub payment_mode: Option<String>,
pub start_at: Option<String>,
pub end_at: Option<String>,
}Fields§
§location_id: String§limit: Option<u32>§offset: Option<u32>§contact_id: Option<String>§entity_id: Option<String>§entity_source_type: Option<String>§subscription_id: Option<String>§payment_mode: Option<String>§start_at: Option<String>§end_at: Option<String>Trait Implementations§
Source§impl Clone for GetTransactionsParams
impl Clone for GetTransactionsParams
Source§fn clone(&self) -> GetTransactionsParams
fn clone(&self) -> GetTransactionsParams
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 GetTransactionsParams
impl Debug for GetTransactionsParams
Source§impl Default for GetTransactionsParams
impl Default for GetTransactionsParams
Source§fn default() -> GetTransactionsParams
fn default() -> GetTransactionsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTransactionsParams
impl<'de> Deserialize<'de> for GetTransactionsParams
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 GetTransactionsParams
impl RefUnwindSafe for GetTransactionsParams
impl Send for GetTransactionsParams
impl Sync for GetTransactionsParams
impl Unpin for GetTransactionsParams
impl UnsafeUnpin for GetTransactionsParams
impl UnwindSafe for GetTransactionsParams
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