InventoryItemCharacteristic constructor

const InventoryItemCharacteristic({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. required CodeableConcept characteristicType,
  5. String? valueString,
  6. @JsonKey(name: '_valueString') Element? valueStringElement,
  7. FhirInteger? valueInteger,
  8. @JsonKey(name: '_valueInteger') Element? valueIntegerElement,
  9. FhirDecimal? valueDecimal,
  10. @JsonKey(name: '_valueDecimal') Element? valueDecimalElement,
  11. FhirBoolean? valueBoolean,
  12. @JsonKey(name: '_valueBoolean') Element? valueBooleanElement,
  13. FhirUrl? valueUrl,
  14. @JsonKey(name: '_valueUrl') Element? valueUrlElement,
  15. FhirDateTime? valueDateTime,
  16. @JsonKey(name: '_valueDateTime') Element? valueDateTimeElement,
  17. Quantity? valueQuantity,
  18. Range? valueRange,
  19. Ratio? valueRatio,
  20. Annotation? valueAnnotation,
  21. Address? valueAddress,
  22. FhirDuration? valueDuration,
  23. CodeableConcept? valueCodeableConcept,
})

InventoryItemCharacteristic A functional description of an inventory item used in inventory and supply-related workflows.

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

characteristicType The type of characteristic that is being defined.

valueString The value of the attribute.

valueStringElement ("_valueString") Extensions for valueString

valueInteger The value of the attribute.

valueIntegerElement ("_valueInteger") Extensions for valueInteger

valueDecimal The value of the attribute.

valueDecimalElement ("_valueDecimal") Extensions for valueDecimal

valueBoolean The value of the attribute.

valueBooleanElement ("_valueBoolean") Extensions for valueBoolean

valueUrl The value of the attribute.

valueUrlElement ("_valueUrl") Extensions for valueUrl

valueDateTime The value of the attribute.

valueDateTimeElement ("_valueDateTime") Extensions for valueDateTime

valueQuantity The value of the attribute.

valueRange The value of the attribute.

valueRatio The value of the attribute.

valueAnnotation The value of the attribute.

valueAddress The value of the attribute.

valueDuration The value of the attribute.

valueCodeableConcept The value of the attribute.

Implementation

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

  /// [characteristicType] The type of characteristic that is being defined.
  required CodeableConcept characteristicType,

  /// [valueString] The value of the attribute.
  String? valueString,

  /// [valueStringElement] ("_valueString") Extensions for valueString
  @JsonKey(name: '_valueString') Element? valueStringElement,

  /// [valueInteger] The value of the attribute.
  FhirInteger? valueInteger,

  /// [valueIntegerElement] ("_valueInteger") Extensions for valueInteger
  @JsonKey(name: '_valueInteger') Element? valueIntegerElement,

  /// [valueDecimal] The value of the attribute.
  FhirDecimal? valueDecimal,

  /// [valueDecimalElement] ("_valueDecimal") Extensions for valueDecimal
  @JsonKey(name: '_valueDecimal') Element? valueDecimalElement,

  /// [valueBoolean] The value of the attribute.
  FhirBoolean? valueBoolean,

  /// [valueBooleanElement] ("_valueBoolean") Extensions for valueBoolean
  @JsonKey(name: '_valueBoolean') Element? valueBooleanElement,

  /// [valueUrl] The value of the attribute.
  FhirUrl? valueUrl,

  /// [valueUrlElement] ("_valueUrl") Extensions for valueUrl
  @JsonKey(name: '_valueUrl') Element? valueUrlElement,

  /// [valueDateTime] The value of the attribute.
  FhirDateTime? valueDateTime,

  /// [valueDateTimeElement] ("_valueDateTime") Extensions for valueDateTime
  @JsonKey(name: '_valueDateTime') Element? valueDateTimeElement,

  /// [valueQuantity] The value of the attribute.
  Quantity? valueQuantity,

  /// [valueRange] The value of the attribute.
  Range? valueRange,

  /// [valueRatio] The value of the attribute.
  Ratio? valueRatio,

  /// [valueAnnotation] The value of the attribute.
  Annotation? valueAnnotation,

  /// [valueAddress] The value of the attribute.
  Address? valueAddress,

  /// [valueDuration] The value of the attribute.
  FhirDuration? valueDuration,

  /// [valueCodeableConcept] The value of the attribute.
  CodeableConcept? valueCodeableConcept,
}) = _InventoryItemCharacteristic;