Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

UnauthorizedErrorRep

Properties

Name Type Description Notes
code str Specific error code encountered
message str Description of the error

Example

from launchdarkly_api.models.unauthorized_error_rep import UnauthorizedErrorRep

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

# convert the object into a dict
unauthorized_error_rep_dict = unauthorized_error_rep_instance.to_dict()
# create an instance of UnauthorizedErrorRep from a dict
unauthorized_error_rep_from_dict = UnauthorizedErrorRep.from_dict(unauthorized_error_rep_dict)

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