Class CoverageEligibilityRequest
- java.lang.Object
-
- org.linuxforhealth.fhir.model.visitor.AbstractVisitable
-
- org.linuxforhealth.fhir.model.resource.Resource
-
- org.linuxforhealth.fhir.model.resource.DomainResource
-
- org.linuxforhealth.fhir.model.resource.CoverageEligibilityRequest
-
- All Implemented Interfaces:
Visitable
@Generated("org.linuxforhealth.fhir.tools.CodeGenerator") public class CoverageEligibilityRequest extends DomainResource
The CoverageEligibilityRequest provides patient and insurance coverage information to an insurer for them to respond, in the form of an CoverageEligibilityResponse, with information regarding whether the stated coverage is valid and in- force and optionally to provide the insurance details of the policy.Maturity level: FMM2 (Trial Use)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CoverageEligibilityRequest.Builder
static class
CoverageEligibilityRequest.Insurance
Financial instruments for reimbursement for the health care products and services.static class
CoverageEligibilityRequest.Item
Service categories or billable services for which benefit details and/or an authorization prior to service delivery may be required by the payor.static class
CoverageEligibilityRequest.SupportingInfo
Additional information codes regarding exceptions, special considerations, the condition, situation, prior or concurrent issues.
-
Field Summary
-
Fields inherited from class org.linuxforhealth.fhir.model.resource.DomainResource
contained, extension, modifierExtension, text
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(java.lang.String elementName, int elementIndex, Visitor visitor)
Accept a Visitor and invoke the appropriate visit methods.static CoverageEligibilityRequest.Builder
builder()
boolean
equals(java.lang.Object obj)
DateTime
getCreated()
The date when this resource was created.Reference
getEnterer()
Person who created the request.Reference
getFacility()
Facility where the services are intended to be provided.java.util.List<Identifier>
getIdentifier()
A unique identifier assigned to this coverage eligiblity request.java.util.List<CoverageEligibilityRequest.Insurance>
getInsurance()
Financial instruments for reimbursement for the health care products and services.Reference
getInsurer()
The Insurer who issued the coverage in question and is the recipient of the request.java.util.List<CoverageEligibilityRequest.Item>
getItem()
Service categories or billable services for which benefit details and/or an authorization prior to service delivery may be required by the payor.Reference
getPatient()
The party who is the beneficiary of the supplied coverage and for whom eligibility is sought.CodeableConcept
getPriority()
When the requestor expects the processor to complete processing.Reference
getProvider()
The provider which is responsible for the request.java.util.List<EligibilityRequestPurpose>
getPurpose()
Code to specify whether requesting: prior authorization requirements for some service categories or billing codes; benefits for coverages specified or discovered; discovery and return of coverages for the patient; and/or validation that the specified coverage is in-force at the date/period specified or 'now' if not specified.Element
getServiced()
The date or dates when the enclosed suite of services were performed or completed.EligibilityRequestStatus
getStatus()
The status of the resource instance.java.util.List<CoverageEligibilityRequest.SupportingInfo>
getSupportingInfo()
Additional information codes regarding exceptions, special considerations, the condition, situation, prior or concurrent issues.boolean
hasChildren()
int
hashCode()
CoverageEligibilityRequest.Builder
toBuilder()
Create a new Builder from the contents of this Resource-
Methods inherited from class org.linuxforhealth.fhir.model.resource.DomainResource
getContained, getExtension, getModifierExtension, getText
-
Methods inherited from class org.linuxforhealth.fhir.model.resource.Resource
as, getId, getImplicitRules, getLanguage, getMeta, is
-
-
-
-
Method Detail
-
getIdentifier
public java.util.List<Identifier> getIdentifier()
A unique identifier assigned to this coverage eligiblity request.- Returns:
- An unmodifiable list containing immutable objects of type
Identifier
that may be empty.
-
getStatus
public EligibilityRequestStatus getStatus()
The status of the resource instance.- Returns:
- An immutable object of type
EligibilityRequestStatus
that is non-null.
-
getPriority
public CodeableConcept getPriority()
When the requestor expects the processor to complete processing.- Returns:
- An immutable object of type
CodeableConcept
that may be null.
-
getPurpose
public java.util.List<EligibilityRequestPurpose> getPurpose()
Code to specify whether requesting: prior authorization requirements for some service categories or billing codes; benefits for coverages specified or discovered; discovery and return of coverages for the patient; and/or validation that the specified coverage is in-force at the date/period specified or 'now' if not specified.- Returns:
- An unmodifiable list containing immutable objects of type
EligibilityRequestPurpose
that is non-empty.
-
getPatient
public Reference getPatient()
The party who is the beneficiary of the supplied coverage and for whom eligibility is sought.- Returns:
- An immutable object of type
Reference
that is non-null.
-
getServiced
public Element getServiced()
The date or dates when the enclosed suite of services were performed or completed.
-
getCreated
public DateTime getCreated()
The date when this resource was created.- Returns:
- An immutable object of type
DateTime
that is non-null.
-
getEnterer
public Reference getEnterer()
Person who created the request.- Returns:
- An immutable object of type
Reference
that may be null.
-
getProvider
public Reference getProvider()
The provider which is responsible for the request.- Returns:
- An immutable object of type
Reference
that may be null.
-
getInsurer
public Reference getInsurer()
The Insurer who issued the coverage in question and is the recipient of the request.- Returns:
- An immutable object of type
Reference
that is non-null.
-
getFacility
public Reference getFacility()
Facility where the services are intended to be provided.- Returns:
- An immutable object of type
Reference
that may be null.
-
getSupportingInfo
public java.util.List<CoverageEligibilityRequest.SupportingInfo> getSupportingInfo()
Additional information codes regarding exceptions, special considerations, the condition, situation, prior or concurrent issues.- Returns:
- An unmodifiable list containing immutable objects of type
CoverageEligibilityRequest.SupportingInfo
that may be empty.
-
getInsurance
public java.util.List<CoverageEligibilityRequest.Insurance> getInsurance()
Financial instruments for reimbursement for the health care products and services.- Returns:
- An unmodifiable list containing immutable objects of type
CoverageEligibilityRequest.Insurance
that may be empty.
-
getItem
public java.util.List<CoverageEligibilityRequest.Item> getItem()
Service categories or billable services for which benefit details and/or an authorization prior to service delivery may be required by the payor.- Returns:
- An unmodifiable list containing immutable objects of type
CoverageEligibilityRequest.Item
that may be empty.
-
hasChildren
public boolean hasChildren()
- Overrides:
hasChildren
in classDomainResource
-
accept
public void accept(java.lang.String elementName, int elementIndex, Visitor visitor)
Description copied from interface:Visitable
Accept a Visitor and invoke the appropriate visit methods. A typical implementation would look like this:if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); }
- Specified by:
accept
in interfaceVisitable
- Specified by:
accept
in classAbstractVisitable
- Parameters:
elementName
- the name of the element in the context of this visitelementIndex
- the index of the element in a list or -1 if it is not contained within a Listvisitor
- the visitor to use
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toBuilder
public CoverageEligibilityRequest.Builder toBuilder()
Description copied from class:Resource
Create a new Builder from the contents of this Resource- Specified by:
toBuilder
in classDomainResource
-
builder
public static CoverageEligibilityRequest.Builder builder()
-
-