Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.34 KB

File metadata and controls

33 lines (24 loc) · 1.34 KB

AnnouncementPaginatedLinks

Properties

Name Type Description Notes
first AnnouncementLink [optional]
last AnnouncementLink [optional]
next AnnouncementLink [optional]
prev AnnouncementLink [optional]
var_self AnnouncementLink

Example

from launchdarkly_api.models.announcement_paginated_links import AnnouncementPaginatedLinks

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

# convert the object into a dict
announcement_paginated_links_dict = announcement_paginated_links_instance.to_dict()
# create an instance of AnnouncementPaginatedLinks from a dict
announcement_paginated_links_from_dict = AnnouncementPaginatedLinks.from_dict(announcement_paginated_links_dict)

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