OBJECT

ScheduledReportEmailAttachment

link GraphQL Schema definition

  • type ScheduledReportEmailAttachment {
  • # Render the attached report as a CSV file with these options. Exactly one of the
  • # format fields may be set.
  • formatCsv: CsvOptions
  • # Render the attached report as an XLSX file with these options. Exactly one of
  • # the format fields may be set.
  • formatXlsx: XlsxOptions
  • # When true, attach the report as HTML. Exactly one of the format fields may be
  • # set.
  • formatHtml: Boolean
  • # Render the attached report as a PDF with these options. Exactly one of the
  • # format fields may be set.
  • formatPdf: PdfOptions
  • # When true, the report attachment is delivered as a compressed ZIP archive.
  • compress: Boolean
  • # Password protecting the compressed attachment. Can only be set when `compress`
  • # is enabled.
  • password: String
  • # True when the stored `password` value is already encrypted rather than plain
  • # text.
  • isPasswordEncrypted: Boolean
  • }