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
The total number of notifications after all filters applied (not returned when 'pageCursor' parameter is used)
[optional]
next
str
The ID of the next page
[optional]
Example
fromfireblocks.models.notification_paginated_responseimportNotificationPaginatedResponse# TODO update the JSON string belowjson="{}"# create an instance of NotificationPaginatedResponse from a JSON stringnotification_paginated_response_instance=NotificationPaginatedResponse.from_json(json)
# print the JSON string representation of the objectprint(NotificationPaginatedResponse.to_json())
# convert the object into a dictnotification_paginated_response_dict=notification_paginated_response_instance.to_dict()
# create an instance of NotificationPaginatedResponse from a dictnotification_paginated_response_from_dict=NotificationPaginatedResponse.from_dict(notification_paginated_response_dict)