blob: bbea671788268e18b237bf1d0071483867e18c79 [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>Claim Response Detail1</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* This resource provides the adjudication details from the processing of a Claim resource.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ClaimResponseDetail1#getService <em>Service</em>}</li>
* <li>{@link org.hl7.fhir.ClaimResponseDetail1#getFee <em>Fee</em>}</li>
* <li>{@link org.hl7.fhir.ClaimResponseDetail1#getAdjudication <em>Adjudication</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getClaimResponseDetail1()
* @model extendedMetaData="name='ClaimResponse.Detail1' kind='elementOnly'"
* @generated
*/
public interface ClaimResponseDetail1 extends BackboneElement {
/**
* Returns the value of the '<em><b>Service</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A code to indicate the Professional Service or Product supplied.
* <!-- end-model-doc -->
* @return the value of the '<em>Service</em>' containment reference.
* @see #setService(Coding)
* @see org.hl7.fhir.FhirPackage#getClaimResponseDetail1_Service()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='service' namespace='##targetNamespace'"
* @generated
*/
Coding getService();
/**
* Sets the value of the '{@link org.hl7.fhir.ClaimResponseDetail1#getService <em>Service</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Service</em>' containment reference.
* @see #getService()
* @generated
*/
void setService(Coding value);
/**
* Returns the value of the '<em><b>Fee</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The fee charged for the professional service or product..
* <!-- end-model-doc -->
* @return the value of the '<em>Fee</em>' containment reference.
* @see #setFee(Money)
* @see org.hl7.fhir.FhirPackage#getClaimResponseDetail1_Fee()
* @model containment="true"
* extendedMetaData="kind='element' name='fee' namespace='##targetNamespace'"
* @generated
*/
Money getFee();
/**
* Sets the value of the '{@link org.hl7.fhir.ClaimResponseDetail1#getFee <em>Fee</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Fee</em>' containment reference.
* @see #getFee()
* @generated
*/
void setFee(Money value);
/**
* Returns the value of the '<em><b>Adjudication</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.ClaimResponseAdjudication4}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The adjudications results.
* <!-- end-model-doc -->
* @return the value of the '<em>Adjudication</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getClaimResponseDetail1_Adjudication()
* @model containment="true"
* extendedMetaData="kind='element' name='adjudication' namespace='##targetNamespace'"
* @generated
*/
EList<ClaimResponseAdjudication4> getAdjudication();
} // ClaimResponseDetail1