Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

OperationResultObject.md

File metadata and controls

31 lines (22 loc) · 1.18 KB

OperationResultObject

Finished Batch Operation results

Properties

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

Example

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)

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