ExplanationOfBenefitSupportingInfo constructor

const ExplanationOfBenefitSupportingInfo({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirPositiveInt? sequence,
  5. @JsonKey(name: '_sequence') Element? sequenceElement,
  6. required CodeableConcept category,
  7. CodeableConcept? code,
  8. FhirDate? timingDate,
  9. @JsonKey(name: '_timingDate') Element? timingDateElement,
  10. Period? timingPeriod,
  11. FhirBoolean? valueBoolean,
  12. @JsonKey(name: '_valueBoolean') Element? valueBooleanElement,
  13. String? valueString,
  14. @JsonKey(name: '_valueString') Element? valueStringElement,
  15. Quantity? valueQuantity,
  16. Attachment? valueAttachment,
  17. Reference? valueReference,
  18. Coding? reason,
})

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

sequence A number to uniquely identify supporting information entries.

sequenceElement Extensions for sequence

category The general class of the information supplied: information; exception; accident, employment; onset, etc.

code System and code pertaining to the specific information regarding special conditions relating to the setting, treatment or patient for which care is sought.

timingDate The date when or period to which this information refers.

timingDateElement Extensions for timingDate

timingPeriod The date when or period to which this information refers.

valueBoolean Additional data or information such as resources, documents, images etc. including references to the data or the actual inclusion of the data.

valueBooleanElement Extensions for valueBoolean

valueString Additional data or information such as resources, documents, images etc. including references to the data or the actual inclusion of the data.

valueStringElement Extensions for valueString

valueQuantity Additional data or information such as resources, documents, images etc. including references to the data or the actual inclusion of the data.

valueAttachment Additional data or information such as resources, documents, images etc. including references to the data or the actual inclusion of the data.

valueReference Additional data or information such as resources, documents, images etc. including references to the data or the actual inclusion of the data.

reason Provides the reason in the situation where a reason code is required in addition to the content.

Implementation

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

  /// [sequence] A number to uniquely identify supporting information entries.
  FhirPositiveInt? sequence,

  /// [sequenceElement] Extensions for sequence
  @JsonKey(name: '_sequence') Element? sequenceElement,

  /// [category] The general class of the information supplied: information;
  ///  exception; accident, employment; onset, etc.
  required CodeableConcept category,

  /// [code] System and code pertaining to the specific information regarding
  /// special conditions relating to the setting, treatment or patient  for
  ///  which care is sought.
  CodeableConcept? code,

  /// [timingDate] The date when or period to which this information refers.
  FhirDate? timingDate,

  /// [timingDateElement] Extensions for timingDate
  @JsonKey(name: '_timingDate') Element? timingDateElement,

  /// [timingPeriod] The date when or period to which this information refers.
  Period? timingPeriod,

  /// [valueBoolean] Additional data or information such as resources,
  /// documents, images etc. including references to the data or the actual
  ///  inclusion of the data.
  FhirBoolean? valueBoolean,

  /// [valueBooleanElement] Extensions for valueBoolean
  @JsonKey(name: '_valueBoolean') Element? valueBooleanElement,

  /// [valueString] Additional data or information such as resources,
  /// documents, images etc. including references to the data or the actual
  ///  inclusion of the data.
  String? valueString,

  /// [valueStringElement] Extensions for valueString
  @JsonKey(name: '_valueString') Element? valueStringElement,

  /// [valueQuantity] Additional data or information such as resources,
  /// documents, images etc. including references to the data or the actual
  ///  inclusion of the data.
  Quantity? valueQuantity,

  /// [valueAttachment] Additional data or information such as resources,
  /// documents, images etc. including references to the data or the actual
  ///  inclusion of the data.
  Attachment? valueAttachment,

  /// [valueReference] Additional data or information such as resources,
  /// documents, images etc. including references to the data or the actual
  ///  inclusion of the data.
  Reference? valueReference,

  /// [reason] Provides the reason in the situation where a reason code is
  ///  required in addition to the content.
  Coding? reason,
}) = _ExplanationOfBenefitSupportingInfo;