Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.05 KB

UnresolvedConversationWarningDto.md

File metadata and controls

26 lines (19 loc) · 1.05 KB

UnresolvedConversationWarningDto

Properties

Name Type Description Notes

Example

from phrasetms_client.models.unresolved_conversation_warning_dto import UnresolvedConversationWarningDto

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

# convert the object into a dict
unresolved_conversation_warning_dto_dict = unresolved_conversation_warning_dto_instance.to_dict()
# create an instance of UnresolvedConversationWarningDto from a dict
unresolved_conversation_warning_dto_from_dict = UnresolvedConversationWarningDto.from_dict(unresolved_conversation_warning_dto_dict)

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