| Name | Type | Description | Notes |
|---|---|---|---|
| denied | List[AccessDenied] | ||
| allowed | List[AccessAllowedRep] |
from launchdarkly_api.models.access import Access
# TODO update the JSON string below
json = "{}"
# create an instance of Access from a JSON string
access_instance = Access.from_json(json)
# print the JSON string representation of the object
print(Access.to_json())
# convert the object into a dict
access_dict = access_instance.to_dict()
# create an instance of Access from a dict
access_from_dict = Access.from_dict(access_dict)