Skip to content

Latest commit

History

History
37 lines (28 loc) · 1.27 KB

File metadata and controls

37 lines (28 loc) · 1.27 KB

PatchCollectionOutputBody

Properties

NameTypeDescriptionNotes
binary_countint
collection_idint
collection_namestr
collection_scopestr
created_atdatetime
descriptionstr
team_idint
updated_atdatetime
user_idint

Example

fromrevengai.models.patch_collection_output_bodyimportPatchCollectionOutputBody# TODO update the JSON string belowjson="{}"# create an instance of PatchCollectionOutputBody from a JSON stringpatch_collection_output_body_instance=PatchCollectionOutputBody.from_json(json)
# print the JSON string representation of the objectprint(PatchCollectionOutputBody.to_json())
# convert the object into a dictpatch_collection_output_body_dict=patch_collection_output_body_instance.to_dict()
# create an instance of PatchCollectionOutputBody from a dictpatch_collection_output_body_from_dict=PatchCollectionOutputBody.from_dict(patch_collection_output_body_dict)

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