pub struct ResendTransactionWebhooksParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> ResendTransactionWebhooksParamsBuilder<S>
impl<S: State> ResendTransactionWebhooksParamsBuilder<S>
Sourcepub fn build(self) -> ResendTransactionWebhooksParamswhere
S: IsComplete,
pub fn build(self) -> ResendTransactionWebhooksParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn tx_id(
self,
value: String,
) -> ResendTransactionWebhooksParamsBuilder<SetTxId<S>>where
S::TxId: IsUnset,
pub fn tx_id(
self,
value: String,
) -> ResendTransactionWebhooksParamsBuilder<SetTxId<S>>where
S::TxId: IsUnset,
Required.
The ID of the transaction for webhooks
Sourcepub fn resend_transaction_webhooks_request(
self,
value: ResendTransactionWebhooksRequest,
) -> ResendTransactionWebhooksParamsBuilder<SetResendTransactionWebhooksRequest<S>>where
S::ResendTransactionWebhooksRequest: IsUnset,
pub fn resend_transaction_webhooks_request(
self,
value: ResendTransactionWebhooksRequest,
) -> ResendTransactionWebhooksParamsBuilder<SetResendTransactionWebhooksRequest<S>>where
S::ResendTransactionWebhooksRequest: IsUnset,
Required.
Sourcepub fn idempotency_key(
self,
value: String,
) -> ResendTransactionWebhooksParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
pub fn idempotency_key(
self,
value: String,
) -> ResendTransactionWebhooksParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
Sourcepub fn maybe_idempotency_key(
self,
value: Option<String>,
) -> ResendTransactionWebhooksParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
pub fn maybe_idempotency_key(
self,
value: Option<String>,
) -> ResendTransactionWebhooksParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for ResendTransactionWebhooksParamsBuilder<S>
impl<S> RefUnwindSafe for ResendTransactionWebhooksParamsBuilder<S>
impl<S> Send for ResendTransactionWebhooksParamsBuilder<S>
impl<S> Sync for ResendTransactionWebhooksParamsBuilder<S>
impl<S> Unpin for ResendTransactionWebhooksParamsBuilder<S>
impl<S> UnwindSafe for ResendTransactionWebhooksParamsBuilder<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