Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

ReleasePoliciesAccess

Properties

Name Type Description Notes
denied List[ReleasePoliciesAccessDenied]
allowed List[ReleasePoliciesAccessAllowedRep]

Example

from launchdarkly_api.models.release_policies_access import ReleasePoliciesAccess

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

# convert the object into a dict
release_policies_access_dict = release_policies_access_instance.to_dict()
# create an instance of ReleasePoliciesAccess from a dict
release_policies_access_from_dict = ReleasePoliciesAccess.from_dict(release_policies_access_dict)

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