SpecimenProcessing constructor

const SpecimenProcessing({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. String? description,
  5. @JsonKey(name: '_description') Element? descriptionElement,
  6. CodeableConcept? procedure,
  7. List<Reference>? additive,
  8. FhirDateTime? timeDateTime,
  9. @JsonKey(name: '_timeDateTime') Element? timeDateTimeElement,
  10. Period? timePeriod,
})

SpecimenProcessing A sample to be used for analysis.

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

description Textual description of procedure.

descriptionElement Extensions for description

procedure A coded value specifying the procedure used to process the specimen.

additive Material used in the processing step.

timeDateTime A record of the time or period when the specimen processing occurred. For example the time of sample fixation or the period of time the sample was in formalin.

timeDateTimeElement Extensions for timeDateTime

timePeriod A record of the time or period when the specimen processing occurred. For example the time of sample fixation or the period of time the sample was in formalin.

Implementation

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

  /// [description] Textual description of procedure.
  String? description,

  /// [descriptionElement] Extensions for description
  @JsonKey(name: '_description') Element? descriptionElement,

  /// [procedure] A coded value specifying the procedure used to process the
  ///  specimen.
  CodeableConcept? procedure,

  /// [additive] Material used in the processing step.
  List<Reference>? additive,

  /// [timeDateTime] A record of the time or period when the specimen
  /// processing occurred.  For example the time of sample fixation or the
  ///  period of time the sample was in formalin.
  FhirDateTime? timeDateTime,

  /// [timeDateTimeElement] Extensions for timeDateTime
  @JsonKey(name: '_timeDateTime') Element? timeDateTimeElement,

  /// [timePeriod] A record of the time or period when the specimen processing
  /// occurred.  For example the time of sample fixation or the period of time
  ///  the sample was in formalin.
  Period? timePeriod,
}) = _SpecimenProcessing;