Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

CollectionUpdateRequest

Properties

NameTypeDescriptionNotes
collection_namestr[optional]
descriptionstr[optional]
collection_scopeCollectionScope[optional]

Example

fromrevengai.models.collection_update_requestimportCollectionUpdateRequest# TODO update the JSON string belowjson="{}"# create an instance of CollectionUpdateRequest from a JSON stringcollection_update_request_instance=CollectionUpdateRequest.from_json(json)
# print the JSON string representation of the objectprint(CollectionUpdateRequest.to_json())
# convert the object into a dictcollection_update_request_dict=collection_update_request_instance.to_dict()
# create an instance of CollectionUpdateRequest from a dictcollection_update_request_from_dict=CollectionUpdateRequest.from_dict(collection_update_request_dict)

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