| Name | Type | Description | Notes |
|---|---|---|---|
| denied | List[AnnouncementAccessDenied] | ||
| allowed | List[AnnouncementAccessAllowedRep] |
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)