Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.17 KB

File metadata and controls

29 lines (20 loc) · 1.17 KB

AddCollectionBinariesInputBody

Properties

Name Type Description Notes
binaries List[int] Binary IDs to add to the collection. Binary IDs already linked to the collection are ignored.

Example

from revengai.models.add_collection_binaries_input_body import AddCollectionBinariesInputBody

# TODO update the JSON string below
json = "{}"
# create an instance of AddCollectionBinariesInputBody from a JSON string
add_collection_binaries_input_body_instance = AddCollectionBinariesInputBody.from_json(json)
# print the JSON string representation of the object
print(AddCollectionBinariesInputBody.to_json())

# convert the object into a dict
add_collection_binaries_input_body_dict = add_collection_binaries_input_body_instance.to_dict()
# create an instance of AddCollectionBinariesInputBody from a dict
add_collection_binaries_input_body_from_dict = AddCollectionBinariesInputBody.from_dict(add_collection_binaries_input_body_dict)

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