Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.23 KB

ResendWebhooksByTransactionIdResponse.md

File metadata and controls

29 lines (20 loc) · 1.23 KB

ResendWebhooksByTransactionIdResponse

Properties

Name Type Description Notes
success bool Indicates whether the webhooks were successfully resent

Example

from fireblocks.models.resend_webhooks_by_transaction_id_response import ResendWebhooksByTransactionIdResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ResendWebhooksByTransactionIdResponse from a JSON string
resend_webhooks_by_transaction_id_response_instance = ResendWebhooksByTransactionIdResponse.from_json(json)
# print the JSON string representation of the object
print(ResendWebhooksByTransactionIdResponse.to_json())

# convert the object into a dict
resend_webhooks_by_transaction_id_response_dict = resend_webhooks_by_transaction_id_response_instance.to_dict()
# create an instance of ResendWebhooksByTransactionIdResponse from a dict
resend_webhooks_by_transaction_id_response_from_dict = ResendWebhooksByTransactionIdResponse.from_dict(resend_webhooks_by_transaction_id_response_dict)

[Back to Model list] [Back to API list] [Back to README]