package org.hl7.fhir.dstu2016may.model; /* Copyright (c) 2011+, HL7, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of HL7 nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ // Generated on Sun, May 8, 2016 03:05+1000 for FHIR v1.4.0 import java.util.ArrayList; import java.util.Date; import java.util.List; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.utilities.Utilities; import ca.uhn.fhir.model.api.annotation.Child; import ca.uhn.fhir.model.api.annotation.Description; import ca.uhn.fhir.model.api.annotation.ResourceDef; import ca.uhn.fhir.model.api.annotation.SearchParamDefinition; /** * A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection. */ @ResourceDef(name="AppointmentResponse", profile="http://hl7.org/fhir/Profile/AppointmentResponse") public class AppointmentResponse extends DomainResource { /** * 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. */ @Child(name = "identifier", type = {Identifier.class}, order=0, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true) @Description(shortDefinition="External Ids for this item", formalDefinition="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." ) protected List<Identifier> identifier; /** * Appointment that this response is replying to. */ @Child(name = "appointment", type = {Appointment.class}, order=1, min=1, max=1, modifier=false, summary=true) @Description(shortDefinition="Appointment this response relates to", formalDefinition="Appointment that this response is replying to." ) protected Reference appointment; /** * The actual object that is the target of the reference (Appointment that this response is replying to.) */ protected Appointment appointmentTarget; /** * Date/Time that the appointment is to take place, or requested new start time. */ @Child(name = "start", type = {InstantType.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Time from appointment, or requested new start time", formalDefinition="Date/Time that the appointment is to take place, or requested new start time." ) protected InstantType start; /** * 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. */ @Child(name = "end", type = {InstantType.class}, order=3, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Time from appointment, or requested new end time", formalDefinition="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." ) protected InstantType end; /** * Role of participant in the appointment. */ @Child(name = "participantType", type = {CodeableConcept.class}, order=4, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true) @Description(shortDefinition="Role of participant in the appointment", formalDefinition="Role of participant in the appointment." ) protected List<CodeableConcept> participantType; /** * A Person, Location/HealthcareService or Device that is participating in the appointment. */ @Child(name = "actor", type = {Patient.class, Practitioner.class, RelatedPerson.class, Device.class, HealthcareService.class, Location.class}, order=5, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Person, Location/HealthcareService or Device", formalDefinition="A Person, Location/HealthcareService or Device that is participating in the appointment." ) protected Reference actor; /** * The actual object that is the target of the reference (A Person, Location/HealthcareService or Device that is participating in the appointment.) */ protected Resource actorTarget; /** * 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. */ @Child(name = "participantStatus", type = {CodeType.class}, order=6, min=1, max=1, modifier=true, summary=true) @Description(shortDefinition="accepted | declined | tentative | in-process | completed | needs-action", formalDefinition="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." ) protected CodeType participantStatus; /** * Additional comments about the appointment. */ @Child(name = "comment", type = {StringType.class}, order=7, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Additional comments", formalDefinition="Additional comments about the appointment." ) protected StringType comment; private static final long serialVersionUID = -1645343660L; /** * Constructor */ public AppointmentResponse() { super(); } /** * Constructor */ public AppointmentResponse(Reference appointment, CodeType participantStatus) { super(); this.appointment = appointment; this.participantStatus = participantStatus; } /** * @return {@link #identifier} (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.) */ public List<Identifier> getIdentifier() { if (this.identifier == null) this.identifier = new ArrayList<Identifier>(); return this.identifier; } public boolean hasIdentifier() { if (this.identifier == null) return false; for (Identifier item : this.identifier) if (!item.isEmpty()) return true; return false; } /** * @return {@link #identifier} (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.) */ // syntactic sugar public Identifier addIdentifier() { //3 Identifier t = new Identifier(); if (this.identifier == null) this.identifier = new ArrayList<Identifier>(); this.identifier.add(t); return t; } // syntactic sugar public AppointmentResponse addIdentifier(Identifier t) { //3 if (t == null) return this; if (this.identifier == null) this.identifier = new ArrayList<Identifier>(); this.identifier.add(t); return this; } /** * @return {@link #appointment} (Appointment that this response is replying to.) */ public Reference getAppointment() { if (this.appointment == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create AppointmentResponse.appointment"); else if (Configuration.doAutoCreate()) this.appointment = new Reference(); // cc return this.appointment; } public boolean hasAppointment() { return this.appointment != null && !this.appointment.isEmpty(); } /** * @param value {@link #appointment} (Appointment that this response is replying to.) */ public AppointmentResponse setAppointment(Reference value) { this.appointment = value; return this; } /** * @return {@link #appointment} The actual object that is the target of the reference. The reference library doesn't populate this, but you can use it to hold the resource if you resolve it. (Appointment that this response is replying to.) */ public Appointment getAppointmentTarget() { if (this.appointmentTarget == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create AppointmentResponse.appointment"); else if (Configuration.doAutoCreate()) this.appointmentTarget = new Appointment(); // aa return this.appointmentTarget; } /** * @param value {@link #appointment} The actual object that is the target of the reference. The reference library doesn't use these, but you can use it to hold the resource if you resolve it. (Appointment that this response is replying to.) */ public AppointmentResponse setAppointmentTarget(Appointment value) { this.appointmentTarget = value; return this; } /** * @return {@link #start} (Date/Time that the appointment is to take place, or requested new start time.). This is the underlying object with id, value and extensions. The accessor "getStart" gives direct access to the value */ public InstantType getStartElement() { if (this.start == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create AppointmentResponse.start"); else if (Configuration.doAutoCreate()) this.start = new InstantType(); // bb return this.start; } public boolean hasStartElement() { return this.start != null && !this.start.isEmpty(); } public boolean hasStart() { return this.start != null && !this.start.isEmpty(); } /** * @param value {@link #start} (Date/Time that the appointment is to take place, or requested new start time.). This is the underlying object with id, value and extensions. The accessor "getStart" gives direct access to the value */ public AppointmentResponse setStartElement(InstantType value) { this.start = value; return this; } /** * @return Date/Time that the appointment is to take place, or requested new start time. */ public Date getStart() { return this.start == null ? null : this.start.getValue(); } /** * @param value Date/Time that the appointment is to take place, or requested new start time. */ public AppointmentResponse setStart(Date value) { if (value == null) this.start = null; else { if (this.start == null) this.start = new InstantType(); this.start.setValue(value); } return this; } /** * @return {@link #end} (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.). This is the underlying object with id, value and extensions. The accessor "getEnd" gives direct access to the value */ public InstantType getEndElement() { if (this.end == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create AppointmentResponse.end"); else if (Configuration.doAutoCreate()) this.end = new InstantType(); // bb return this.end; } public boolean hasEndElement() { return this.end != null && !this.end.isEmpty(); } public boolean hasEnd() { return this.end != null && !this.end.isEmpty(); } /** * @param value {@link #end} (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.). This is the underlying object with id, value and extensions. The accessor "getEnd" gives direct access to the value */ public AppointmentResponse setEndElement(InstantType value) { this.end = value; return this; } /** * @return 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. */ public Date getEnd() { return this.end == null ? null : this.end.getValue(); } /** * @param value 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. */ public AppointmentResponse setEnd(Date value) { if (value == null) this.end = null; else { if (this.end == null) this.end = new InstantType(); this.end.setValue(value); } return this; } /** * @return {@link #participantType} (Role of participant in the appointment.) */ public List<CodeableConcept> getParticipantType() { if (this.participantType == null) this.participantType = new ArrayList<CodeableConcept>(); return this.participantType; } public boolean hasParticipantType() { if (this.participantType == null) return false; for (CodeableConcept item : this.participantType) if (!item.isEmpty()) return true; return false; } /** * @return {@link #participantType} (Role of participant in the appointment.) */ // syntactic sugar public CodeableConcept addParticipantType() { //3 CodeableConcept t = new CodeableConcept(); if (this.participantType == null) this.participantType = new ArrayList<CodeableConcept>(); this.participantType.add(t); return t; } // syntactic sugar public AppointmentResponse addParticipantType(CodeableConcept t) { //3 if (t == null) return this; if (this.participantType == null) this.participantType = new ArrayList<CodeableConcept>(); this.participantType.add(t); return this; } /** * @return {@link #actor} (A Person, Location/HealthcareService or Device that is participating in the appointment.) */ public Reference getActor() { if (this.actor == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create AppointmentResponse.actor"); else if (Configuration.doAutoCreate()) this.actor = new Reference(); // cc return this.actor; } public boolean hasActor() { return this.actor != null && !this.actor.isEmpty(); } /** * @param value {@link #actor} (A Person, Location/HealthcareService or Device that is participating in the appointment.) */ public AppointmentResponse setActor(Reference value) { this.actor = value; return this; } /** * @return {@link #actor} The actual object that is the target of the reference. The reference library doesn't populate this, but you can use it to hold the resource if you resolve it. (A Person, Location/HealthcareService or Device that is participating in the appointment.) */ public Resource getActorTarget() { return this.actorTarget; } /** * @param value {@link #actor} The actual object that is the target of the reference. The reference library doesn't use these, but you can use it to hold the resource if you resolve it. (A Person, Location/HealthcareService or Device that is participating in the appointment.) */ public AppointmentResponse setActorTarget(Resource value) { this.actorTarget = value; return this; } /** * @return {@link #participantStatus} (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.). This is the underlying object with id, value and extensions. The accessor "getParticipantStatus" gives direct access to the value */ public CodeType getParticipantStatusElement() { if (this.participantStatus == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create AppointmentResponse.participantStatus"); else if (Configuration.doAutoCreate()) this.participantStatus = new CodeType(); // bb return this.participantStatus; } public boolean hasParticipantStatusElement() { return this.participantStatus != null && !this.participantStatus.isEmpty(); } public boolean hasParticipantStatus() { return this.participantStatus != null && !this.participantStatus.isEmpty(); } /** * @param value {@link #participantStatus} (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.). This is the underlying object with id, value and extensions. The accessor "getParticipantStatus" gives direct access to the value */ public AppointmentResponse setParticipantStatusElement(CodeType value) { this.participantStatus = value; return this; } /** * @return 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. */ public String getParticipantStatus() { return this.participantStatus == null ? null : this.participantStatus.getValue(); } /** * @param value 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. */ public AppointmentResponse setParticipantStatus(String value) { if (this.participantStatus == null) this.participantStatus = new CodeType(); this.participantStatus.setValue(value); return this; } /** * @return {@link #comment} (Additional comments about the appointment.). This is the underlying object with id, value and extensions. The accessor "getComment" gives direct access to the value */ public StringType getCommentElement() { if (this.comment == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create AppointmentResponse.comment"); else if (Configuration.doAutoCreate()) this.comment = new StringType(); // bb return this.comment; } public boolean hasCommentElement() { return this.comment != null && !this.comment.isEmpty(); } public boolean hasComment() { return this.comment != null && !this.comment.isEmpty(); } /** * @param value {@link #comment} (Additional comments about the appointment.). This is the underlying object with id, value and extensions. The accessor "getComment" gives direct access to the value */ public AppointmentResponse setCommentElement(StringType value) { this.comment = value; return this; } /** * @return Additional comments about the appointment. */ public String getComment() { return this.comment == null ? null : this.comment.getValue(); } /** * @param value Additional comments about the appointment. */ public AppointmentResponse setComment(String value) { if (Utilities.noString(value)) this.comment = null; else { if (this.comment == null) this.comment = new StringType(); this.comment.setValue(value); } return this; } protected void listChildren(List<Property> childrenList) { super.listChildren(childrenList); childrenList.add(new Property("identifier", "Identifier", "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.", 0, java.lang.Integer.MAX_VALUE, identifier)); childrenList.add(new Property("appointment", "Reference(Appointment)", "Appointment that this response is replying to.", 0, java.lang.Integer.MAX_VALUE, appointment)); childrenList.add(new Property("start", "instant", "Date/Time that the appointment is to take place, or requested new start time.", 0, java.lang.Integer.MAX_VALUE, start)); childrenList.add(new Property("end", "instant", "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.", 0, java.lang.Integer.MAX_VALUE, end)); childrenList.add(new Property("participantType", "CodeableConcept", "Role of participant in the appointment.", 0, java.lang.Integer.MAX_VALUE, participantType)); childrenList.add(new Property("actor", "Reference(Patient|Practitioner|RelatedPerson|Device|HealthcareService|Location)", "A Person, Location/HealthcareService or Device that is participating in the appointment.", 0, java.lang.Integer.MAX_VALUE, actor)); childrenList.add(new Property("participantStatus", "code", "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.", 0, java.lang.Integer.MAX_VALUE, participantStatus)); childrenList.add(new Property("comment", "string", "Additional comments about the appointment.", 0, java.lang.Integer.MAX_VALUE, comment)); } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case -1618432855: /*identifier*/ return this.identifier == null ? new Base[0] : this.identifier.toArray(new Base[this.identifier.size()]); // Identifier case -1474995297: /*appointment*/ return this.appointment == null ? new Base[0] : new Base[] {this.appointment}; // Reference case 109757538: /*start*/ return this.start == null ? new Base[0] : new Base[] {this.start}; // InstantType case 100571: /*end*/ return this.end == null ? new Base[0] : new Base[] {this.end}; // InstantType case 841294093: /*participantType*/ return this.participantType == null ? new Base[0] : this.participantType.toArray(new Base[this.participantType.size()]); // CodeableConcept case 92645877: /*actor*/ return this.actor == null ? new Base[0] : new Base[] {this.actor}; // Reference case 996096261: /*participantStatus*/ return this.participantStatus == null ? new Base[0] : new Base[] {this.participantStatus}; // CodeType case 950398559: /*comment*/ return this.comment == null ? new Base[0] : new Base[] {this.comment}; // StringType default: return super.getProperty(hash, name, checkValid); } } @Override public void setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case -1618432855: // identifier this.getIdentifier().add(castToIdentifier(value)); // Identifier break; case -1474995297: // appointment this.appointment = castToReference(value); // Reference break; case 109757538: // start this.start = castToInstant(value); // InstantType break; case 100571: // end this.end = castToInstant(value); // InstantType break; case 841294093: // participantType this.getParticipantType().add(castToCodeableConcept(value)); // CodeableConcept break; case 92645877: // actor this.actor = castToReference(value); // Reference break; case 996096261: // participantStatus this.participantStatus = castToCode(value); // CodeType break; case 950398559: // comment this.comment = castToString(value); // StringType break; default: super.setProperty(hash, name, value); } } @Override public void setProperty(String name, Base value) throws FHIRException { if (name.equals("identifier")) this.getIdentifier().add(castToIdentifier(value)); else if (name.equals("appointment")) this.appointment = castToReference(value); // Reference else if (name.equals("start")) this.start = castToInstant(value); // InstantType else if (name.equals("end")) this.end = castToInstant(value); // InstantType else if (name.equals("participantType")) this.getParticipantType().add(castToCodeableConcept(value)); else if (name.equals("actor")) this.actor = castToReference(value); // Reference else if (name.equals("participantStatus")) this.participantStatus = castToCode(value); // CodeType else if (name.equals("comment")) this.comment = castToString(value); // StringType else super.setProperty(name, value); } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case -1618432855: return addIdentifier(); // Identifier case -1474995297: return getAppointment(); // Reference case 109757538: throw new FHIRException("Cannot make property start as it is not a complex type"); // InstantType case 100571: throw new FHIRException("Cannot make property end as it is not a complex type"); // InstantType case 841294093: return addParticipantType(); // CodeableConcept case 92645877: return getActor(); // Reference case 996096261: throw new FHIRException("Cannot make property participantStatus as it is not a complex type"); // CodeType case 950398559: throw new FHIRException("Cannot make property comment as it is not a complex type"); // StringType default: return super.makeProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("identifier")) { return addIdentifier(); } else if (name.equals("appointment")) { this.appointment = new Reference(); return this.appointment; } else if (name.equals("start")) { throw new FHIRException("Cannot call addChild on a primitive type AppointmentResponse.start"); } else if (name.equals("end")) { throw new FHIRException("Cannot call addChild on a primitive type AppointmentResponse.end"); } else if (name.equals("participantType")) { return addParticipantType(); } else if (name.equals("actor")) { this.actor = new Reference(); return this.actor; } else if (name.equals("participantStatus")) { throw new FHIRException("Cannot call addChild on a primitive type AppointmentResponse.participantStatus"); } else if (name.equals("comment")) { throw new FHIRException("Cannot call addChild on a primitive type AppointmentResponse.comment"); } else return super.addChild(name); } public String fhirType() { return "AppointmentResponse"; } public AppointmentResponse copy() { AppointmentResponse dst = new AppointmentResponse(); copyValues(dst); if (identifier != null) { dst.identifier = new ArrayList<Identifier>(); for (Identifier i : identifier) dst.identifier.add(i.copy()); }; dst.appointment = appointment == null ? null : appointment.copy(); dst.start = start == null ? null : start.copy(); dst.end = end == null ? null : end.copy(); if (participantType != null) { dst.participantType = new ArrayList<CodeableConcept>(); for (CodeableConcept i : participantType) dst.participantType.add(i.copy()); }; dst.actor = actor == null ? null : actor.copy(); dst.participantStatus = participantStatus == null ? null : participantStatus.copy(); dst.comment = comment == null ? null : comment.copy(); return dst; } protected AppointmentResponse typedCopy() { return copy(); } @Override public boolean equalsDeep(Base other) { if (!super.equalsDeep(other)) return false; if (!(other instanceof AppointmentResponse)) return false; AppointmentResponse o = (AppointmentResponse) other; return compareDeep(identifier, o.identifier, true) && compareDeep(appointment, o.appointment, true) && compareDeep(start, o.start, true) && compareDeep(end, o.end, true) && compareDeep(participantType, o.participantType, true) && compareDeep(actor, o.actor, true) && compareDeep(participantStatus, o.participantStatus, true) && compareDeep(comment, o.comment, true); } @Override public boolean equalsShallow(Base other) { if (!super.equalsShallow(other)) return false; if (!(other instanceof AppointmentResponse)) return false; AppointmentResponse o = (AppointmentResponse) other; return compareValues(start, o.start, true) && compareValues(end, o.end, true) && compareValues(participantStatus, o.participantStatus, true) && compareValues(comment, o.comment, true); } public boolean isEmpty() { return super.isEmpty() && (identifier == null || identifier.isEmpty()) && (appointment == null || appointment.isEmpty()) && (start == null || start.isEmpty()) && (end == null || end.isEmpty()) && (participantType == null || participantType.isEmpty()) && (actor == null || actor.isEmpty()) && (participantStatus == null || participantStatus.isEmpty()) && (comment == null || comment.isEmpty()); } @Override public ResourceType getResourceType() { return ResourceType.AppointmentResponse; } /** * Search parameter: <b>patient</b> * <p> * Description: <b>This Response is for this Patient</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.actor</b><br> * </p> */ @SearchParamDefinition(name="patient", path="AppointmentResponse.actor", description="This Response is for this Patient", type="reference" ) public static final String SP_PATIENT = "patient"; /** * <b>Fluent Client</b> search parameter constant for <b>patient</b> * <p> * Description: <b>This Response is for this Patient</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.actor</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam PATIENT = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_PATIENT); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>AppointmentResponse:patient</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_PATIENT = new ca.uhn.fhir.model.api.Include("AppointmentResponse:patient").toLocked(); /** * Search parameter: <b>practitioner</b> * <p> * Description: <b>This Response is for this Practitioner</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.actor</b><br> * </p> */ @SearchParamDefinition(name="practitioner", path="AppointmentResponse.actor", description="This Response is for this Practitioner", type="reference" ) public static final String SP_PRACTITIONER = "practitioner"; /** * <b>Fluent Client</b> search parameter constant for <b>practitioner</b> * <p> * Description: <b>This Response is for this Practitioner</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.actor</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam PRACTITIONER = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_PRACTITIONER); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>AppointmentResponse:practitioner</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_PRACTITIONER = new ca.uhn.fhir.model.api.Include("AppointmentResponse:practitioner").toLocked(); /** * Search parameter: <b>location</b> * <p> * Description: <b>This Response is for this Location</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.actor</b><br> * </p> */ @SearchParamDefinition(name="location", path="AppointmentResponse.actor", description="This Response is for this Location", type="reference" ) public static final String SP_LOCATION = "location"; /** * <b>Fluent Client</b> search parameter constant for <b>location</b> * <p> * Description: <b>This Response is for this Location</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.actor</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam LOCATION = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_LOCATION); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>AppointmentResponse:location</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_LOCATION = new ca.uhn.fhir.model.api.Include("AppointmentResponse:location").toLocked(); /** * Search parameter: <b>part-status</b> * <p> * Description: <b>The participants acceptance status for this appointment</b><br> * Type: <b>token</b><br> * Path: <b>AppointmentResponse.participantStatus</b><br> * </p> */ @SearchParamDefinition(name="part-status", path="AppointmentResponse.participantStatus", description="The participants acceptance status for this appointment", type="token" ) public static final String SP_PART_STATUS = "part-status"; /** * <b>Fluent Client</b> search parameter constant for <b>part-status</b> * <p> * Description: <b>The participants acceptance status for this appointment</b><br> * Type: <b>token</b><br> * Path: <b>AppointmentResponse.participantStatus</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam PART_STATUS = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_PART_STATUS); /** * Search parameter: <b>actor</b> * <p> * Description: <b>The Person, Location/HealthcareService or Device that this appointment response replies for</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.actor</b><br> * </p> */ @SearchParamDefinition(name="actor", path="AppointmentResponse.actor", description="The Person, Location/HealthcareService or Device that this appointment response replies for", type="reference" ) public static final String SP_ACTOR = "actor"; /** * <b>Fluent Client</b> search parameter constant for <b>actor</b> * <p> * Description: <b>The Person, Location/HealthcareService or Device that this appointment response replies for</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.actor</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam ACTOR = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_ACTOR); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>AppointmentResponse:actor</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_ACTOR = new ca.uhn.fhir.model.api.Include("AppointmentResponse:actor").toLocked(); /** * Search parameter: <b>identifier</b> * <p> * Description: <b>An Identifier in this appointment response</b><br> * Type: <b>token</b><br> * Path: <b>AppointmentResponse.identifier</b><br> * </p> */ @SearchParamDefinition(name="identifier", path="AppointmentResponse.identifier", description="An Identifier in this appointment response", type="token" ) public static final String SP_IDENTIFIER = "identifier"; /** * <b>Fluent Client</b> search parameter constant for <b>identifier</b> * <p> * Description: <b>An Identifier in this appointment response</b><br> * Type: <b>token</b><br> * Path: <b>AppointmentResponse.identifier</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam IDENTIFIER = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_IDENTIFIER); /** * Search parameter: <b>appointment</b> * <p> * Description: <b>The appointment that the response is attached to</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.appointment</b><br> * </p> */ @SearchParamDefinition(name="appointment", path="AppointmentResponse.appointment", description="The appointment that the response is attached to", type="reference" ) public static final String SP_APPOINTMENT = "appointment"; /** * <b>Fluent Client</b> search parameter constant for <b>appointment</b> * <p> * Description: <b>The appointment that the response is attached to</b><br> * Type: <b>reference</b><br> * Path: <b>AppointmentResponse.appointment</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam APPOINTMENT = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_APPOINTMENT); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>AppointmentResponse:appointment</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_APPOINTMENT = new ca.uhn.fhir.model.api.Include("AppointmentResponse:appointment").toLocked(); }