Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

AnnouncementAccess

Properties

Name Type Description Notes
denied List[AnnouncementAccessDenied]
allowed List[AnnouncementAccessAllowedRep]

Example

from launchdarkly_api.models.announcement_access import AnnouncementAccess

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

# convert the object into a dict
announcement_access_dict = announcement_access_instance.to_dict()
# create an instance of AnnouncementAccess from a dict
announcement_access_from_dict = AnnouncementAccess.from_dict(announcement_access_dict)

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