Skip to content

Latest commit

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

CollectionTagsUpdateResponse

Properties

NameTypeDescriptionNotes
tagsList[str]Collection tags

Example

fromrevengai.models.collection_tags_update_responseimportCollectionTagsUpdateResponse# TODO update the JSON string belowjson="{}"# create an instance of CollectionTagsUpdateResponse from a JSON stringcollection_tags_update_response_instance=CollectionTagsUpdateResponse.from_json(json)
# print the JSON string representation of the objectprint(CollectionTagsUpdateResponse.to_json())
# convert the object into a dictcollection_tags_update_response_dict=collection_tags_update_response_instance.to_dict()
# create an instance of CollectionTagsUpdateResponse from a dictcollection_tags_update_response_from_dict=CollectionTagsUpdateResponse.from_dict(collection_tags_update_response_dict)

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