Skip to content

Latest commit

History

History
41 lines (32 loc) · 1.44 KB

File metadata and controls

41 lines (32 loc) · 1.44 KB

GetCollectionOutputBody

Properties

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

Example

fromrevengai.models.get_collection_output_bodyimportGetCollectionOutputBody# TODO update the JSON string belowjson="{}"# create an instance of GetCollectionOutputBody from a JSON stringget_collection_output_body_instance=GetCollectionOutputBody.from_json(json)
# print the JSON string representation of the objectprint(GetCollectionOutputBody.to_json())
# convert the object into a dictget_collection_output_body_dict=get_collection_output_body_instance.to_dict()
# create an instance of GetCollectionOutputBody from a dictget_collection_output_body_from_dict=GetCollectionOutputBody.from_dict(get_collection_output_body_dict)

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