| Name | Type | Description | Notes |
|---|---|---|---|
| collection_name | str | ||
| description | str | ||
| collection_scope | CollectionScope | [optional] | |
| tags | List[str] | [optional] | |
| binaries | List[int] | [optional] |
fromrevengai.models.collection_create_requestimportCollectionCreateRequest# TODO update the JSON string belowjson="{}"# create an instance of CollectionCreateRequest from a JSON stringcollection_create_request_instance=CollectionCreateRequest.from_json(json)
# print the JSON string representation of the objectprint(CollectionCreateRequest.to_json())
# convert the object into a dictcollection_create_request_dict=collection_create_request_instance.to_dict()
# create an instance of CollectionCreateRequest from a dictcollection_create_request_from_dict=CollectionCreateRequest.from_dict(collection_create_request_dict)