QuestionnaireInitial constructor

const QuestionnaireInitial({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirBoolean? valueBoolean,
  5. @JsonKey(name: '_valueBoolean') Element? valueBooleanElement,
  6. FhirDecimal? valueDecimal,
  7. @JsonKey(name: '_valueDecimal') Element? valueDecimalElement,
  8. FhirInteger? valueInteger,
  9. @JsonKey(name: '_valueInteger') Element? valueIntegerElement,
  10. FhirDate? valueDate,
  11. @JsonKey(name: '_valueDate') Element? valueDateElement,
  12. FhirDateTime? valueDateTime,
  13. @JsonKey(name: '_valueDateTime') Element? valueDateTimeElement,
  14. FhirTime? valueTime,
  15. @JsonKey(name: '_valueTime') Element? valueTimeElement,
  16. String? valueString,
  17. @JsonKey(name: '_valueString') Element? valueStringElement,
  18. FhirUri? valueUri,
  19. @JsonKey(name: '_valueUri') Element? valueUriElement,
  20. Attachment? valueAttachment,
  21. Coding? valueCoding,
  22. Quantity? valueQuantity,
  23. Reference? valueReference,
})

QuestionnaireInitial A structured set of questions intended to guide the collection of answers from end-users. Questionnaires provide detailed control over order, presentation, phraseology and grouping to allow coherent, consistent data collection.

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

valueBoolean The actual value to for an initial answer.

valueBooleanElement ("_valueBoolean") Extensions for valueBoolean

valueDecimal The actual value to for an initial answer.

valueDecimalElement ("_valueDecimal") Extensions for valueDecimal

valueInteger The actual value to for an initial answer.

valueIntegerElement ("_valueInteger") Extensions for valueInteger

valueDate The actual value to for an initial answer.

valueDateElement ("_valueDate") Extensions for valueDate

valueDateTime The actual value to for an initial answer.

valueDateTimeElement ("_valueDateTime") Extensions for valueDateTime

valueTime The actual value to for an initial answer.

valueTimeElement ("_valueTime") Extensions for valueTime

valueString The actual value to for an initial answer.

valueStringElement ("_valueString") Extensions for valueString

valueUri The actual value to for an initial answer.

valueUriElement ("_valueUri") Extensions for valueUri

valueAttachment The actual value to for an initial answer.

valueCoding The actual value to for an initial answer.

valueQuantity The actual value to for an initial answer.

valueReference The actual value to for an initial answer.

Implementation

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

  /// [valueBoolean] The actual value to for an initial answer.
  FhirBoolean? valueBoolean,

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

  /// [valueDecimal] The actual value to for an initial answer.
  FhirDecimal? valueDecimal,

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

  /// [valueInteger] The actual value to for an initial answer.
  FhirInteger? valueInteger,

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

  /// [valueDate] The actual value to for an initial answer.
  FhirDate? valueDate,

  /// [valueDateElement] ("_valueDate") Extensions for valueDate
  @JsonKey(name: '_valueDate') Element? valueDateElement,

  /// [valueDateTime] The actual value to for an initial answer.
  FhirDateTime? valueDateTime,

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

  /// [valueTime] The actual value to for an initial answer.
  FhirTime? valueTime,

  /// [valueTimeElement] ("_valueTime") Extensions for valueTime
  @JsonKey(name: '_valueTime') Element? valueTimeElement,

  /// [valueString] The actual value to for an initial answer.
  String? valueString,

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

  /// [valueUri] The actual value to for an initial answer.
  FhirUri? valueUri,

  /// [valueUriElement] ("_valueUri") Extensions for valueUri
  @JsonKey(name: '_valueUri') Element? valueUriElement,

  /// [valueAttachment] The actual value to for an initial answer.
  Attachment? valueAttachment,

  /// [valueCoding] The actual value to for an initial answer.
  Coding? valueCoding,

  /// [valueQuantity] The actual value to for an initial answer.
  Quantity? valueQuantity,

  /// [valueReference] The actual value to for an initial answer.
  Reference? valueReference,
}) = _QuestionnaireInitial;