Package com.ibm.fhir.model.resource
Class AppointmentResponse
- java.lang.Object
-
- com.ibm.fhir.model.visitor.AbstractVisitable
-
- com.ibm.fhir.model.resource.Resource
-
- com.ibm.fhir.model.resource.DomainResource
-
- com.ibm.fhir.model.resource.AppointmentResponse
-
- All Implemented Interfaces:
Visitable
@Generated("com.ibm.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)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAppointmentResponse.Builder
-
Field Summary
-
Fields inherited from class com.ibm.fhir.model.resource.DomainResource
contained, extension, modifierExtension, text
-
Fields inherited from class com.ibm.fhir.model.resource.Resource
id, implicitRules, language, meta
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(String elementName, int elementIndex, Visitor visitor)Accept a Visitor and invoke the appropriate visit methods.static AppointmentResponse.Builderbuilder()booleanequals(Object obj)ReferencegetActor()A Person, Location, HealthcareService, or Device that is participating in the appointment.ReferencegetAppointment()Appointment that this response is replying to.StringgetComment()Additional comments about the appointment.InstantgetEnd()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.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.ParticipantStatusgetParticipantStatus()Participation status of the participant.List<CodeableConcept>getParticipantType()Role of participant in the appointment.InstantgetStart()Date/Time that the appointment is to take place, or requested new start time.booleanhasChildren()inthashCode()AppointmentResponse.BuildertoBuilder()Create a new Builder from the contents of this Resource-
Methods inherited from class com.ibm.fhir.model.resource.DomainResource
getContained, getExtension, getModifierExtension, getText
-
Methods inherited from class com.ibm.fhir.model.resource.Resource
as, getId, getImplicitRules, getLanguage, getMeta, is
-
-
-
-
Method Detail
-
getIdentifier
public 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
Identifierthat may be empty.
-
getAppointment
public Reference getAppointment()
Appointment that this response is replying to.- Returns:
- An immutable object of type
Referencethat 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
Instantthat 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
Instantthat may be null.
-
getParticipantType
public List<CodeableConcept> getParticipantType()
Role of participant in the appointment.- Returns:
- An unmodifiable list containing immutable objects of type
CodeableConceptthat 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
Referencethat 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
ParticipantStatusthat is non-null.
-
getComment
public String getComment()
Additional comments about the appointment.- Returns:
- An immutable object of type
Stringthat may be null.
-
hasChildren
public boolean hasChildren()
- Overrides:
hasChildrenin classDomainResource
-
accept
public void accept(String elementName, int elementIndex, Visitor visitor)
Description copied from interface:VisitableAccept 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:
acceptin interfaceVisitable- Specified by:
acceptin classAbstractVisitable- Parameters:
elementName- the name of the element in the context of this visitelementIndex- the index of the element in a list or -1 if it is not contained within a Listvisitor- the visitor to use
-
toBuilder
public AppointmentResponse.Builder toBuilder()
Description copied from class:ResourceCreate a new Builder from the contents of this Resource- Specified by:
toBuilderin classDomainResource
-
builder
public static AppointmentResponse.Builder builder()
-
-