Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.14 KB

File metadata and controls

29 lines (20 loc) · 1.14 KB

PatchCollectionBinariesOutputBody

Properties

Name Type Description Notes
binaries List[Binary]

Example

from revengai.models.patch_collection_binaries_output_body import PatchCollectionBinariesOutputBody

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

# convert the object into a dict
patch_collection_binaries_output_body_dict = patch_collection_binaries_output_body_instance.to_dict()
# create an instance of PatchCollectionBinariesOutputBody from a dict
patch_collection_binaries_output_body_from_dict = PatchCollectionBinariesOutputBody.from_dict(patch_collection_binaries_output_body_dict)

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