Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.35 KB

File metadata and controls

31 lines (22 loc) · 1.35 KB

PatchCollectionInputBody

Properties

NameTypeDescriptionNotes
collection_namestrNew collection name. Omit, null, or empty string to keep existing.[optional]
collection_scopestrNew scope (PUBLIC, PRIVATE, PROTECTED, TEAM). Omit or send null to keep existing. Empty string returns 422 UNPROCESSABLE ENTITY.[optional]
descriptionstrNew description. Omit, null, or empty string to keep existing.[optional]

Example

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]