blob: e3563c10624f96d1062d5ccb433172eccdc11704 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 David Carlson and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* David Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.mdht.uml.fhir.core.resource;
import org.eclipse.emf.common.util.EList;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.PositiveInt;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Claim Response Items</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseItems#getSequenceLinkId <em>Sequence Link Id</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseItems#getNoteNumbers <em>Note Number</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseItems#getAdjudications <em>Adjudication</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseItems#getDetails <em>Detail</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimResponseItems()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='ClaimResponse_Items'"
* @generated
*/
public interface ClaimResponseItems extends BackboneElement {
/**
* Returns the value of the '<em><b>Sequence Link Id</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Sequence Link Id</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Sequence Link Id</em>' reference.
* @see #setSequenceLinkId(PositiveInt)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimResponseItems_SequenceLinkId()
* @model required="true"
* @generated
*/
PositiveInt getSequenceLinkId();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseItems#getSequenceLinkId <em>Sequence Link Id</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Sequence Link Id</em>' reference.
* @see #getSequenceLinkId()
* @generated
*/
void setSequenceLinkId(PositiveInt value);
/**
* Returns the value of the '<em><b>Note Number</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.PositiveInt}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Note Number</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Note Number</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimResponseItems_NoteNumber()
* @model
* @generated
*/
EList<PositiveInt> getNoteNumbers();
/**
* Returns the value of the '<em><b>Adjudication</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseItemsItemAdjudication}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Adjudication</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Adjudication</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimResponseItems_Adjudication()
* @model containment="true"
* @generated
*/
EList<ClaimResponseItemsItemAdjudication> getAdjudications();
/**
* Returns the value of the '<em><b>Detail</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseItemsItemDetail}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Detail</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Detail</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimResponseItems_Detail()
* @model containment="true"
* @generated
*/
EList<ClaimResponseItemsItemDetail> getDetails();
} // ClaimResponseItems