Skip to content

Latest commit

History

History
38 lines (29 loc) · 1.47 KB

File metadata and controls

38 lines (29 loc) · 1.47 KB

CollectionResponse

Properties

NameTypeDescriptionNotes
collection_idintCollection ID
collection_namestrCollection name
descriptionstrCollection description
user_idintCollection user ID
team_idint[optional]
collection_scopeCollectionScopeCollection public status
created_atdatetimeCollection creation date
updated_atdatetimeCollection last update date
tagsList[str][optional]
binariesList[CollectionResponseBinariesInner][optional]

Example

fromrevengai.models.collection_responseimportCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of CollectionResponse from a JSON stringcollection_response_instance=CollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(CollectionResponse.to_json())
# convert the object into a dictcollection_response_dict=collection_response_instance.to_dict()
# create an instance of CollectionResponse from a dictcollection_response_from_dict=CollectionResponse.from_dict(collection_response_dict)

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