INPUT_OBJECT
CreateOrUpdateAppointmentReminderInput
link GraphQL Schema definition
- input CreateOrUpdateAppointmentReminderInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Unique identifier of entity.
- : ID
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Id of the appointment.
- : ID
- # Minutes before the appointment start when the reminder should fire.
- : Int
- # Id of the user who set the reminder.
- : ID
- # Timestamp when a snoozed reminder should fire again. Empty when not snoozed.
- : DateTime
- # Current state of the reminder (e.g. NotSent, Sent, Snoozed, Dismissed).
- : ReminderStatusEnum
- # Revision when entity was lastly changed.
- : Int
- }