pub struct GetFormsSubmissionsParams {
pub location_id: String,
pub page: Option<f64>,
pub limit: Option<f64>,
pub form_id: Option<String>,
pub q: Option<String>,
pub start_at: Option<String>,
pub end_at: Option<String>,
}Available on crate feature
forms only.Expand description
Query parameters for FormsService::get_forms_submissions.
Fields§
§location_id: StringlocationId query parameter.
Required by the API.
page: Option<f64>Page No. By default it will be 1
limit: Option<f64>Limit Per Page records count. will allow maximum up to 100 and default will be 20
form_id: Option<String>Filter submission by form id
q: Option<String>Filter by contactId, name, email or phone no.
start_at: Option<String>Get submission by starting of this date. By default it will be same date of last month(YYYY-MM-DD).
end_at: Option<String>Get submission by ending of this date. By default it will be current date(YYYY-MM-DD).
Implementations§
Source§impl GetFormsSubmissionsParams
impl GetFormsSubmissionsParams
Trait Implementations§
Source§impl Clone for GetFormsSubmissionsParams
impl Clone for GetFormsSubmissionsParams
Source§fn clone(&self) -> GetFormsSubmissionsParams
fn clone(&self) -> GetFormsSubmissionsParams
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 GetFormsSubmissionsParams
impl Debug for GetFormsSubmissionsParams
Source§impl Default for GetFormsSubmissionsParams
impl Default for GetFormsSubmissionsParams
Source§fn default() -> GetFormsSubmissionsParams
fn default() -> GetFormsSubmissionsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetFormsSubmissionsParams
impl RefUnwindSafe for GetFormsSubmissionsParams
impl Send for GetFormsSubmissionsParams
impl Sync for GetFormsSubmissionsParams
impl Unpin for GetFormsSubmissionsParams
impl UnsafeUnpin for GetFormsSubmissionsParams
impl UnwindSafe for GetFormsSubmissionsParams
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