SpecimenDefinitionContainer constructor

const SpecimenDefinitionContainer({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. CodeableConcept? material,
  5. CodeableConcept? type,
  6. CodeableConcept? cap,
  7. FhirMarkdown? description,
  8. @JsonKey(name: '_description') Element? descriptionElement,
  9. Quantity? capacity,
  10. Quantity? minimumVolumeQuantity,
  11. String? minimumVolumeString,
  12. @JsonKey(name: '_minimumVolumeString') Element? minimumVolumeStringElement,
  13. List<SpecimenDefinitionAdditive>? additive,
  14. FhirMarkdown? preparation,
  15. @JsonKey(name: '_preparation') Element? preparationElement,
})

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

material The type of material of the container.

type The type of container used to contain this kind of specimen.

cap Color of container cap.

description The textual description of the kind of container.

descriptionElement ("_description") Extensions for description

capacity The capacity (volume or other measure) of this kind of container.

minimumVolumeQuantity The minimum volume to be conditioned in the container.

minimumVolumeString The minimum volume to be conditioned in the container.

minimumVolumeStringElement ("_minimumVolumeString") Extensions for minimumVolumeString

additive Substance introduced in the kind of container to preserve, maintain or enhance the specimen. Examples: Formalin, Citrate, EDTA.

preparation Special processing that should be applied to the container for this kind of specimen.

preparationElement ("_preparation") Extensions for preparation

Implementation

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

  /// [material] The type of material of the container.
  CodeableConcept? material,

  /// [type] The type of container used to contain this kind of specimen.
  CodeableConcept? type,

  /// [cap] Color of container cap.
  CodeableConcept? cap,

  /// [description] The textual description of the kind of container.
  FhirMarkdown? description,

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

  /// [capacity] The capacity (volume or other measure) of this kind of
  ///  container.
  Quantity? capacity,

  /// [minimumVolumeQuantity] The minimum volume to be conditioned in the
  ///  container.
  Quantity? minimumVolumeQuantity,

  /// [minimumVolumeString] The minimum volume to be conditioned in the
  ///  container.
  String? minimumVolumeString,

  /// [minimumVolumeStringElement] ("_minimumVolumeString") Extensions for
  ///  minimumVolumeString
  @JsonKey(name: '_minimumVolumeString') Element? minimumVolumeStringElement,

  /// [additive] Substance introduced in the kind of container to preserve,
  ///  maintain or enhance the specimen. Examples: Formalin, Citrate, EDTA.
  List<SpecimenDefinitionAdditive>? additive,

  /// [preparation] Special processing that should be applied to the
  ///  container for this kind of specimen.
  FhirMarkdown? preparation,

  /// [preparationElement] ("_preparation") Extensions for preparation
  @JsonKey(name: '_preparation') Element? preparationElement,
}) = _SpecimenDefinitionContainer;