Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 867 Bytes

BatchResult.md

File metadata and controls

29 lines (20 loc) · 867 Bytes

BatchResult

Properties

Name Type Description Notes
job_count float [optional]

Example

from waylay.services.registry.models.batch_result import BatchResult

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

# convert the object into a dict
batch_result_dict = batch_result_instance.to_dict()
# create an instance of BatchResult from a dict
batch_result_form_dict = batch_result.from_dict(batch_result_dict)

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