Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

UpdateCollectionRequest

Properties

Name Type Description Notes
project_id int
name str [optional]
description str [optional]

Example

from llmpulse.models.update_collection_request import UpdateCollectionRequest

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

# convert the object into a dict
update_collection_request_dict = update_collection_request_instance.to_dict()
# create an instance of UpdateCollectionRequest from a dict
update_collection_request_from_dict = UpdateCollectionRequest.from_dict(update_collection_request_dict)

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