You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The step this one branches from. Null for the entry point of the workflow.
[optional]
step_order
int
Position of this step among the steps sharing its parent.
[optional]
type
str
Role of the step in the workflow. A `conditional` step branches into several children.
[optional]
value
str
The concrete trigger, action, decision or delay this step performs.
[optional]
config
object
Step configuration. The shape depends on the value, and is empty for steps that take none.
[optional]
Example
fromhostinger_api.models.reach_v1_automations_steps_automation_step_resourceimportReachV1AutomationsStepsAutomationStepResource# TODO update the JSON string belowjson="{}"# create an instance of ReachV1AutomationsStepsAutomationStepResource from a JSON stringreach_v1_automations_steps_automation_step_resource_instance=ReachV1AutomationsStepsAutomationStepResource.from_json(json)
# print the JSON string representation of the objectprint(ReachV1AutomationsStepsAutomationStepResource.to_json())
# convert the object into a dictreach_v1_automations_steps_automation_step_resource_dict=reach_v1_automations_steps_automation_step_resource_instance.to_dict()
# create an instance of ReachV1AutomationsStepsAutomationStepResource from a dictreach_v1_automations_steps_automation_step_resource_from_dict=ReachV1AutomationsStepsAutomationStepResource.from_dict(reach_v1_automations_steps_automation_step_resource_dict)