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