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
(optional) List of notification statuses to exclude from the resend operation - Empty array means all statuses will be included - If you want to exclude some statuses, you can use the following example: [ IN_PROGRESS, FAILED ] - Default if missing, means all statuses other than "COMPLETED" will be included
[optional]
Example
fromfireblocks.models.resend_notifications_by_resource_id_requestimportResendNotificationsByResourceIdRequest# TODO update the JSON string belowjson="{}"# create an instance of ResendNotificationsByResourceIdRequest from a JSON stringresend_notifications_by_resource_id_request_instance=ResendNotificationsByResourceIdRequest.from_json(json)
# print the JSON string representation of the objectprint(ResendNotificationsByResourceIdRequest.to_json())
# convert the object into a dictresend_notifications_by_resource_id_request_dict=resend_notifications_by_resource_id_request_instance.to_dict()
# create an instance of ResendNotificationsByResourceIdRequest from a dictresend_notifications_by_resource_id_request_from_dict=ResendNotificationsByResourceIdRequest.from_dict(resend_notifications_by_resource_id_request_dict)