Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.26 KB

BatchOperationResults.md

File metadata and controls

34 lines (25 loc) · 1.26 KB

BatchOperationResults

Properties

Name Type Description Notes
id str
user str User id of the user who started the operation
operation BatchOperationOperation
queue_time datetime
finished_time datetime
results OperationResultObjectResults

Example

from waylay.services.alarms.models.batch_operation_results import BatchOperationResults

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

# convert the object into a dict
batch_operation_results_dict = batch_operation_results_instance.to_dict()
# create an instance of BatchOperationResults from a dict
batch_operation_results_form_dict = batch_operation_results.from_dict(batch_operation_results_dict)

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