Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1004 Bytes

File metadata and controls

30 lines (21 loc) · 1004 Bytes

ViewsAccessDenied

Properties

Name Type Description Notes
action str
reason ViewsAccessDeniedReason

Example

from launchdarkly_api.models.views_access_denied import ViewsAccessDenied

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

# convert the object into a dict
views_access_denied_dict = views_access_denied_instance.to_dict()
# create an instance of ViewsAccessDenied from a dict
views_access_denied_from_dict = ViewsAccessDenied.from_dict(views_access_denied_dict)

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