| Name | Type | Description | Notes |
|---|---|---|---|
| collection_id | int | Collection ID | |
| collection_name | str | Collection name | |
| description | str | Collection description | |
| user_id | int | Collection user ID | |
| team_id | int | [optional] | |
| collection_scope | CollectionScope | Collection public status | |
| created_at | datetime | Collection creation date | |
| updated_at | datetime | Collection last update date | |
| tags | List[str] | [optional] | |
| binaries | List[CollectionResponseBinariesInner] | [optional] |
fromrevengai.models.collection_responseimportCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of CollectionResponse from a JSON stringcollection_response_instance=CollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(CollectionResponse.to_json())
# convert the object into a dictcollection_response_dict=collection_response_instance.to_dict()
# create an instance of CollectionResponse from a dictcollection_response_from_dict=CollectionResponse.from_dict(collection_response_dict)