ExplanationOfBenefitDetail1 constructor

const ExplanationOfBenefitDetail1({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. required CodeableConcept productOrService,
  5. List<CodeableConcept>? modifier,
  6. Quantity? quantity,
  7. Money? unitPrice,
  8. FhirDecimal? factor,
  9. @JsonKey(name: '_factor') Element? factorElement,
  10. Money? net,
  11. List<FhirPositiveInt>? noteNumber,
  12. @JsonKey(name: '_noteNumber') List<Element?>? noteNumberElement,
  13. List<ExplanationOfBenefitAdjudication>? adjudication,
  14. List<ExplanationOfBenefitSubDetail1>? subDetail,
})

ExplanationOfBenefitDetail1 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.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

extension_ May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

modifierExtension May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).

productOrService When the value is a group code then this item collects a set of related claim details, otherwise this contains the product, service, drug or other billing code for the item.

modifier Item typification or modifiers codes to convey additional context for the product or service.

quantity The number of repetitions of a service or product.

unitPrice If the item is not a group then this is the fee for the product or service, otherwise this is the total of the fees for the details of the group.

factor A real number that represents a multiplier used in determining the overall value of services delivered and/or goods received. The concept of a Factor allows for a discount or surcharge multiplier to be applied to a monetary amount.

factorElement Extensions for factor

net The quantity times the unit price for an additional service or product or charge.

noteNumber The numbers associated with notes below which apply to the adjudication of this item.

noteNumberElement Extensions for noteNumber

adjudication The adjudication results.

subDetail The third-tier service adjudications for payor added services.

Implementation

const factory ExplanationOfBenefitDetail1({
  /// [id] Unique id for the element within a resource (for internal
  ///  references). This may be any string value that does not contain spaces.
  @JsonKey(name: 'id') FhirId? fhirId,

  /// [extension_] May be used to represent additional information that is not
  /// part of the basic definition of the element. To make the use of extensions
  /// safe and manageable, there is a strict set of governance  applied to the
  /// definition and use of extensions. Though any implementer can define an
  /// extension, there is a set of requirements that SHALL be met as part of the
  ///  definition of the extension.
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,

  /// [modifierExtension] May be used to represent additional information that
  /// is not part of the basic definition of the element and that modifies the
  /// understanding of the element in which it is contained and/or the
  /// understanding of the containing element's descendants. Usually modifier
  /// elements provide negation or qualification. To make the use of extensions
  /// safe and manageable, there is a strict set of governance applied to the
  /// definition and use of extensions. Though any implementer can define an
  /// extension, there is a set of requirements that SHALL be met as part of the
  /// definition of the extension. Applications processing a resource are
  ///  required to check for modifier extensions.
  /// Modifier extensions SHALL NOT change the meaning of any elements on
  /// Resource or DomainResource (including cannot change the meaning of
  ///  modifierExtension itself).
  List<FhirExtension>? modifierExtension,

  /// [productOrService] When the value is a group code then this item collects
  /// a set of related claim details, otherwise this contains the product,
  ///  service, drug or other billing code for the item.
  required CodeableConcept productOrService,

  /// [modifier] Item typification or modifiers codes to convey additional
  ///  context for the product or service.
  List<CodeableConcept>? modifier,

  /// [quantity] The number of repetitions of a service or product.
  Quantity? quantity,

  /// [unitPrice] If the item is not a group then this is the fee for the
  /// product or service, otherwise this is the total of the fees for the
  ///  details of the group.
  Money? unitPrice,

  /// [factor] A real number that represents a multiplier used in determining
  /// the overall value of services delivered and/or goods received. The concept
  /// of a Factor allows for a discount or surcharge multiplier to be applied to
  ///  a monetary amount.
  FhirDecimal? factor,

  /// [factorElement] Extensions for factor
  @JsonKey(name: '_factor') Element? factorElement,

  /// [net] The quantity times the unit price for an additional service or
  ///  product or charge.
  Money? net,

  /// [noteNumber] The numbers associated with notes below which apply to the
  ///  adjudication of this item.
  List<FhirPositiveInt>? noteNumber,

  /// [noteNumberElement] Extensions for noteNumber
  @JsonKey(name: '_noteNumber') List<Element?>? noteNumberElement,

  /// [adjudication] The adjudication results.
  List<ExplanationOfBenefitAdjudication>? adjudication,

  /// [subDetail] The third-tier service adjudications for payor added
  ///  services.
  List<ExplanationOfBenefitSubDetail1>? subDetail,
}) = _ExplanationOfBenefitDetail1;