OBJECT

JourneyTemplateTaskFile

A file associated with a Journey Template Task

link GraphQL Schema definition

1type JourneyTemplateTaskFile {
2
3# Unique identifier for the task file.
4id: ID
5
6# URL of the task file.
7url: String
8
9# Creation date of the task file.
10createdAt: DateTime
11
12# The associated file object.
13file: File
14
15}