Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

NavigationPostVo

Post navigation vo to hold previous and next item.

Properties

Name Type Description Notes
next ListedPostVo [optional]
previous ListedPostVo [optional]

Example

from halo_client.models.navigation_post_vo import NavigationPostVo

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

# convert the object into a dict
navigation_post_vo_dict = navigation_post_vo_instance.to_dict()
# create an instance of NavigationPostVo from a dict
navigation_post_vo_from_dict = NavigationPostVo.from_dict(navigation_post_vo_dict)

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