blob: ef7a689efe9ad552f52e7e40d9815f9bb2786bf5 [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>Insurance Plan Contact</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Details of a Health Insurance product/plan provided by an organization.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.InsurancePlanContact#getPurpose <em>Purpose</em>}</li>
* <li>{@link org.hl7.fhir.InsurancePlanContact#getName <em>Name</em>}</li>
* <li>{@link org.hl7.fhir.InsurancePlanContact#getTelecom <em>Telecom</em>}</li>
* <li>{@link org.hl7.fhir.InsurancePlanContact#getAddress <em>Address</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getInsurancePlanContact()
* @model extendedMetaData="name='InsurancePlan.Contact' kind='elementOnly'"
* @generated
*/
public interface InsurancePlanContact extends BackboneElement {
/**
* Returns the value of the '<em><b>Purpose</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Indicates a purpose for which the contact can be reached.
* <!-- end-model-doc -->
* @return the value of the '<em>Purpose</em>' containment reference.
* @see #setPurpose(CodeableConcept)
* @see org.hl7.fhir.FhirPackage#getInsurancePlanContact_Purpose()
* @model containment="true"
* extendedMetaData="kind='element' name='purpose' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getPurpose();
/**
* Sets the value of the '{@link org.hl7.fhir.InsurancePlanContact#getPurpose <em>Purpose</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Purpose</em>' containment reference.
* @see #getPurpose()
* @generated
*/
void setPurpose(CodeableConcept value);
/**
* Returns the value of the '<em><b>Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A name associated with the contact.
* <!-- end-model-doc -->
* @return the value of the '<em>Name</em>' containment reference.
* @see #setName(HumanName)
* @see org.hl7.fhir.FhirPackage#getInsurancePlanContact_Name()
* @model containment="true"
* extendedMetaData="kind='element' name='name' namespace='##targetNamespace'"
* @generated
*/
HumanName getName();
/**
* Sets the value of the '{@link org.hl7.fhir.InsurancePlanContact#getName <em>Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' containment reference.
* @see #getName()
* @generated
*/
void setName(HumanName value);
/**
* Returns the value of the '<em><b>Telecom</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.ContactPoint}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A contact detail (e.g. a telephone number or an email address) by which the party may be contacted.
* <!-- end-model-doc -->
* @return the value of the '<em>Telecom</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getInsurancePlanContact_Telecom()
* @model containment="true"
* extendedMetaData="kind='element' name='telecom' namespace='##targetNamespace'"
* @generated
*/
EList<ContactPoint> getTelecom();
/**
* Returns the value of the '<em><b>Address</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Visiting or postal addresses for the contact.
* <!-- end-model-doc -->
* @return the value of the '<em>Address</em>' containment reference.
* @see #setAddress(Address)
* @see org.hl7.fhir.FhirPackage#getInsurancePlanContact_Address()
* @model containment="true"
* extendedMetaData="kind='element' name='address' namespace='##targetNamespace'"
* @generated
*/
Address getAddress();
/**
* Sets the value of the '{@link org.hl7.fhir.InsurancePlanContact#getAddress <em>Address</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Address</em>' containment reference.
* @see #getAddress()
* @generated
*/
void setAddress(Address value);
} // InsurancePlanContact