CollectionChangeRequest
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
collection_id |
str |
Example
from h2ogpte.rest.models.collection_change_request import CollectionChangeRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CollectionChangeRequest from a JSON string
collection_change_request_instance = CollectionChangeRequest.from_json(json)
# print the JSON string representation of the object
print(CollectionChangeRequest.to_json())
# convert the object into a dict
collection_change_request_dict = collection_change_request_instance.to_dict()
# create an instance of CollectionChangeRequest from a dict
collection_change_request_from_dict = CollectionChangeRequest.from_dict(collection_change_request_dict)