Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
type | str | LQA | [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] | |
references | LQAReferences | [optional] | |
lqa_description | str | [optional] |
from phrasetms_client.models.lqa_conversation_dto import LQAConversationDto
# TODO update the JSON string below
json = "{}"
# create an instance of LQAConversationDto from a JSON string
lqa_conversation_dto_instance = LQAConversationDto.from_json(json)
# print the JSON string representation of the object
print LQAConversationDto.to_json()
# convert the object into a dict
lqa_conversation_dto_dict = lqa_conversation_dto_instance.to_dict()
# create an instance of LQAConversationDto from a dict
lqa_conversation_dto_from_dict = LQAConversationDto.from_dict(lqa_conversation_dto_dict)