pub struct GetPendingWebhookEventsParams {
pub tenant_id: String,
pub comment_id: Option<String>,
pub external_id: Option<String>,
pub event_type: Option<String>,
pub type: Option<String>,
pub domain: Option<String>,
pub attempt_count_gt: Option<f64>,
pub skip: Option<f64>,
}Expand description
struct for passing parameters to the method get_pending_webhook_events
Fields§
§tenant_id: String§comment_id: Option<String>§external_id: Option<String>§event_type: Option<String>§type: Option<String>§domain: Option<String>§attempt_count_gt: Option<f64>§skip: Option<f64>Trait Implementations§
Source§impl Clone for GetPendingWebhookEventsParams
impl Clone for GetPendingWebhookEventsParams
Source§fn clone(&self) -> GetPendingWebhookEventsParams
fn clone(&self) -> GetPendingWebhookEventsParams
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 GetPendingWebhookEventsParams
impl RefUnwindSafe for GetPendingWebhookEventsParams
impl Send for GetPendingWebhookEventsParams
impl Sync for GetPendingWebhookEventsParams
impl Unpin for GetPendingWebhookEventsParams
impl UnwindSafe for GetPendingWebhookEventsParams
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