OBJECT

JourneyTaskFile

A file associated with a Journey Task

link GraphQL Schema definition

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