QuestionnaireInitial constructor

const QuestionnaireInitial({
  1. @JsonKey(name: 'id') FhirId? 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_ 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).

valueBoolean The actual value to for an initial answer.

valueBooleanElement Extensions for valueBoolean

valueDecimal The actual value to for an initial answer.

valueDecimalElement Extensions for valueDecimal

valueInteger The actual value to for an initial answer.

valueIntegerElement Extensions for valueInteger

valueDate The actual value to for an initial answer.

valueDateElement Extensions for valueDate

valueDateTime The actual value to for an initial answer.

valueDateTimeElement Extensions for valueDateTime

valueTime The actual value to for an initial answer.

valueTimeElement Extensions for valueTime

valueString The actual value to for an initial answer.

valueStringElement Extensions for valueString

valueUri The actual value to for an initial answer.

valueUriElement 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') FhirId? 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,

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /// [valueUriElement] 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;