| Name | Type | Description | Notes |
|---|
| collection_name | str | New collection name. Omit, null, or empty string to keep existing. | [optional] |
| collection_scope | str | New scope (PUBLIC, PRIVATE, PROTECTED, TEAM). Omit or send null to keep existing. Empty string returns 422 UNPROCESSABLE ENTITY. | [optional] |
| description | str | New description. Omit, null, or empty string to keep existing. | [optional] |
fromrevengai.models.patch_collection_input_bodyimportPatchCollectionInputBody# TODO update the JSON string belowjson="{}"# create an instance of PatchCollectionInputBody from a JSON stringpatch_collection_input_body_instance=PatchCollectionInputBody.from_json(json)
# print the JSON string representation of the objectprint(PatchCollectionInputBody.to_json())
# convert the object into a dictpatch_collection_input_body_dict=patch_collection_input_body_instance.to_dict()
# create an instance of PatchCollectionInputBody from a dictpatch_collection_input_body_from_dict=PatchCollectionInputBody.from_dict(patch_collection_input_body_dict)[Back to Model list][Back to API list][Back to README]