GraphQL INPUT_OBJECT

CreateFollowUpInput

link Definition

  • input CreateFollowUpInput {
  • # Date and time when you would like the reminder to activate.
  • dateTime: DateTime!
  • # Unique ID of the department for whom the follow-up is intended.
  • departmentId: Int
  • # Reason for the follow-up.
  • followUpReason: FollowUpReasonEnum!
  • # Set to true if the follow-up is finished.
  • isDone: Boolean
  • # Additional information about the follow-up.
  • notes: String
  • # Unique ID of the office for whom the follow-up is intended.
  • officeId: Int
  • # Unique ID of the purchase to which the follow-up relates.
  • purchaseId: Int
  • # Unique ID of the client to which the follow-up relates.
  • clientId: Int
  • # Set to true to display a visual reminder, such as a pop-up, for the follow-up.
  • showReminder: Boolean
  • # Subject line for the follow-up.
  • subject: String!
  • # Unique ID of the user for whom the follow-up is intended.
  • userId: Int
  • }

link Required by