Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 845 Bytes

File metadata and controls

29 lines (20 loc) · 845 Bytes

ErrorResult

Properties

Name Type Description Notes
error str [optional]

Example

from boldsign.models.error_result import ErrorResult

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

# convert the object into a dict
error_result_dict = error_result_instance.to_dict()
# create an instance of ErrorResult from a dict
error_result_from_dict = ErrorResult.from_dict(error_result_dict)

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