Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

CollectionCreateRequest

Properties

NameTypeDescriptionNotes
collection_namestr
descriptionstr
collection_scopeCollectionScope[optional]
tagsList[str][optional]
binariesList[int][optional]

Example

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)

[Back to Model list][Back to API list][Back to README]