Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.17 KB

LQAConversationsListDto.md

File metadata and controls

27 lines (20 loc) · 1.17 KB

LQAConversationsListDto

Properties

Name Type Description Notes
conversations List[LQAConversationDto] [optional]

Example

from phrasetms_client.models.lqa_conversations_list_dto import LQAConversationsListDto

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

# convert the object into a dict
lqa_conversations_list_dto_dict = lqa_conversations_list_dto_instance.to_dict()
# create an instance of LQAConversationsListDto from a dict
lqa_conversations_list_dto_from_dict = LQAConversationsListDto.from_dict(lqa_conversations_list_dto_dict)

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