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 remove from the collection. Binary IDs not linked to the collection are ignored.
Example
fromrevengai.models.remove_collection_binaries_input_bodyimportRemoveCollectionBinariesInputBody# TODO update the JSON string belowjson="{}"# create an instance of RemoveCollectionBinariesInputBody from a JSON stringremove_collection_binaries_input_body_instance=RemoveCollectionBinariesInputBody.from_json(json)
# print the JSON string representation of the objectprint(RemoveCollectionBinariesInputBody.to_json())
# convert the object into a dictremove_collection_binaries_input_body_dict=remove_collection_binaries_input_body_instance.to_dict()
# create an instance of RemoveCollectionBinariesInputBody from a dictremove_collection_binaries_input_body_from_dict=RemoveCollectionBinariesInputBody.from_dict(remove_collection_binaries_input_body_dict)