blob: 801320d49b540d226ef4194a3d8f0374edfde437 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Enrollment Request</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* This resource provides the insurance enrollment details to the insurer regarding a specified coverage.
* If the element is present, it must have either a @value, an @id, or extensions
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.EnrollmentRequest#getIdentifier <em>Identifier</em>}</li>
* <li>{@link org.hl7.fhir.EnrollmentRequest#getStatus <em>Status</em>}</li>
* <li>{@link org.hl7.fhir.EnrollmentRequest#getCreated <em>Created</em>}</li>
* <li>{@link org.hl7.fhir.EnrollmentRequest#getInsurer <em>Insurer</em>}</li>
* <li>{@link org.hl7.fhir.EnrollmentRequest#getProvider <em>Provider</em>}</li>
* <li>{@link org.hl7.fhir.EnrollmentRequest#getCandidate <em>Candidate</em>}</li>
* <li>{@link org.hl7.fhir.EnrollmentRequest#getCoverage <em>Coverage</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getEnrollmentRequest()
* @model extendedMetaData="name='EnrollmentRequest' kind='elementOnly'"
* @generated
*/
public interface EnrollmentRequest extends DomainResource {
/**
* Returns the value of the '<em><b>Identifier</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.Identifier}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The Response business identifier.
* <!-- end-model-doc -->
* @return the value of the '<em>Identifier</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getEnrollmentRequest_Identifier()
* @model containment="true"
* extendedMetaData="kind='element' name='identifier' namespace='##targetNamespace'"
* @generated
*/
EList<Identifier> getIdentifier();
/**
* Returns the value of the '<em><b>Status</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The status of the resource instance.
* <!-- end-model-doc -->
* @return the value of the '<em>Status</em>' containment reference.
* @see #setStatus(FinancialResourceStatusCodes)
* @see org.hl7.fhir.FhirPackage#getEnrollmentRequest_Status()
* @model containment="true"
* extendedMetaData="kind='element' name='status' namespace='##targetNamespace'"
* @generated
*/
FinancialResourceStatusCodes getStatus();
/**
* Sets the value of the '{@link org.hl7.fhir.EnrollmentRequest#getStatus <em>Status</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Status</em>' containment reference.
* @see #getStatus()
* @generated
*/
void setStatus(FinancialResourceStatusCodes value);
/**
* Returns the value of the '<em><b>Created</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The date when this resource was created.
* <!-- end-model-doc -->
* @return the value of the '<em>Created</em>' containment reference.
* @see #setCreated(DateTime)
* @see org.hl7.fhir.FhirPackage#getEnrollmentRequest_Created()
* @model containment="true"
* extendedMetaData="kind='element' name='created' namespace='##targetNamespace'"
* @generated
*/
DateTime getCreated();
/**
* Sets the value of the '{@link org.hl7.fhir.EnrollmentRequest#getCreated <em>Created</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Created</em>' containment reference.
* @see #getCreated()
* @generated
*/
void setCreated(DateTime value);
/**
* Returns the value of the '<em><b>Insurer</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The Insurer who is target of the request.
* <!-- end-model-doc -->
* @return the value of the '<em>Insurer</em>' containment reference.
* @see #setInsurer(Reference)
* @see org.hl7.fhir.FhirPackage#getEnrollmentRequest_Insurer()
* @model containment="true"
* extendedMetaData="kind='element' name='insurer' namespace='##targetNamespace'"
* @generated
*/
Reference getInsurer();
/**
* Sets the value of the '{@link org.hl7.fhir.EnrollmentRequest#getInsurer <em>Insurer</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Insurer</em>' containment reference.
* @see #getInsurer()
* @generated
*/
void setInsurer(Reference value);
/**
* Returns the value of the '<em><b>Provider</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The practitioner who is responsible for the services rendered to the patient.
* <!-- end-model-doc -->
* @return the value of the '<em>Provider</em>' containment reference.
* @see #setProvider(Reference)
* @see org.hl7.fhir.FhirPackage#getEnrollmentRequest_Provider()
* @model containment="true"
* extendedMetaData="kind='element' name='provider' namespace='##targetNamespace'"
* @generated
*/
Reference getProvider();
/**
* Sets the value of the '{@link org.hl7.fhir.EnrollmentRequest#getProvider <em>Provider</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Provider</em>' containment reference.
* @see #getProvider()
* @generated
*/
void setProvider(Reference value);
/**
* Returns the value of the '<em><b>Candidate</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Patient Resource.
* <!-- end-model-doc -->
* @return the value of the '<em>Candidate</em>' containment reference.
* @see #setCandidate(Reference)
* @see org.hl7.fhir.FhirPackage#getEnrollmentRequest_Candidate()
* @model containment="true"
* extendedMetaData="kind='element' name='candidate' namespace='##targetNamespace'"
* @generated
*/
Reference getCandidate();
/**
* Sets the value of the '{@link org.hl7.fhir.EnrollmentRequest#getCandidate <em>Candidate</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Candidate</em>' containment reference.
* @see #getCandidate()
* @generated
*/
void setCandidate(Reference value);
/**
* Returns the value of the '<em><b>Coverage</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Reference to the program or plan identification, underwriter or payor.
* <!-- end-model-doc -->
* @return the value of the '<em>Coverage</em>' containment reference.
* @see #setCoverage(Reference)
* @see org.hl7.fhir.FhirPackage#getEnrollmentRequest_Coverage()
* @model containment="true"
* extendedMetaData="kind='element' name='coverage' namespace='##targetNamespace'"
* @generated
*/
Reference getCoverage();
/**
* Sets the value of the '{@link org.hl7.fhir.EnrollmentRequest#getCoverage <em>Coverage</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Coverage</em>' containment reference.
* @see #getCoverage()
* @generated
*/
void setCoverage(Reference value);
} // EnrollmentRequest