Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

BatchOperation.md

File metadata and controls

32 lines (23 loc) · 1.14 KB

BatchOperation

Properties

Name Type Description Notes
id str
user str User id of the user who started the operation
operation BatchOperationOperation
queue_time int Timestamp expressed as milliseconds since 00:00:00 UTC on 1 January 1970, not counting leap seconds.

Example

from waylay.services.rules.models.batch_operation import BatchOperation

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

# convert the object into a dict
batch_operation_dict = batch_operation_instance.to_dict()
# create an instance of BatchOperation from a dict
batch_operation_form_dict = batch_operation.from_dict(batch_operation_dict)

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