Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.24 KB

CreatePlainConversationDto.md

File metadata and controls

28 lines (21 loc) · 1.24 KB

CreatePlainConversationDto

Properties

Name Type Description Notes
comment AddCommentDto [optional]
references PlainReferences

Example

from phrasetms_client.models.create_plain_conversation_dto import CreatePlainConversationDto

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

# convert the object into a dict
create_plain_conversation_dto_dict = create_plain_conversation_dto_instance.to_dict()
# create an instance of CreatePlainConversationDto from a dict
create_plain_conversation_dto_from_dict = CreatePlainConversationDto.from_dict(create_plain_conversation_dto_dict)

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