Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.77 KB

TemplateRunWithGraphSpecification.md

File metadata and controls

33 lines (24 loc) · 1.77 KB

TemplateRunWithGraphSpecification

Properties

Name Type Description Notes
data List[List[ResourceDataInjection]] The full dataset to process. If specified, template will be run as reactive template [optional]
conf TemplateRunConfiguration [optional]
variables object The values for the variables declared in the template [optional]
resource_meta_data Dict[str, object] Metadata for any of the resources used in the template. The current metadata for all resources used in the template is fetched at the start of the template run. This provided metadata is used to overwrite this current metadata [optional]
graph GraphDefinition

Example

from waylay.services.rules.models.template_run_with_graph_specification import TemplateRunWithGraphSpecification

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

# convert the object into a dict
template_run_with_graph_specification_dict = template_run_with_graph_specification_instance.to_dict()
# create an instance of TemplateRunWithGraphSpecification from a dict
template_run_with_graph_specification_form_dict = template_run_with_graph_specification.from_dict(template_run_with_graph_specification_dict)

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