Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.38 KB

ErrorDetailDtoV3.md

File metadata and controls

29 lines (22 loc) · 1.38 KB

ErrorDetailDtoV3

Properties

Name Type Description Notes
code str Code, e.g. NOT_FOUND. [optional]
args Dict[str, object] Related arguments, e.g. number => "hello world" [optional]
message str Optional human-readable message. [optional]

Example

from phrasetms_client.models.error_detail_dto_v3 import ErrorDetailDtoV3

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

# convert the object into a dict
error_detail_dto_v3_dict = error_detail_dto_v3_instance.to_dict()
# create an instance of ErrorDetailDtoV3 from a dict
error_detail_dto_v3_from_dict = ErrorDetailDtoV3.from_dict(error_detail_dto_v3_dict)

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