OBJECT

AppointmentReminderEntity

link GraphQL Schema definition

  • type AppointmentReminderEntity {
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Appointment this reminder belongs to.
  • appointment: AppointmentEntity
  • # User who set this reminder. Reminders are per-user.
  • owner: ClientEntity
  • # 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
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }