Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

BatchMatchingOutputBody

Properties

Name Type Description Notes
per_binary List[BatchBinaryMatchResult] Per-binary status (order matches the request).
status str Aggregate status across the batch: COMPLETED when every binary is completed, FAILED if any failed, RUNNING/PENDING otherwise.

Example

from revengai.models.batch_matching_output_body import BatchMatchingOutputBody

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

# convert the object into a dict
batch_matching_output_body_dict = batch_matching_output_body_instance.to_dict()
# create an instance of BatchMatchingOutputBody from a dict
batch_matching_output_body_from_dict = BatchMatchingOutputBody.from_dict(batch_matching_output_body_dict)

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