AppointmentRecurrenceTemplate constructor

const AppointmentRecurrenceTemplate({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. CodeableConcept? timezone,
  5. required CodeableConcept recurrenceType,
  6. FhirDate? lastOccurrenceDate,
  7. @JsonKey(name: '_lastOccurrenceDate') Element? lastOccurrenceDateElement,
  8. FhirPositiveInt? occurrenceCount,
  9. @JsonKey(name: '_occurrenceCount') Element? occurrenceCountElement,
  10. List<FhirDate>? occurrenceDate,
  11. @JsonKey(name: '_occurrenceDate') List<Element>? occurrenceDateElement,
  12. AppointmentWeeklyTemplate? weeklyTemplate,
  13. AppointmentMonthlyTemplate? monthlyTemplate,
  14. AppointmentYearlyTemplate? yearlyTemplate,
  15. List<FhirDate>? excludingDate,
  16. @JsonKey(name: '_excludingDate') List<Element>? excludingDateElement,
  17. List<FhirPositiveInt>? excludingRecurrenceId,
  18. @JsonKey(name: '_excludingRecurrenceId') List<Element>? excludingRecurrenceIdElement,
})

AppointmentRecurrenceTemplate A booking of a healthcare event among patient(s), practitioner(s), related person(s) and/or device(s) for a specific date/time. This may result in one or more Encounter(s).

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

timezone The timezone of the recurring appointment occurrences.

recurrenceType How often the appointment series should recur.

lastOccurrenceDate Recurring appointments will not occur after this date.

lastOccurrenceDateElement ("_lastOccurrenceDate") Extensions for lastOccurrenceDate

occurrenceCount How many appointments are planned in the recurrence.

occurrenceCountElement ("_occurrenceCount") Extensions for occurrenceCount

occurrenceDate The list of specific dates that will have appointments generated.

occurrenceDateElement ("_occurrenceDate") Extensions for occurrenceDate

weeklyTemplate Information about weekly recurring appointments.

monthlyTemplate Information about monthly recurring appointments.

yearlyTemplate Information about yearly recurring appointments.

excludingDate Any dates, such as holidays, that should be excluded from the recurrence.

excludingDateElement ("_excludingDate") Extensions for excludingDate

excludingRecurrenceId Any dates, such as holidays, that should be excluded from the recurrence.

excludingRecurrenceIdElement ("_excludingRecurrenceId") Extensions for excludingRecurrenceId

Implementation

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

  /// [timezone] The timezone of the recurring appointment occurrences.
  CodeableConcept? timezone,

  /// [recurrenceType] How often the appointment series should recur.
  required CodeableConcept recurrenceType,

  /// [lastOccurrenceDate] Recurring appointments will not occur after this
  ///  date.
  FhirDate? lastOccurrenceDate,

  /// [lastOccurrenceDateElement] ("_lastOccurrenceDate") Extensions for
  ///  lastOccurrenceDate
  @JsonKey(name: '_lastOccurrenceDate') Element? lastOccurrenceDateElement,

  /// [occurrenceCount] How many appointments are planned in the recurrence.
  FhirPositiveInt? occurrenceCount,

  /// [occurrenceCountElement] ("_occurrenceCount") Extensions for
  ///  occurrenceCount
  @JsonKey(name: '_occurrenceCount') Element? occurrenceCountElement,

  /// [occurrenceDate] The list of specific dates that will have appointments
  ///  generated.
  List<FhirDate>? occurrenceDate,

  /// [occurrenceDateElement] ("_occurrenceDate") Extensions for
  ///  occurrenceDate
  @JsonKey(name: '_occurrenceDate') List<Element>? occurrenceDateElement,

  /// [weeklyTemplate] Information about weekly recurring appointments.
  AppointmentWeeklyTemplate? weeklyTemplate,

  /// [monthlyTemplate] Information about monthly recurring appointments.
  AppointmentMonthlyTemplate? monthlyTemplate,

  /// [yearlyTemplate] Information about yearly recurring appointments.
  AppointmentYearlyTemplate? yearlyTemplate,

  /// [excludingDate] Any dates, such as holidays, that should be excluded
  ///  from the recurrence.
  List<FhirDate>? excludingDate,

  /// [excludingDateElement] ("_excludingDate") Extensions for excludingDate
  @JsonKey(name: '_excludingDate') List<Element>? excludingDateElement,

  /// [excludingRecurrenceId] Any dates, such as holidays, that should be
  ///  excluded from the recurrence.
  List<FhirPositiveInt>? excludingRecurrenceId,

  /// [excludingRecurrenceIdElement] ("_excludingRecurrenceId") Extensions
  ///  for excludingRecurrenceId
  @JsonKey(name: '_excludingRecurrenceId')
  List<Element>? excludingRecurrenceIdElement,
}) = _AppointmentRecurrenceTemplate;