Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.29 KB

BatchOperationResult.md

File metadata and controls

34 lines (25 loc) · 1.29 KB

BatchOperationResult

Properties

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

Example

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)

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