blob: 377d49e09dc581dbbd643653e0bd8998d8f80aed [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.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.Coding;
import org.eclipse.mdht.uml.fhir.core.datatype.PositiveInt;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Claim Response Errors</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseErrors#getSequenceLinkId <em>Sequence Link Id</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseErrors#getDetailSequenceLinkId <em>Detail Sequence Link Id</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseErrors#getSubdetailSequenceLinkId <em>Subdetail Sequence Link Id</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseErrors#getCode <em>Code</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimResponseErrors()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='ClaimResponse_Errors'"
* @generated
*/
public interface ClaimResponseErrors 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#getClaimResponseErrors_SequenceLinkId()
* @model
* @generated
*/
PositiveInt getSequenceLinkId();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseErrors#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>Detail Sequence Link Id</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Detail 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>Detail Sequence Link Id</em>' reference.
* @see #setDetailSequenceLinkId(PositiveInt)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimResponseErrors_DetailSequenceLinkId()
* @model
* @generated
*/
PositiveInt getDetailSequenceLinkId();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseErrors#getDetailSequenceLinkId <em>Detail Sequence Link Id</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Detail Sequence Link Id</em>' reference.
* @see #getDetailSequenceLinkId()
* @generated
*/
void setDetailSequenceLinkId(PositiveInt value);
/**
* Returns the value of the '<em><b>Subdetail Sequence Link Id</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Subdetail 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>Subdetail Sequence Link Id</em>' reference.
* @see #setSubdetailSequenceLinkId(PositiveInt)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimResponseErrors_SubdetailSequenceLinkId()
* @model
* @generated
*/
PositiveInt getSubdetailSequenceLinkId();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseErrors#getSubdetailSequenceLinkId <em>Subdetail Sequence Link Id</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Subdetail Sequence Link Id</em>' reference.
* @see #getSubdetailSequenceLinkId()
* @generated
*/
void setSubdetailSequenceLinkId(PositiveInt value);
/**
* Returns the value of the '<em><b>Code</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Code</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Code</em>' reference.
* @see #setCode(Coding)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimResponseErrors_Code()
* @model required="true"
* @generated
*/
Coding getCode();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimResponseErrors#getCode <em>Code</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Code</em>' reference.
* @see #getCode()
* @generated
*/
void setCode(Coding value);
} // ClaimResponseErrors