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