Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

CreateConversationRequest

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
context ConversationContext [optional]
title str [optional]

Example

from revengai.models.create_conversation_request import CreateConversationRequest

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

# convert the object into a dict
create_conversation_request_dict = create_conversation_request_instance.to_dict()
# create an instance of CreateConversationRequest from a dict
create_conversation_request_from_dict = CreateConversationRequest.from_dict(create_conversation_request_dict)

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