OBJECT
JourneyTemplate
A template for a journey, which includes predefined steps and configurations.
link GraphQL Schema definition
1 type JourneyTemplate { 2 3 # Unique identifier for the journey template. 4 ID : 5 6 # Name of the journey template. 7 String : 8 9 # Description of the journey template. 10 String : 11 12 # Type of the journey associated with the template. 13 JourneyType : 14 15 # List of steps included in the journey template. 16 JourneyTemplateStep] : [ 17 18 }