Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1016 Bytes

File metadata and controls

31 lines (22 loc) · 1016 Bytes

RestrictedModelError

Properties

Name Type Description Notes
key str
message str
code int

Example

from launchdarkly_api.models.restricted_model_error import RestrictedModelError

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

# convert the object into a dict
restricted_model_error_dict = restricted_model_error_instance.to_dict()
# create an instance of RestrictedModelError from a dict
restricted_model_error_from_dict = RestrictedModelError.from_dict(restricted_model_error_dict)

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