Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 910 Bytes

File metadata and controls

31 lines (22 loc) · 910 Bytes

GenericError

Generic API Error

Properties

Name Type Description Notes
detail str
code str [optional]

Example

from authentik_client.models.generic_error import GenericError

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

# convert the object into a dict
generic_error_dict = generic_error_instance.to_dict()
# create an instance of GenericError from a dict
generic_error_from_dict = GenericError.from_dict(generic_error_dict)

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