OBJECT

JourneyTemplateStep

Represents a step within a journey template.

link GraphQL Schema definition

1type JourneyTemplateStep {
2
3# Unique identifier for the journey template step.
4id: ID
5
6# Name of the journey template step.
7name: String
8
9# Description of the journey template step.
10description: String
11
12# Event type that determines the start date relation.
13startDateRelationEventType: JourneyStepRelationEventType
14
15# Adverb that modifies the start date relation event.
16startDateRelationEventAdverb: RelationEventAdverb
17
18# Step that determines the start date relation.
19startDateRelationStep: JourneyTemplateStep
20
21# Adverb that modifies the start date relation step.
22startDateRelationStepAdverb: RelationStepAdverb
23
24# Offset in days for the start date relation.
25startDateRelationDaysOffset: Int
26
27# Event type that determines the due date relation.
28dueDateRelationEventType: JourneyStepRelationEventType
29
30# Adverb that modifies the due date relation event.
31dueDateRelationEventAdverb: RelationEventAdverb
32
33# Step that determines the due date relation.
34dueDateRelationStep: JourneyTemplateStep
35
36# Adverb that modifies the due date relation step.
37dueDateRelationStepAdverb: RelationStepAdverb
38
39# Offset in days for the due date relation.
40dueDateRelationDaysOffset: Int
41
42# Identifier for the reusable step associated with the journey.
43journeyReusableStepId: ID
44
45# List of tasks associated with the journey template step.
46tasks: [JourneyTemplateTask]
47
48}