Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

BatchOperationEnqueued.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

BatchOperationEnqueued

Properties

Name Type Description Notes
status_code int
uri str URI where the batch operation status can be followed
entity BatchRunningResourceOperation

Example

from waylay.services.resources.models.batch_operation_enqueued import BatchOperationEnqueued

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

# convert the object into a dict
batch_operation_enqueued_dict = batch_operation_enqueued_instance.to_dict()
# create an instance of BatchOperationEnqueued from a dict
batch_operation_enqueued_form_dict = batch_operation_enqueued.from_dict(batch_operation_enqueued_dict)

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