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) Start time for the resend window in milliseconds since epoch up to 24 hours before the current time - Default if missing means 24 hours before the current time in milliseconds since epoch - Maximum value is current time in milliseconds since epoch - Minimum value is 24 hours before the current time in milliseconds since epoch
(optional) Event types to resend, default is all event types - Default if missing means all events will be included - Empty array means all events will be included
[optional]
Example
fromfireblocks.models.resend_failed_notifications_requestimportResendFailedNotificationsRequest# TODO update the JSON string belowjson="{}"# create an instance of ResendFailedNotificationsRequest from a JSON stringresend_failed_notifications_request_instance=ResendFailedNotificationsRequest.from_json(json)
# print the JSON string representation of the objectprint(ResendFailedNotificationsRequest.to_json())
# convert the object into a dictresend_failed_notifications_request_dict=resend_failed_notifications_request_instance.to_dict()
# create an instance of ResendFailedNotificationsRequest from a dictresend_failed_notifications_request_from_dict=ResendFailedNotificationsRequest.from_dict(resend_failed_notifications_request_dict)