Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.28 KB

BatchRunningResourceOperation.md

File metadata and controls

32 lines (23 loc) · 1.28 KB

BatchRunningResourceOperation

Properties

Name Type Description Notes
id str
user str User subject id in the Waylay Accounts database
queue_time datetime
operation BatchRunningResourceOperationOperation

Example

from waylay.services.resources.models.batch_running_resource_operation import BatchRunningResourceOperation

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

# convert the object into a dict
batch_running_resource_operation_dict = batch_running_resource_operation_instance.to_dict()
# create an instance of BatchRunningResourceOperation from a dict
batch_running_resource_operation_form_dict = batch_running_resource_operation.from_dict(batch_running_resource_operation_dict)

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