Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 991 Bytes

File metadata and controls

29 lines (20 loc) · 991 Bytes

ErrorErrorCausesInner

Properties

Name Type Description Notes
error_summary str [optional]

Example

from okta.models.error_error_causes_inner import ErrorErrorCausesInner

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

# convert the object into a dict
error_error_causes_inner_dict = error_error_causes_inner_instance.to_dict()
# create an instance of ErrorErrorCausesInner from a dict
error_error_causes_inner_from_dict = ErrorErrorCausesInner.from_dict(error_error_causes_inner_dict)

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