GraphQL GraphQL INPUT_OBJECT

UpdateEmailInput

Input for update of an email.

link Definition

  • input UpdateEmailInput {
  • # Unique Id of the email.
  • id: Int!
  • # Email address from where the email was sent.
  • fromAddress: String
  • # Email address to where the email was delivered.
  • toAddress: String
  • # CC Email address to where the email was delivered.
  • ccAddress: String
  • # BCC Email address to where the email was delivered.
  • bccAddress: String
  • # The subject of the email.
  • subject: String
  • }

link Required by