AccountDiagnosis constructor

const AccountDiagnosis({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirPositiveInt? sequence,
  5. @JsonKey(name: '_sequence') Element? sequenceElement,
  6. required CodeableReference condition,
  7. FhirDateTime? dateOfDiagnosis,
  8. @JsonKey(name: '_dateOfDiagnosis') Element? dateOfDiagnosisElement,
  9. List<CodeableConcept>? type,
  10. FhirBoolean? onAdmission,
  11. @JsonKey(name: '_onAdmission') Element? onAdmissionElement,
  12. List<CodeableConcept>? packageCode,
})

AccountDiagnosis A financial tool for tracking value accrued for a particular purpose. In the healthcare field, used to track charges for a patient, cost centers, etc.

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

extension_ ("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 managable, 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 managable, 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 Ranking of the diagnosis (for each type).

sequenceElement ("_sequence") Extensions for sequence

condition The diagnosis relevant to the account.

dateOfDiagnosis Ranking of the diagnosis (for each type).

dateOfDiagnosisElement ("_dateOfDiagnosis") Extensions for dateOfDiagnosis

type Type that this diagnosis has relevant to the account (e.g. admission, billing, discharge …).

onAdmission Was the Diagnosis present on Admission in the related Encounter.

onAdmissionElement ("_onAdmission") Extensions for onAdmission

packageCode The package code can be used to group diagnoses that may be priced or delivered as a single product. Such as DRGs.

Implementation

const factory AccountDiagnosis({
  /// [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') String? fhirId,

  /// [extension_] ("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 managable, 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 managable, 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] Ranking of the diagnosis (for each type).
  FhirPositiveInt? sequence,

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

  /// [condition] The diagnosis relevant to the account.
  required CodeableReference condition,

  /// [dateOfDiagnosis] Ranking of the diagnosis (for each type).
  FhirDateTime? dateOfDiagnosis,

  /// [dateOfDiagnosisElement] ("_dateOfDiagnosis") Extensions for
  ///  dateOfDiagnosis
  @JsonKey(name: '_dateOfDiagnosis') Element? dateOfDiagnosisElement,

  /// [type] Type that this diagnosis has relevant to the account (e.g.
  ///  admission, billing, discharge …).
  List<CodeableConcept>? type,

  /// [onAdmission] Was the Diagnosis present on Admission in the related
  ///  Encounter.
  FhirBoolean? onAdmission,

  /// [onAdmissionElement] ("_onAdmission") Extensions for onAdmission
  @JsonKey(name: '_onAdmission') Element? onAdmissionElement,

  /// [packageCode] The package code can be used to group diagnoses that may
  ///  be priced or delivered as a single product. Such as DRGs.
  List<CodeableConcept>? packageCode,
}) = _AccountDiagnosis;