Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

BatchUpdateProperties.md

File metadata and controls

33 lines (24 loc) · 1.27 KB

BatchUpdateProperties

Update variables and/or tags of multiple tasks

Properties

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

Example

from waylay.services.rules.models.batch_update_properties import BatchUpdateProperties

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

# convert the object into a dict
batch_update_properties_dict = batch_update_properties_instance.to_dict()
# create an instance of BatchUpdateProperties from a dict
batch_update_properties_form_dict = batch_update_properties.from_dict(batch_update_properties_dict)

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