AppointmentWeeklyTemplate constructor

const AppointmentWeeklyTemplate({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirBoolean? monday,
  5. @JsonKey(name: '_monday') Element? mondayElement,
  6. FhirBoolean? tuesday,
  7. @JsonKey(name: '_tuesday') Element? tuesdayElement,
  8. FhirBoolean? wednesday,
  9. @JsonKey(name: '_wednesday') Element? wednesdayElement,
  10. FhirBoolean? thursday,
  11. @JsonKey(name: '_thursday') Element? thursdayElement,
  12. FhirBoolean? friday,
  13. @JsonKey(name: '_friday') Element? fridayElement,
  14. FhirBoolean? saturday,
  15. @JsonKey(name: '_saturday') Element? saturdayElement,
  16. FhirBoolean? sunday,
  17. @JsonKey(name: '_sunday') Element? sundayElement,
  18. FhirPositiveInt? weekInterval,
  19. @JsonKey(name: '_weekInterval') Element? weekIntervalElement,
})

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

monday Indicates that recurring appointments should occur on Mondays.

mondayElement ("_monday") Extensions for monday

tuesday Indicates that recurring appointments should occur on Tuesdays.

tuesdayElement ("_tuesday") Extensions for tuesday

wednesday Indicates that recurring appointments should occur on Wednesdays.

wednesdayElement ("_wednesday") Extensions for wednesday

thursday Indicates that recurring appointments should occur on Thursdays.

thursdayElement ("_thursday") Extensions for thursday

friday Indicates that recurring appointments should occur on Fridays.

fridayElement ("_friday") Extensions for friday

saturday Indicates that recurring appointments should occur on Saturdays.

saturdayElement ("_saturday") Extensions for saturday

sunday Indicates that recurring appointments should occur on Sundays.

sundayElement ("_sunday") Extensions for sunday

weekInterval The interval defines if the recurrence is every nth week. The default is every week, so it is expected that this value will be 2 or more. e.g. For recurring every second week this interval would be 2, or every third week the interval would be 3.

weekIntervalElement ("_weekInterval") Extensions for weekInterval

Implementation

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

  /// [monday] Indicates that recurring appointments should occur on Mondays.
  FhirBoolean? monday,

  /// [mondayElement] ("_monday") Extensions for monday
  @JsonKey(name: '_monday') Element? mondayElement,

  /// [tuesday] Indicates that recurring appointments should occur on
  ///  Tuesdays.
  FhirBoolean? tuesday,

  /// [tuesdayElement] ("_tuesday") Extensions for tuesday
  @JsonKey(name: '_tuesday') Element? tuesdayElement,

  /// [wednesday] Indicates that recurring appointments should occur on
  ///  Wednesdays.
  FhirBoolean? wednesday,

  /// [wednesdayElement] ("_wednesday") Extensions for wednesday
  @JsonKey(name: '_wednesday') Element? wednesdayElement,

  /// [thursday] Indicates that recurring appointments should occur on
  ///  Thursdays.
  FhirBoolean? thursday,

  /// [thursdayElement] ("_thursday") Extensions for thursday
  @JsonKey(name: '_thursday') Element? thursdayElement,

  /// [friday] Indicates that recurring appointments should occur on Fridays.
  FhirBoolean? friday,

  /// [fridayElement] ("_friday") Extensions for friday
  @JsonKey(name: '_friday') Element? fridayElement,

  /// [saturday] Indicates that recurring appointments should occur on
  ///  Saturdays.
  FhirBoolean? saturday,

  /// [saturdayElement] ("_saturday") Extensions for saturday
  @JsonKey(name: '_saturday') Element? saturdayElement,

  /// [sunday] Indicates that recurring appointments should occur on Sundays.
  FhirBoolean? sunday,

  /// [sundayElement] ("_sunday") Extensions for sunday
  @JsonKey(name: '_sunday') Element? sundayElement,

  /// [weekInterval] The interval defines if the recurrence is every nth
  ///  week. The default is every week, so it is expected that this value
  ///  will be 2 or more. e.g. For recurring every second week this interval
  ///  would be 2, or every third week the interval would be 3.
  FhirPositiveInt? weekInterval,

  /// [weekIntervalElement] ("_weekInterval") Extensions for weekInterval
  @JsonKey(name: '_weekInterval') Element? weekIntervalElement,
}) = _AppointmentWeeklyTemplate;