Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

File metadata and controls

31 lines (22 loc) · 1.32 KB

NotificationPaginatedResponse

Properties

Name Type Description Notes
data List[Notification] The data of the current page
total float 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

from fireblocks.models.notification_paginated_response import NotificationPaginatedResponse

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

# convert the object into a dict
notification_paginated_response_dict = notification_paginated_response_instance.to_dict()
# create an instance of NotificationPaginatedResponse from a dict
notification_paginated_response_from_dict = NotificationPaginatedResponse.from_dict(notification_paginated_response_dict)

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