Class AppointmentResponse

  • All Implemented Interfaces:
    Visitable

    @Generated("org.linuxforhealth.fhir.tools.CodeGenerator")
    public class AppointmentResponse
    extends DomainResource
    A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.

    Maturity level: FMM3 (Trial Use)

    • Method Detail

      • getIdentifier

        public java.util.List<Identifier> getIdentifier()
        This records identifiers associated with this appointment response concern that are defined by business processes and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate.
        Returns:
        An unmodifiable list containing immutable objects of type Identifier that may be empty.
      • getAppointment

        public Reference getAppointment()
        Appointment that this response is replying to.
        Returns:
        An immutable object of type Reference that is non-null.
      • getStart

        public Instant getStart()
        Date/Time that the appointment is to take place, or requested new start time.
        Returns:
        An immutable object of type Instant that may be null.
      • getEnd

        public Instant getEnd()
        This may be either the same as the appointment request to confirm the details of the appointment, or alternately a new time to request a re-negotiation of the end time.
        Returns:
        An immutable object of type Instant that may be null.
      • getParticipantType

        public java.util.List<CodeableConcept> getParticipantType()
        Role of participant in the appointment.
        Returns:
        An unmodifiable list containing immutable objects of type CodeableConcept that may be empty.
      • getActor

        public Reference getActor()
        A Person, Location, HealthcareService, or Device that is participating in the appointment.
        Returns:
        An immutable object of type Reference that may be null.
      • getParticipantStatus

        public ParticipantStatus getParticipantStatus()
        Participation status of the participant. When the status is declined or tentative if the start/end times are different to the appointment, then these times should be interpreted as a requested time change. When the status is accepted, the times can either be the time of the appointment (as a confirmation of the time) or can be empty.
        Returns:
        An immutable object of type ParticipantStatus that is non-null.
      • getComment

        public String getComment()
        Additional comments about the appointment.
        Returns:
        An immutable object of type String that may be null.
      • accept

        public void accept​(java.lang.String elementName,
                           int elementIndex,
                           Visitor visitor)
        Description copied from interface: Visitable
        Accept a Visitor and invoke the appropriate visit methods. A typical implementation would look like this:
         if (visitor.preVisit(this)) {
             visitor.visitStart(elementName, elementIndex, this);
             if (visitor.visit(elementName, elementIndex, this)) {
                 // visit children
             }
             visitor.visitEnd(elementName, elementIndex, this);
             visitor.postVisit(this);
         }
         
        Specified by:
        accept in interface Visitable
        Specified by:
        accept in class AbstractVisitable
        Parameters:
        elementName - the name of the element in the context of this visit
        elementIndex - the index of the element in a list or -1 if it is not contained within a List
        visitor - the visitor to use
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object