SpecimenDefinitionTypeTested constructor

const SpecimenDefinitionTypeTested({
  1. @JsonKey(name: 'id') String? 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. FhirMarkdown? requirement,
  11. @JsonKey(name: '_requirement') Element? requirementElement,
  12. FhirDuration? retentionTime,
  13. FhirBoolean? singleUse,
  14. @JsonKey(name: '_singleUse') Element? singleUseElement,
  15. List<CodeableConcept>? rejectionCriterion,
  16. List<SpecimenDefinitionHandling>? handling,
  17. List<CodeableConcept>? testingDestination,
})

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_ ("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).

isDerived Primary of secondary specimen.

isDerivedElement ("_isDerived") Extensions for isDerived

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

preference The preference for this type of conditioned specimen.

preferenceElement ("_preference") Extensions for preference

container The specimen's container.

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

requirementElement ("_requirement") 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.

singleUse Specimen can be used by only one test or panel if the value is "true".

singleUseElement ("_singleUse") Extensions for singleUse

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.

testingDestination Where the specimen will be tested: e.g., lab, sector, device or any combination of these.

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') 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,

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

  /// [isDerivedElement] ("_isDerived") 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] ("_preference") 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.
  FhirMarkdown? requirement,

  /// [requirementElement] ("_requirement") 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,

  /// [singleUse] Specimen can be used by only one test or panel if the value
  ///  is "true".
  FhirBoolean? singleUse,

  /// [singleUseElement] ("_singleUse") Extensions for singleUse
  @JsonKey(name: '_singleUse') Element? singleUseElement,

  /// [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,

  /// [testingDestination] Where the specimen will be tested: e.g., lab,
  ///  sector, device or any combination of these.
  List<CodeableConcept>? testingDestination,
}) = _SpecimenDefinitionTypeTested;