GroupCharacteristic constructor

const GroupCharacteristic({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. required CodeableConcept code,
  5. CodeableConcept? valueCodeableConcept,
  6. FhirBoolean? valueBoolean,
  7. @JsonKey(name: '_valueBoolean') Element? valueBooleanElement,
  8. Quantity? valueQuantity,
  9. Range? valueRange,
  10. Reference? valueReference,
  11. FhirBoolean? exclude,
  12. @JsonKey(name: '_exclude') Element? excludeElement,
  13. Period? period,
})

GroupCharacteristic Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively, and are not formally or legally recognized; i.e. a collection of entities that isn't an Organization.

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

code A code that identifies the kind of trait being asserted.

valueCodeableConcept The value of the trait that holds (or does not hold - see 'exclude') for members of the group.

valueBoolean The value of the trait that holds (or does not hold - see 'exclude') for members of the group.

valueBooleanElement Extensions for valueBoolean

valueQuantity The value of the trait that holds (or does not hold - see 'exclude') for members of the group.

valueRange The value of the trait that holds (or does not hold - see 'exclude') for members of the group.

valueReference The value of the trait that holds (or does not hold - see 'exclude') for members of the group.

exclude If true, indicates the characteristic is one that is NOT held by members of the group.

excludeElement Extensions for exclude

period The period over which the characteristic is tested; e.g. the patient had an operation during the month of June.

Implementation

const factory GroupCharacteristic({
  /// [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_] 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,

  /// [code] A code that identifies the kind of trait being asserted.
  required CodeableConcept code,

  /// [valueCodeableConcept] The value of the trait that holds (or does not
  ///  hold - see 'exclude') for members of the group.
  CodeableConcept? valueCodeableConcept,

  /// [valueBoolean] The value of the trait that holds (or does not hold - see
  ///  'exclude') for members of the group.
  FhirBoolean? valueBoolean,

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

  /// [valueQuantity] The value of the trait that holds (or does not hold - see
  ///  'exclude') for members of the group.
  Quantity? valueQuantity,

  /// [valueRange] The value of the trait that holds (or does not hold - see
  ///  'exclude') for members of the group.
  Range? valueRange,

  /// [valueReference] The value of the trait that holds (or does not hold -
  ///  see 'exclude') for members of the group.
  Reference? valueReference,

  /// [exclude] If true, indicates the characteristic is one that is NOT held
  ///  by members of the group.
  FhirBoolean? exclude,

  /// [excludeElement] Extensions for exclude
  @JsonKey(name: '_exclude') Element? excludeElement,

  /// [period] The period over which the characteristic is tested; e.g. the
  ///  patient had an operation during the month of June.
  Period? period,
}) = _GroupCharacteristic;