pub struct ResendFailedNotificationsParams {
pub webhook_id: String,
pub resend_failed_notifications_request: ResendFailedNotificationsRequest,
pub idempotency_key: Option<String>,
}Expand description
struct for passing parameters to the method
WebhooksV2Api::resend_failed_notifications
Fields§
§webhook_id: StringThe ID of the webhook
resend_failed_notifications_request: ResendFailedNotificationsRequest§idempotency_key: Option<String>A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
Implementations§
Source§impl ResendFailedNotificationsParams
impl ResendFailedNotificationsParams
Sourcepub fn builder() -> ResendFailedNotificationsParamsBuilder
pub fn builder() -> ResendFailedNotificationsParamsBuilder
Create an instance of ResendFailedNotificationsParams using the builder syntax
Trait Implementations§
Source§impl Clone for ResendFailedNotificationsParams
impl Clone for ResendFailedNotificationsParams
Source§fn clone(&self) -> ResendFailedNotificationsParams
fn clone(&self) -> ResendFailedNotificationsParams
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 ResendFailedNotificationsParams
impl RefUnwindSafe for ResendFailedNotificationsParams
impl Send for ResendFailedNotificationsParams
impl Sync for ResendFailedNotificationsParams
impl Unpin for ResendFailedNotificationsParams
impl UnwindSafe for ResendFailedNotificationsParams
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