EncounterHospitalization constructor

const EncounterHospitalization({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. Identifier? preAdmissionIdentifier,
  5. Reference? origin,
  6. CodeableConcept? admitSource,
  7. CodeableConcept? reAdmission,
  8. List<CodeableConcept>? dietPreference,
  9. List<CodeableConcept>? specialCourtesy,
  10. List<CodeableConcept>? specialArrangement,
  11. Reference? destination,
  12. CodeableConcept? dischargeDisposition,
})

EncounterHospitalization An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.

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

preAdmissionIdentifier Pre-admission identifier.

origin The location/organization from which the patient came before admission.

admitSource From where patient was admitted (physician referral, transfer).

reAdmission Whether this hospitalization is a readmission and why if known.

dietPreference Diet preferences reported by the patient.

specialCourtesy Special courtesies (VIP, board member).

specialArrangement Any special requests that have been made for this hospitalization encounter, such as the provision of specific equipment or other things.

destination Location/organization to which the patient is discharged.

dischargeDisposition Category or kind of location after discharge.

Implementation

const factory EncounterHospitalization({
  /// [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_] 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,

  /// [preAdmissionIdentifier] Pre-admission identifier.
  Identifier? preAdmissionIdentifier,

  /// [origin] The location/organization from which the patient came before
  ///  admission.
  Reference? origin,

  /// [admitSource] From where patient was admitted (physician referral,
  ///  transfer).
  CodeableConcept? admitSource,

  /// [reAdmission] Whether this hospitalization is a readmission and why if
  ///  known.
  CodeableConcept? reAdmission,

  /// [dietPreference] Diet preferences reported by the patient.
  List<CodeableConcept>? dietPreference,

  /// [specialCourtesy] Special courtesies (VIP, board member).
  List<CodeableConcept>? specialCourtesy,

  /// [specialArrangement] Any special requests that have been made for this
  /// hospitalization encounter, such as the provision of specific equipment or
  ///  other things.
  List<CodeableConcept>? specialArrangement,

  /// [destination] Location/organization to which the patient is discharged.
  Reference? destination,

  /// [dischargeDisposition] Category or kind of location after discharge.
  CodeableConcept? dischargeDisposition,
}) = _EncounterHospitalization;