Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 923 Bytes

File metadata and controls

30 lines (21 loc) · 923 Bytes

AccessDenied

Properties

Name Type Description Notes
action str
reason AccessDeniedReason

Example

from launchdarkly_api.models.access_denied import AccessDenied

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

# convert the object into a dict
access_denied_dict = access_denied_instance.to_dict()
# create an instance of AccessDenied from a dict
access_denied_from_dict = AccessDenied.from_dict(access_denied_dict)

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