pub struct SaveCommentsBulkParams {
pub tenant_id: String,
pub create_comment_params: Vec<CreateCommentParams>,
pub is_live: Option<bool>,
pub do_spam_check: Option<bool>,
pub send_emails: Option<bool>,
pub populate_notifications: Option<bool>,
}Expand description
struct for passing parameters to the method save_comments_bulk
Fields§
§tenant_id: String§create_comment_params: Vec<CreateCommentParams>§is_live: Option<bool>§do_spam_check: Option<bool>§send_emails: Option<bool>§populate_notifications: Option<bool>Trait Implementations§
Source§impl Clone for SaveCommentsBulkParams
impl Clone for SaveCommentsBulkParams
Source§fn clone(&self) -> SaveCommentsBulkParams
fn clone(&self) -> SaveCommentsBulkParams
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 SaveCommentsBulkParams
impl RefUnwindSafe for SaveCommentsBulkParams
impl Send for SaveCommentsBulkParams
impl Sync for SaveCommentsBulkParams
impl Unpin for SaveCommentsBulkParams
impl UnwindSafe for SaveCommentsBulkParams
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