Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.46 KB

EditLqaConversationDto.md

File metadata and controls

30 lines (23 loc) · 1.46 KB

EditLqaConversationDto

Properties

Name Type Description Notes
lqa_description str [optional]
lqa List[LQAReference]
status str [optional]
correlation ReferenceCorrelation [optional]

Example

from phrasetms_client.models.edit_lqa_conversation_dto import EditLqaConversationDto

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

# convert the object into a dict
edit_lqa_conversation_dto_dict = edit_lqa_conversation_dto_instance.to_dict()
# create an instance of EditLqaConversationDto from a dict
edit_lqa_conversation_dto_from_dict = EditLqaConversationDto.from_dict(edit_lqa_conversation_dto_dict)

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