blob: 59ff416f5cbfa0c4b9dcd38e28c6e0f5b2d7cfe7 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Claim Payee</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ClaimPayee#getType <em>Type</em>}</li>
* <li>{@link org.hl7.fhir.ClaimPayee#getProvider <em>Provider</em>}</li>
* <li>{@link org.hl7.fhir.ClaimPayee#getOrganization <em>Organization</em>}</li>
* <li>{@link org.hl7.fhir.ClaimPayee#getPerson <em>Person</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getClaimPayee()
* @model extendedMetaData="name='Claim.Payee' kind='elementOnly'"
* @generated
*/
public interface ClaimPayee extends BackboneElement {
/**
* Returns the value of the '<em><b>Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Party to be reimbursed: Subscriber, provider, other.
* <!-- end-model-doc -->
* @return the value of the '<em>Type</em>' containment reference.
* @see #setType(Coding)
* @see org.hl7.fhir.FhirPackage#getClaimPayee_Type()
* @model containment="true"
* extendedMetaData="kind='element' name='type' namespace='##targetNamespace'"
* @generated
*/
Coding getType();
/**
* Sets the value of the '{@link org.hl7.fhir.ClaimPayee#getType <em>Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' containment reference.
* @see #getType()
* @generated
*/
void setType(Coding value);
/**
* Returns the value of the '<em><b>Provider</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The provider who is to be reimbursed for the claim (the party to whom any benefit is assigned).
* <!-- end-model-doc -->
* @return the value of the '<em>Provider</em>' containment reference.
* @see #setProvider(Reference)
* @see org.hl7.fhir.FhirPackage#getClaimPayee_Provider()
* @model containment="true"
* extendedMetaData="kind='element' name='provider' namespace='##targetNamespace'"
* @generated
*/
Reference getProvider();
/**
* Sets the value of the '{@link org.hl7.fhir.ClaimPayee#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>Organization</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The organization who is to be reimbursed for the claim (the party to whom any benefit is assigned).
* <!-- end-model-doc -->
* @return the value of the '<em>Organization</em>' containment reference.
* @see #setOrganization(Reference)
* @see org.hl7.fhir.FhirPackage#getClaimPayee_Organization()
* @model containment="true"
* extendedMetaData="kind='element' name='organization' namespace='##targetNamespace'"
* @generated
*/
Reference getOrganization();
/**
* Sets the value of the '{@link org.hl7.fhir.ClaimPayee#getOrganization <em>Organization</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Organization</em>' containment reference.
* @see #getOrganization()
* @generated
*/
void setOrganization(Reference value);
/**
* Returns the value of the '<em><b>Person</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The person other than the subscriber who is to be reimbursed for the claim (the party to whom any benefit is assigned).
* <!-- end-model-doc -->
* @return the value of the '<em>Person</em>' containment reference.
* @see #setPerson(Reference)
* @see org.hl7.fhir.FhirPackage#getClaimPayee_Person()
* @model containment="true"
* extendedMetaData="kind='element' name='person' namespace='##targetNamespace'"
* @generated
*/
Reference getPerson();
/**
* Sets the value of the '{@link org.hl7.fhir.ClaimPayee#getPerson <em>Person</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Person</em>' containment reference.
* @see #getPerson()
* @generated
*/
void setPerson(Reference value);
} // ClaimPayee