NutritionOrderOralDiet constructor

const NutritionOrderOralDiet({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. List<CodeableConcept>? type,
  5. List<Timing>? schedule,
  6. List<NutritionOrderNutrient>? nutrient,
  7. List<NutritionOrderTexture>? texture,
  8. List<CodeableConcept>? fluidConsistencyType,
  9. String? instruction,
  10. @JsonKey(name: '_instruction') Element? instructionElement,
})

NutritionOrderOralDiet A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident.

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 The kind of diet or dietary restriction such as fiber restricted diet or diabetic diet.

schedule The time period and frequency at which the diet should be given. The diet should be given for the combination of all schedules if more than one schedule is present.

nutrient Class that defines the quantity and type of nutrient modifications (for example carbohydrate, fiber or sodium) required for the oral diet.

texture Class that describes any texture modifications required for the patient to safely consume various types of solid foods.

fluidConsistencyType The required consistency (e.g. honey-thick, nectar-thick, thin, thickened.) of liquids or fluids served to the patient.

instruction Free text or additional instructions or information pertaining to the oral diet.

instructionElement Extensions for instruction

Implementation

const factory NutritionOrderOralDiet({
  /// [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] The kind of diet or dietary restriction such as fiber restricted
  ///  diet or diabetic diet.
  List<CodeableConcept>? type,

  /// [schedule] The time period and frequency at which the diet should be
  /// given.  The diet should be given for the combination of all schedules if
  ///  more than one schedule is present.
  List<Timing>? schedule,

  /// [nutrient] Class that defines the quantity and type of nutrient
  /// modifications (for example carbohydrate, fiber or sodium) required for the
  ///  oral diet.
  List<NutritionOrderNutrient>? nutrient,

  /// [texture] Class that describes any texture modifications required for the
  ///  patient to safely consume various types of solid foods.
  List<NutritionOrderTexture>? texture,

  /// [fluidConsistencyType] The required consistency (e.g. honey-thick,
  /// nectar-thick, thin, thickened.) of liquids or fluids served to the
  ///  patient.
  List<CodeableConcept>? fluidConsistencyType,

  /// [instruction] Free text or additional instructions or information
  ///  pertaining to the oral diet.
  String? instruction,

  /// [instructionElement] Extensions for instruction
  @JsonKey(name: '_instruction') Element? instructionElement,
}) = _NutritionOrderOralDiet;