pub struct WebhooksApiClient { /* private fields */ }Implementations§
Source§impl WebhooksApiClient
impl WebhooksApiClient
pub fn new(configuration: Arc<Configuration>) -> Self
Trait Implementations§
Source§impl WebhooksApi for WebhooksApiClient
impl WebhooksApi for WebhooksApiClient
Source§fn resend_transaction_webhooks<'life0, 'async_trait>(
&'life0 self,
params: ResendTransactionWebhooksParams,
) -> Pin<Box<dyn Future<Output = Result<ResendWebhooksByTransactionIdResponse, Error<ResendTransactionWebhooksError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn resend_transaction_webhooks<'life0, 'async_trait>(
&'life0 self,
params: ResendTransactionWebhooksParams,
) -> Pin<Box<dyn Future<Output = Result<ResendWebhooksByTransactionIdResponse, Error<ResendTransactionWebhooksError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Deprecation notice: Webhooks v1 will be deprecated in March 2026. Please use the Developer Center in the Fireblocks Console to upgrade to Webhooks v2, which offers improved reliability, performance, and observability. Resends webhook notifications for a transaction by its unique identifier. Endpoint Permissions: Admin, Non-Signing Admin, Signer, Approver, Editor.
Source§fn resend_webhooks<'life0, 'async_trait>(
&'life0 self,
params: ResendWebhooksParams,
) -> Pin<Box<dyn Future<Output = Result<ResendWebhooksResponse, Error<ResendWebhooksError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn resend_webhooks<'life0, 'async_trait>(
&'life0 self,
params: ResendWebhooksParams,
) -> Pin<Box<dyn Future<Output = Result<ResendWebhooksResponse, Error<ResendWebhooksError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Deprecation notice: Webhooks v1 will be deprecated in March 2026. Please use the Developer Center in the Fireblocks Console to upgrade to Webhooks v2, which offers improved reliability, performance, and observability. Resends all failed webhook notifications. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
Auto Trait Implementations§
impl !RefUnwindSafe for WebhooksApiClient
impl !UnwindSafe for WebhooksApiClient
impl Freeze for WebhooksApiClient
impl Send for WebhooksApiClient
impl Sync for WebhooksApiClient
impl Unpin for WebhooksApiClient
impl UnsafeUnpin for WebhooksApiClient
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