| Name | Type | Description | Notes |
|---|---|---|---|
| first | AnnouncementLink | [optional] | |
| last | AnnouncementLink | [optional] | |
| next | AnnouncementLink | [optional] | |
| prev | AnnouncementLink | [optional] | |
| var_self | AnnouncementLink |
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)