Name |
Type |
Description |
Notes |
from phrasetms_client.models.formatting_warning_dto import FormattingWarningDto
# TODO update the JSON string below
json = "{}"
# create an instance of FormattingWarningDto from a JSON string
formatting_warning_dto_instance = FormattingWarningDto.from_json(json)
# print the JSON string representation of the object
print FormattingWarningDto.to_json()
# convert the object into a dict
formatting_warning_dto_dict = formatting_warning_dto_instance.to_dict()
# create an instance of FormattingWarningDto from a dict
formatting_warning_dto_from_dict = FormattingWarningDto.from_dict(formatting_warning_dto_dict)
[Back to Model list] [Back to API list] [Back to README]