blob: 82417010c164bf0fb6dbebb431a39816376a36da [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Healthcare Service Eligibility</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* The details of a healthcare service available at a location.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.HealthcareServiceEligibility#getCode <em>Code</em>}</li>
* <li>{@link org.hl7.fhir.HealthcareServiceEligibility#getComment <em>Comment</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getHealthcareServiceEligibility()
* @model extendedMetaData="name='HealthcareService.Eligibility' kind='elementOnly'"
* @generated
*/
public interface HealthcareServiceEligibility extends BackboneElement {
/**
* Returns the value of the '<em><b>Code</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Coded value for the eligibility.
* <!-- end-model-doc -->
* @return the value of the '<em>Code</em>' containment reference.
* @see #setCode(CodeableConcept)
* @see org.hl7.fhir.FhirPackage#getHealthcareServiceEligibility_Code()
* @model containment="true"
* extendedMetaData="kind='element' name='code' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getCode();
/**
* Sets the value of the '{@link org.hl7.fhir.HealthcareServiceEligibility#getCode <em>Code</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Code</em>' containment reference.
* @see #getCode()
* @generated
*/
void setCode(CodeableConcept value);
/**
* Returns the value of the '<em><b>Comment</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Describes the eligibility conditions for the service.
* <!-- end-model-doc -->
* @return the value of the '<em>Comment</em>' containment reference.
* @see #setComment(Markdown)
* @see org.hl7.fhir.FhirPackage#getHealthcareServiceEligibility_Comment()
* @model containment="true"
* extendedMetaData="kind='element' name='comment' namespace='##targetNamespace'"
* @generated
*/
Markdown getComment();
/**
* Sets the value of the '{@link org.hl7.fhir.HealthcareServiceEligibility#getComment <em>Comment</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Comment</em>' containment reference.
* @see #getComment()
* @generated
*/
void setComment(Markdown value);
} // HealthcareServiceEligibility