Skip to content

Latest commit

History

History
38 lines (29 loc) · 1.35 KB

File metadata and controls

38 lines (29 loc) · 1.35 KB

CreateCollectionOutputBody

Properties

NameTypeDescriptionNotes
binariesList[Binary][optional]
collection_idint
collection_namestr
collection_scopestr
created_atdatetime
descriptionstr
tagsList[str][optional]
team_idint
updated_atdatetime
user_idint

Example

fromrevengai.models.create_collection_output_bodyimportCreateCollectionOutputBody# TODO update the JSON string belowjson="{}"# create an instance of CreateCollectionOutputBody from a JSON stringcreate_collection_output_body_instance=CreateCollectionOutputBody.from_json(json)
# print the JSON string representation of the objectprint(CreateCollectionOutputBody.to_json())
# convert the object into a dictcreate_collection_output_body_dict=create_collection_output_body_instance.to_dict()
# create an instance of CreateCollectionOutputBody from a dictcreate_collection_output_body_from_dict=CreateCollectionOutputBody.from_dict(create_collection_output_body_dict)

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