Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.38 KB

File metadata and controls

39 lines (30 loc) · 1.38 KB

CreateCollectionOutputBody

Properties

Name Type Description Notes
binaries List[Binary] [optional]
collection_id int
collection_name str
collection_scope str
created_at datetime
description str
model_id int
tags List[str] [optional]
team_id int
updated_at datetime
user_id int

Example

from revengai.models.create_collection_output_body import CreateCollectionOutputBody

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

# convert the object into a dict
create_collection_output_body_dict = create_collection_output_body_instance.to_dict()
# create an instance of CreateCollectionOutputBody from a dict
create_collection_output_body_from_dict = CreateCollectionOutputBody.from_dict(create_collection_output_body_dict)

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