pub struct CombineCommentsWithQuestionResultsParams {
pub tenant_id: String,
pub question_id: Option<String>,
pub question_ids: Option<Vec<String>>,
pub url_id: Option<String>,
pub start_date: Option<String>,
pub force_recalculate: Option<bool>,
pub min_value: Option<f64>,
pub max_value: Option<f64>,
pub limit: Option<f64>,
}Expand description
struct for passing parameters to the method combine_comments_with_question_results
Fields§
§tenant_id: String§question_id: Option<String>§question_ids: Option<Vec<String>>§url_id: Option<String>§start_date: Option<String>§force_recalculate: Option<bool>§min_value: Option<f64>§max_value: Option<f64>§limit: Option<f64>Trait Implementations§
Source§impl Clone for CombineCommentsWithQuestionResultsParams
impl Clone for CombineCommentsWithQuestionResultsParams
Source§fn clone(&self) -> CombineCommentsWithQuestionResultsParams
fn clone(&self) -> CombineCommentsWithQuestionResultsParams
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 moreAuto Trait Implementations§
impl Freeze for CombineCommentsWithQuestionResultsParams
impl RefUnwindSafe for CombineCommentsWithQuestionResultsParams
impl Send for CombineCommentsWithQuestionResultsParams
impl Sync for CombineCommentsWithQuestionResultsParams
impl Unpin for CombineCommentsWithQuestionResultsParams
impl UnwindSafe for CombineCommentsWithQuestionResultsParams
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