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 add to the collection. Binary IDs already linked to the collection are ignored.
Example
fromrevengai.models.add_collection_binaries_input_bodyimportAddCollectionBinariesInputBody# TODO update the JSON string belowjson="{}"# create an instance of AddCollectionBinariesInputBody from a JSON stringadd_collection_binaries_input_body_instance=AddCollectionBinariesInputBody.from_json(json)
# print the JSON string representation of the objectprint(AddCollectionBinariesInputBody.to_json())
# convert the object into a dictadd_collection_binaries_input_body_dict=add_collection_binaries_input_body_instance.to_dict()
# create an instance of AddCollectionBinariesInputBody from a dictadd_collection_binaries_input_body_from_dict=AddCollectionBinariesInputBody.from_dict(add_collection_binaries_input_body_dict)