Skip to content

Latest commit

History

History
29 lines (20 loc) · 1.14 KB

File metadata and controls

29 lines (20 loc) · 1.14 KB

PatchCollectionTagsInputBody

Properties

NameTypeDescriptionNotes
tagsList[str]Tags to set on the collection. The collection's tags are fully replaced with this list.

Example

fromrevengai.models.patch_collection_tags_input_bodyimportPatchCollectionTagsInputBody# TODO update the JSON string belowjson="{}"# create an instance of PatchCollectionTagsInputBody from a JSON stringpatch_collection_tags_input_body_instance=PatchCollectionTagsInputBody.from_json(json)
# print the JSON string representation of the objectprint(PatchCollectionTagsInputBody.to_json())
# convert the object into a dictpatch_collection_tags_input_body_dict=patch_collection_tags_input_body_instance.to_dict()
# create an instance of PatchCollectionTagsInputBody from a dictpatch_collection_tags_input_body_from_dict=PatchCollectionTagsInputBody.from_dict(patch_collection_tags_input_body_dict)

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