Interface IAppointmentFreeSlot

All Superinterfaces:
Serializable
All Known Implementing Classes:
AppointmentFreeSlot

public interface IAppointmentFreeSlot extends Serializable
Interface for the appointment servlet. Represents a single available slot that can be booked.
Since:
6.5.0
Author:
XIMA MEDIA GmbH
  • Method Details

    • getCapacity

      long getCapacity()
      Returns:
      How many participants can book this slot at the same time.
    • getEndTime

      LocalDateTime getEndTime()
      Returns:
      The ending point of this slot. Please note that this may be on a different (later) day than the start time.
    • getId

      String getId()
      Returns:
      The ID of this slot. When booking an appointment for this slot, you must send this ID.
    • getStartTime

      LocalTime getStartTime()
      Returns:
      The starting point of this slot. The date is given by the IAppointmentAvailableDate.getDate().