blob: 25cc358ea10f992d0a6c6a41a8cb8f8d9e2e5de2 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Explanation Of Benefit Adjudication4</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* This resource provides: the claim details; adjudication details from the processing of a Claim; and optionally account balance information, for informing the subscriber of the benefits provided.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ExplanationOfBenefitAdjudication4#getCode <em>Code</em>}</li>
* <li>{@link org.hl7.fhir.ExplanationOfBenefitAdjudication4#getAmount <em>Amount</em>}</li>
* <li>{@link org.hl7.fhir.ExplanationOfBenefitAdjudication4#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getExplanationOfBenefitAdjudication4()
* @model extendedMetaData="name='ExplanationOfBenefit.Adjudication4' kind='elementOnly'"
* @generated
*/
public interface ExplanationOfBenefitAdjudication4 extends BackboneElement {
/**
* Returns the value of the '<em><b>Code</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Code indicating: Co-Pay, deductable, elegible, benefit, tax, etc.
* <!-- end-model-doc -->
* @return the value of the '<em>Code</em>' containment reference.
* @see #setCode(Coding)
* @see org.hl7.fhir.FhirPackage#getExplanationOfBenefitAdjudication4_Code()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='code' namespace='##targetNamespace'"
* @generated
*/
Coding getCode();
/**
* Sets the value of the '{@link org.hl7.fhir.ExplanationOfBenefitAdjudication4#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(Coding value);
/**
* Returns the value of the '<em><b>Amount</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Monitory amount associated with the code.
* <!-- end-model-doc -->
* @return the value of the '<em>Amount</em>' containment reference.
* @see #setAmount(Money)
* @see org.hl7.fhir.FhirPackage#getExplanationOfBenefitAdjudication4_Amount()
* @model containment="true"
* extendedMetaData="kind='element' name='amount' namespace='##targetNamespace'"
* @generated
*/
Money getAmount();
/**
* Sets the value of the '{@link org.hl7.fhir.ExplanationOfBenefitAdjudication4#getAmount <em>Amount</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Amount</em>' containment reference.
* @see #getAmount()
* @generated
*/
void setAmount(Money value);
/**
* Returns the value of the '<em><b>Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A non-monetary value for example a percentage. Mutually exclusive to the amount element above.
* <!-- end-model-doc -->
* @return the value of the '<em>Value</em>' containment reference.
* @see #setValue(Decimal)
* @see org.hl7.fhir.FhirPackage#getExplanationOfBenefitAdjudication4_Value()
* @model containment="true"
* extendedMetaData="kind='element' name='value' namespace='##targetNamespace'"
* @generated
*/
Decimal getValue();
/**
* Sets the value of the '{@link org.hl7.fhir.ExplanationOfBenefitAdjudication4#getValue <em>Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' containment reference.
* @see #getValue()
* @generated
*/
void setValue(Decimal value);
} // ExplanationOfBenefitAdjudication4