MigrateCollectionChatSessionsJobRequest

Properties

Name

Type

Description

Notes

target_collection_id

str

The UUID of the target collection to migrate chat sessions to.

Example

from h2ogpte.rest_async.models.migrate_collection_chat_sessions_job_request import MigrateCollectionChatSessionsJobRequest

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

# convert the object into a dict
migrate_collection_chat_sessions_job_request_dict = migrate_collection_chat_sessions_job_request_instance.to_dict()
# create an instance of MigrateCollectionChatSessionsJobRequest from a dict
migrate_collection_chat_sessions_job_request_from_dict = MigrateCollectionChatSessionsJobRequest.from_dict(migrate_collection_chat_sessions_job_request_dict)