INPUT_OBJECT

UpdateAppointmentReminderInput

link GraphQL Schema definition

  • input UpdateAppointmentReminderInput {
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID!
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Id of the appointment.
  • appointmentId: ID
  • # Minutes before the appointment start when the reminder should fire.
  • endDateOffset: Int
  • # Id of the user who set the reminder.
  • ownerId: ID
  • # Timestamp when a snoozed reminder should fire again. Empty when not snoozed.
  • snoozeDate: DateTime
  • # Current state of the reminder (e.g. NotSent, Sent, Snoozed, Dismissed).
  • status: ReminderStatusEnum
  • # Revision when entity was lastly changed.
  • revision: Int
  • }

link Require by