Skip to content

ConversationCreate

Properties

NameTypeDescriptionNotes
messagestr

Example

python
from syntheticusers.models.conversation_create import ConversationCreate

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

# convert the object into a dict
conversation_create_dict = conversation_create_instance.to_dict()
# create an instance of ConversationCreate from a dict
conversation_create_from_dict = ConversationCreate.from_dict(conversation_create_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.