Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
type | str | Field references differs based on the Conversation Type. | [optional] |
date_created | datetime | [optional] | |
date_modified | datetime | [optional] | |
date_edited | datetime | [optional] | |
created_by | MentionableUserDto | [optional] | |
comments | List[CommentDto] | [optional] | |
status | StatusDto | [optional] | |
deleted | bool | [optional] |
from phrasetms_client.models.common_conversation_dto import CommonConversationDto
# TODO update the JSON string below
json = "{}"
# create an instance of CommonConversationDto from a JSON string
common_conversation_dto_instance = CommonConversationDto.from_json(json)
# print the JSON string representation of the object
print CommonConversationDto.to_json()
# convert the object into a dict
common_conversation_dto_dict = common_conversation_dto_instance.to_dict()
# create an instance of CommonConversationDto from a dict
common_conversation_dto_from_dict = CommonConversationDto.from_dict(common_conversation_dto_dict)