ExplanationOfBenefitFinancial constructor

const ExplanationOfBenefitFinancial({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. required CodeableConcept type,
  5. FhirUnsignedInt? allowedUnsignedInt,
  6. @JsonKey(name: '_allowedUnsignedInt') Element? allowedUnsignedIntElement,
  7. String? allowedString,
  8. @JsonKey(name: '_allowedString') Element? allowedStringElement,
  9. Money? allowedMoney,
  10. FhirUnsignedInt? usedUnsignedInt,
  11. @JsonKey(name: '_usedUnsignedInt') Element? usedUnsignedIntElement,
  12. Money? usedMoney,
})

ExplanationOfBenefitFinancial 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).

type Classification of benefit being provided.

allowedUnsignedInt The quantity of the benefit which is permitted under the coverage.

allowedUnsignedIntElement Extensions for allowedUnsignedInt

allowedString The quantity of the benefit which is permitted under the coverage.

allowedStringElement Extensions for allowedString

allowedMoney The quantity of the benefit which is permitted under the coverage.

usedUnsignedInt The quantity of the benefit which have been consumed to date.

usedUnsignedIntElement Extensions for usedUnsignedInt

usedMoney The quantity of the benefit which have been consumed to date.

Implementation

const factory ExplanationOfBenefitFinancial({
  /// [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,

  /// [type] Classification of benefit being provided.
  required CodeableConcept type,

  /// [allowedUnsignedInt] The quantity of the benefit which is permitted under
  ///  the coverage.
  FhirUnsignedInt? allowedUnsignedInt,

  /// [allowedUnsignedIntElement] Extensions for allowedUnsignedInt
  @JsonKey(name: '_allowedUnsignedInt') Element? allowedUnsignedIntElement,

  /// [allowedString] The quantity of the benefit which is permitted under the
  ///  coverage.
  String? allowedString,

  /// [allowedStringElement] Extensions for allowedString
  @JsonKey(name: '_allowedString') Element? allowedStringElement,

  /// [allowedMoney] The quantity of the benefit which is permitted under the
  ///  coverage.
  Money? allowedMoney,

  /// [usedUnsignedInt] The quantity of the benefit which have been consumed to
  ///  date.
  FhirUnsignedInt? usedUnsignedInt,

  /// [usedUnsignedIntElement] Extensions for usedUnsignedInt
  @JsonKey(name: '_usedUnsignedInt') Element? usedUnsignedIntElement,

  /// [usedMoney] The quantity of the benefit which have been consumed to date.
  Money? usedMoney,
}) = _ExplanationOfBenefitFinancial;