Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.79 KB

File metadata and controls

36 lines (27 loc) · 1.79 KB

ReachV1AutomationsAutomationResource

Properties

Name Type Description Notes
uuid str [optional]
name str [optional]
status str There is no `completed` status. Use `events.completed` to see how many contacts finished. [optional]
type str What kind of workflow this is. `custom` automations are the ones built from scratch. [optional]
config object Trigger configuration of the automation. The shape depends on the type. [optional]
events ReachV1AutomationsAutomationEventsResource [optional]
created_at datetime [optional]
updated_at datetime [optional]

Example

from hostinger_api.models.reach_v1_automations_automation_resource import ReachV1AutomationsAutomationResource

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

# convert the object into a dict
reach_v1_automations_automation_resource_dict = reach_v1_automations_automation_resource_instance.to_dict()
# create an instance of ReachV1AutomationsAutomationResource from a dict
reach_v1_automations_automation_resource_from_dict = ReachV1AutomationsAutomationResource.from_dict(reach_v1_automations_automation_resource_dict)

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