OBJECT

JourneyTemplate

A template for a journey, which includes predefined steps and configurations.

link GraphQL Schema definition

1type JourneyTemplate {
2
3# Unique identifier for the journey template.
4id: ID
5
6# Name of the journey template.
7name: String
8
9# Description of the journey template.
10description: String
11
12# Type of the journey associated with the template.
13journeyType: JourneyType
14
15# List of steps included in the journey template.
16steps: [JourneyTemplateStep]
17
18}