You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Binary IDs to set on the collection. The collection's binaries are fully replaced with this list.
Example
fromrevengai.models.patch_collection_binaries_input_bodyimportPatchCollectionBinariesInputBody# TODO update the JSON string belowjson="{}"# create an instance of PatchCollectionBinariesInputBody from a JSON stringpatch_collection_binaries_input_body_instance=PatchCollectionBinariesInputBody.from_json(json)
# print the JSON string representation of the objectprint(PatchCollectionBinariesInputBody.to_json())
# convert the object into a dictpatch_collection_binaries_input_body_dict=patch_collection_binaries_input_body_instance.to_dict()
# create an instance of PatchCollectionBinariesInputBody from a dictpatch_collection_binaries_input_body_from_dict=PatchCollectionBinariesInputBody.from_dict(patch_collection_binaries_input_body_dict)