blob: 23de8d346122b4dd86528c47382d8ce491cc59ac [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Encounter Class History</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.EncounterClassHistory#getClass_ <em>Class</em>}</li>
* <li>{@link org.hl7.fhir.EncounterClassHistory#getPeriod <em>Period</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getEncounterClassHistory()
* @model extendedMetaData="name='Encounter.ClassHistory' kind='elementOnly'"
* @generated
*/
public interface EncounterClassHistory extends BackboneElement {
/**
* Returns the value of the '<em><b>Class</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* inpatient | outpatient | ambulatory | emergency +.
* <!-- end-model-doc -->
* @return the value of the '<em>Class</em>' containment reference.
* @see #setClass(Coding)
* @see org.hl7.fhir.FhirPackage#getEncounterClassHistory_Class()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='class' namespace='##targetNamespace'"
* @generated
*/
Coding getClass_();
/**
* Sets the value of the '{@link org.hl7.fhir.EncounterClassHistory#getClass_ <em>Class</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Class</em>' containment reference.
* @see #getClass_()
* @generated
*/
void setClass(Coding value);
/**
* Returns the value of the '<em><b>Period</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The time that the episode was in the specified class.
* <!-- end-model-doc -->
* @return the value of the '<em>Period</em>' containment reference.
* @see #setPeriod(Period)
* @see org.hl7.fhir.FhirPackage#getEncounterClassHistory_Period()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='period' namespace='##targetNamespace'"
* @generated
*/
Period getPeriod();
/**
* Sets the value of the '{@link org.hl7.fhir.EncounterClassHistory#getPeriod <em>Period</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Period</em>' containment reference.
* @see #getPeriod()
* @generated
*/
void setPeriod(Period value);
} // EncounterClassHistory