Availability constructor

const Availability({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<AvailabilityAvailableTime>? availableTime,
  4. List<AvailabilityNotAvailableTime>? notAvailableTime,
})

Availability Availability data for an {item}.

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.

availableTime Times the {item} is available.

notAvailableTime Not available during this time due to provided reason.

Implementation

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

  /// [availableTime] Times the {item} is available.
  List<AvailabilityAvailableTime>? availableTime,

  /// [notAvailableTime] Not available during this time due to provided
  ///  reason.
  List<AvailabilityNotAvailableTime>? notAvailableTime,
}) = _Availability;