pub struct ResendNotificationByIdParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> ResendNotificationByIdParamsBuilder<S>
impl<S: State> ResendNotificationByIdParamsBuilder<S>
Sourcepub fn build(self) -> ResendNotificationByIdParamswhere
S: IsComplete,
pub fn build(self) -> ResendNotificationByIdParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn webhook_id(
self,
value: String,
) -> ResendNotificationByIdParamsBuilder<SetWebhookId<S>>where
S::WebhookId: IsUnset,
pub fn webhook_id(
self,
value: String,
) -> ResendNotificationByIdParamsBuilder<SetWebhookId<S>>where
S::WebhookId: IsUnset,
Required.
The ID of the webhook
Sourcepub fn notification_id(
self,
value: String,
) -> ResendNotificationByIdParamsBuilder<SetNotificationId<S>>where
S::NotificationId: IsUnset,
pub fn notification_id(
self,
value: String,
) -> ResendNotificationByIdParamsBuilder<SetNotificationId<S>>where
S::NotificationId: IsUnset,
Required.
The ID of the notification
Sourcepub fn idempotency_key(
self,
value: String,
) -> ResendNotificationByIdParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
pub fn idempotency_key(
self,
value: String,
) -> ResendNotificationByIdParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
Sourcepub fn maybe_idempotency_key(
self,
value: Option<String>,
) -> ResendNotificationByIdParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
pub fn maybe_idempotency_key(
self,
value: Option<String>,
) -> ResendNotificationByIdParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for ResendNotificationByIdParamsBuilder<S>
impl<S> RefUnwindSafe for ResendNotificationByIdParamsBuilder<S>
impl<S> Send for ResendNotificationByIdParamsBuilder<S>
impl<S> Sync for ResendNotificationByIdParamsBuilder<S>
impl<S> Unpin for ResendNotificationByIdParamsBuilder<S>
impl<S> UnwindSafe for ResendNotificationByIdParamsBuilder<S>
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