| Name |
Type |
Description |
Notes |
| key |
str |
|
|
| message |
str |
|
|
| code |
int |
|
|
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]