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
fromfireblocks.models.notification_attempts_paginated_responseimportNotificationAttemptsPaginatedResponse# TODO update the JSON string belowjson="{}"# create an instance of NotificationAttemptsPaginatedResponse from a JSON stringnotification_attempts_paginated_response_instance=NotificationAttemptsPaginatedResponse.from_json(json)
# print the JSON string representation of the objectprint(NotificationAttemptsPaginatedResponse.to_json())
# convert the object into a dictnotification_attempts_paginated_response_dict=notification_attempts_paginated_response_instance.to_dict()
# create an instance of NotificationAttemptsPaginatedResponse from a dictnotification_attempts_paginated_response_from_dict=NotificationAttemptsPaginatedResponse.from_dict(notification_attempts_paginated_response_dict)