Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.04 KB

MalformedWarningDtoAllOf.md

File metadata and controls

27 lines (20 loc) · 1.04 KB

MalformedWarningDtoAllOf

Properties

Name Type Description Notes
message str [optional]

Example

from phrasetms_client.models.malformed_warning_dto_all_of import MalformedWarningDtoAllOf

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

# convert the object into a dict
malformed_warning_dto_all_of_dict = malformed_warning_dto_all_of_instance.to_dict()
# create an instance of MalformedWarningDtoAllOf from a dict
malformed_warning_dto_all_of_from_dict = MalformedWarningDtoAllOf.from_dict(malformed_warning_dto_all_of_dict)

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