Name | Type | Description | Notes |
---|---|---|---|
id | str | ||
user | str | User subject id in the Waylay Accounts database | |
queue_time | datetime | ||
operation | BatchRunningResourceOperationOperation | ||
finished_time | datetime | ||
results | OperationResultObjectResults |
from waylay.services.resources.models.batch_operation_result import BatchOperationResult
# TODO update the JSON string below
json = "{}"
# create an instance of BatchOperationResult from a JSON string
batch_operation_result_instance = BatchOperationResult.from_json(json)
# print the JSON string representation of the object
print BatchOperationResult.to_json()
# convert the object into a dict
batch_operation_result_dict = batch_operation_result_instance.to_dict()
# create an instance of BatchOperationResult from a dict
batch_operation_result_form_dict = batch_operation_result.from_dict(batch_operation_result_dict)