SpecimenDefinitionTypeTested constructor

const SpecimenDefinitionTypeTested({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirBoolean? isDerived,
  5. @JsonKey(name: '_isDerived') Element? isDerivedElement,
  6. CodeableConcept? type,
  7. FhirCode? preference,
  8. @JsonKey(name: '_preference') Element? preferenceElement,
  9. SpecimenDefinitionContainer? container,
  10. String? requirement,
  11. @JsonKey(name: '_requirement') Element? requirementElement,
  12. FhirDuration? retentionTime,
  13. List<CodeableConcept>? rejectionCriterion,
  14. List<SpecimenDefinitionHandling>? handling,
})

SpecimenDefinitionTypeTested A kind of specimen with associated set of requirements.

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

isDerived Primary of secondary specimen.

isDerivedElement Extensions for isDerived

type The kind of specimen conditioned for testing expected by lab.

preference The preference for this type of conditioned specimen.

preferenceElement Extensions for preference

container The specimen's container.

requirement Requirements for delivery and special handling of this kind of conditioned specimen.

requirementElement Extensions for requirement

retentionTime The usual time that a specimen of this kind is retained after the ordered tests are completed, for the purpose of additional testing.

rejectionCriterion Criterion for rejection of the specimen in its container by the laboratory.

handling Set of instructions for preservation/transport of the specimen at a defined temperature interval, prior the testing process.

Implementation

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

  /// [isDerived] Primary of secondary specimen.
  FhirBoolean? isDerived,

  /// [isDerivedElement] Extensions for isDerived
  @JsonKey(name: '_isDerived') Element? isDerivedElement,

  /// [type] The kind of specimen conditioned for testing expected by lab.
  CodeableConcept? type,

  /// [preference] The preference for this type of conditioned specimen.
  FhirCode? preference,

  /// [preferenceElement] Extensions for preference
  @JsonKey(name: '_preference') Element? preferenceElement,

  /// [container] The specimen's container.
  SpecimenDefinitionContainer? container,

  /// [requirement] Requirements for delivery and special handling of this kind
  ///  of conditioned specimen.
  String? requirement,

  /// [requirementElement] Extensions for requirement
  @JsonKey(name: '_requirement') Element? requirementElement,

  /// [retentionTime] The usual time that a specimen of this kind is retained
  /// after the ordered tests are completed, for the purpose of additional
  ///  testing.
  FhirDuration? retentionTime,

  /// [rejectionCriterion] Criterion for rejection of the specimen in its
  ///  container by the laboratory.
  List<CodeableConcept>? rejectionCriterion,

  /// [handling] Set of instructions for preservation/transport of the specimen
  ///  at a defined temperature interval, prior the testing process.
  List<SpecimenDefinitionHandling>? handling,
}) = _SpecimenDefinitionTypeTested;