OBJECT

CustomerFacingFile

Description

Customer facing file.

link GraphQL Schema definition

  • type CustomerFacingFile {
  • # File external ID.
  • externalId: String!
  • # Timestamp when the file was created.
  • createdAt: DateTime
  • # Timestamp when the file will expire.
  • expiresAt: DateTime
  • # Creator of the file.
  • creator: String!
  • # Name of the file.
  • filename: String!
  • # Timestamp when the file generation was completed.
  • completedAt: DateTime
  • # File type.
  • type: FileTypeEnumType!
  • # File state.
  • state: FileStateEnumType!
  • }