Finished Batch Operation results
Name | Type | Description | Notes |
---|---|---|---|
finished_time | int | Timestamp expressed as milliseconds since 00:00:00 UTC on 1 January 1970, not counting leap seconds. | |
results | OperationResultObjectResults |
from waylay.services.rules.models.operation_result_object import OperationResultObject
# TODO update the JSON string below
json = "{}"
# create an instance of OperationResultObject from a JSON string
operation_result_object_instance = OperationResultObject.from_json(json)
# print the JSON string representation of the object
print OperationResultObject.to_json()
# convert the object into a dict
operation_result_object_dict = operation_result_object_instance.to_dict()
# create an instance of OperationResultObject from a dict
operation_result_object_form_dict = operation_result_object.from_dict(operation_result_object_dict)