| Name | Type | Description | Notes |
|---|---|---|---|
| denied | List[ViewsAccessDenied] | ||
| allowed | List[ViewsAccessAllowedRep] |
from launchdarkly_api.models.views_access import ViewsAccess
# TODO update the JSON string below
json = "{}"
# create an instance of ViewsAccess from a JSON string
views_access_instance = ViewsAccess.from_json(json)
# print the JSON string representation of the object
print(ViewsAccess.to_json())
# convert the object into a dict
views_access_dict = views_access_instance.to_dict()
# create an instance of ViewsAccess from a dict
views_access_from_dict = ViewsAccess.from_dict(views_access_dict)