CreateImportCollectionToCollectionJobRequest

Properties

Name

Type

Description

Notes

source_collection_id

str

Id of the collection to be inserted.

Example

from h2ogpte.rest_sync.models.create_import_collection_to_collection_job_request import CreateImportCollectionToCollectionJobRequest

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

# convert the object into a dict
create_import_collection_to_collection_job_request_dict = create_import_collection_to_collection_job_request_instance.to_dict()
# create an instance of CreateImportCollectionToCollectionJobRequest from a dict
create_import_collection_to_collection_job_request_from_dict = CreateImportCollectionToCollectionJobRequest.from_dict(create_import_collection_to_collection_job_request_dict)