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,
Resends webhook notifications for a transaction by its unique identifier. Learn more about Fireblocks Webhooks in the following guide. Endpoint Permission: 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,
Resends all failed webhook notifications. Learn more about Fireblocks Webhooks in the following guide. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
Auto Trait Implementations§
impl Freeze for WebhooksApiClient
impl !RefUnwindSafe for WebhooksApiClient
impl Send for WebhooksApiClient
impl Sync for WebhooksApiClient
impl Unpin for WebhooksApiClient
impl !UnwindSafe 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