You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indicates whether the webhooks were successfully resent
Example
fromfireblocks.models.resend_webhooks_by_transaction_id_responseimportResendWebhooksByTransactionIdResponse# TODO update the JSON string belowjson="{}"# create an instance of ResendWebhooksByTransactionIdResponse from a JSON stringresend_webhooks_by_transaction_id_response_instance=ResendWebhooksByTransactionIdResponse.from_json(json)
# print the JSON string representation of the objectprint(ResendWebhooksByTransactionIdResponse.to_json())
# convert the object into a dictresend_webhooks_by_transaction_id_response_dict=resend_webhooks_by_transaction_id_response_instance.to_dict()
# create an instance of ResendWebhooksByTransactionIdResponse from a dictresend_webhooks_by_transaction_id_response_from_dict=ResendWebhooksByTransactionIdResponse.from_dict(resend_webhooks_by_transaction_id_response_dict)