pub struct ResendFailedNotificationsRequest {
pub start_time: Option<f64>,
pub events: Option<Vec<String>>,
pub items: Option<WebhookEvent>,
}Fields§
§start_time: Option<f64>(optional) Start time for the resend window in milliseconds since epoch up to 24 hours before the current time - Default if missing means 24 hours before the current time in milliseconds since epoch - Maximum value is current time in milliseconds since epoch - Minimum value is 24 hours before the current time in milliseconds since epoch
events: Option<Vec<String>>(optional) Event types to resend, default is all event types - Default if missing means all events will be included - Empty array means all events will be included
items: Option<WebhookEvent>Implementations§
Trait Implementations§
Source§impl Clone for ResendFailedNotificationsRequest
impl Clone for ResendFailedNotificationsRequest
Source§fn clone(&self) -> ResendFailedNotificationsRequest
fn clone(&self) -> ResendFailedNotificationsRequest
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 moreSource§impl Default for ResendFailedNotificationsRequest
impl Default for ResendFailedNotificationsRequest
Source§fn default() -> ResendFailedNotificationsRequest
fn default() -> ResendFailedNotificationsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResendFailedNotificationsRequest
impl<'de> Deserialize<'de> for ResendFailedNotificationsRequest
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
Source§impl PartialEq for ResendFailedNotificationsRequest
impl PartialEq for ResendFailedNotificationsRequest
Source§fn eq(&self, other: &ResendFailedNotificationsRequest) -> bool
fn eq(&self, other: &ResendFailedNotificationsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResendFailedNotificationsRequest
Auto Trait Implementations§
impl Freeze for ResendFailedNotificationsRequest
impl RefUnwindSafe for ResendFailedNotificationsRequest
impl Send for ResendFailedNotificationsRequest
impl Sync for ResendFailedNotificationsRequest
impl Unpin for ResendFailedNotificationsRequest
impl UnwindSafe for ResendFailedNotificationsRequest
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