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

Name Type Description Notes
collection_name str [optional]
description str [optional]
collection_scope CollectionScope [optional]

Example

from revengai.models.collection_update_request import CollectionUpdateRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CollectionUpdateRequest from a JSON string
collection_update_request_instance = CollectionUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(CollectionUpdateRequest.to_json())

# convert the object into a dict
collection_update_request_dict = collection_update_request_instance.to_dict()
# create an instance of CollectionUpdateRequest from a dict
collection_update_request_from_dict = CollectionUpdateRequest.from_dict(collection_update_request_dict)

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