Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

BatchTaskSpec.md

File metadata and controls

32 lines (23 loc) · 1.12 KB

BatchTaskSpec

Properties

Name Type Description Notes
entity BatchTaskEntity
action BatchUpdatePropertiesAllOfAction
query BatchTaskQuery
action_parameters PropertyUpdatesSpec

Example

from waylay.services.rules.models.batch_task_spec import BatchTaskSpec

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

# convert the object into a dict
batch_task_spec_dict = batch_task_spec_instance.to_dict()
# create an instance of BatchTaskSpec from a dict
batch_task_spec_form_dict = batch_task_spec.from_dict(batch_task_spec_dict)

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