VirtualServiceDetail constructor

const VirtualServiceDetail({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. Coding? channelType,
  4. FhirUrl? addressUrl,
  5. @JsonKey(name: '_addressUrl') Element? addressUrlElement,
  6. String? addressString,
  7. @JsonKey(name: '_addressString') Element? addressStringElement,
  8. ContactPoint? addressContactPoint,
  9. ExtendedContactDetail? addressExtendedContactDetail,
  10. List<FhirUrl>? additionalInfo,
  11. @JsonKey(name: '_additionalInfo') List<Element>? additionalInfoElement,
  12. FhirPositiveInt? maxParticipants,
  13. @JsonKey(name: '_maxParticipants') Element? maxParticipantsElement,
  14. String? sessionKey,
  15. @JsonKey(name: '_sessionKey') Element? sessionKeyElement,
})

VirtualServiceDetail Virtual Service Contact Details.

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.

channelType The type of virtual service to connect to (i.e. Teams, Zoom, Specific VMR technology, WhatsApp).

addressUrl What address or number needs to be used for a user to connect to the virtual service to join. The channelType informs as to which datatype is appropriate to use (requires knowledge of the specific type).

addressUrlElement ("_addressUrl") Extensions for addressUrl

addressString What address or number needs to be used for a user to connect to the virtual service to join. The channelType informs as to which datatype is appropriate to use (requires knowledge of the specific type).

addressStringElement ("_addressString") Extensions for addressString

addressContactPoint What address or number needs to be used for a user to connect to the virtual service to join. The channelType informs as to which datatype is appropriate to use (requires knowledge of the specific type).

addressExtendedContactDetail What address or number needs to be used for a user to connect to the virtual service to join. The channelType informs as to which datatype is appropriate to use (requires knowledge of the specific type).

additionalInfo Address to see alternative connection details.

additionalInfoElement ("_additionalInfo") Extensions for additionalInfo

maxParticipants Maximum number of participants supported by the virtual service.

maxParticipantsElement ("_maxParticipants") Extensions for maxParticipants

sessionKey Session Key required by the virtual service.

sessionKeyElement ("_sessionKey") Extensions for sessionKey

Implementation

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

  /// [channelType] The type of virtual service to connect to (i.e. Teams,
  ///  Zoom, Specific VMR technology, WhatsApp).
  Coding? channelType,

  /// [addressUrl] What address or number needs to be used for a user to
  ///  connect to the virtual service to join. The channelType informs as to
  ///  which datatype is appropriate to use (requires knowledge of the
  ///  specific type).
  FhirUrl? addressUrl,

  /// [addressUrlElement] ("_addressUrl") Extensions for addressUrl
  @JsonKey(name: '_addressUrl') Element? addressUrlElement,

  /// [addressString] What address or number needs to be used for a user to
  ///  connect to the virtual service to join. The channelType informs as to
  ///  which datatype is appropriate to use (requires knowledge of the
  ///  specific type).
  String? addressString,

  /// [addressStringElement] ("_addressString") Extensions for addressString
  @JsonKey(name: '_addressString') Element? addressStringElement,

  /// [addressContactPoint] What address or number needs to be used for a
  ///  user to connect to the virtual service to join. The channelType
  ///  informs as to which datatype is appropriate to use (requires knowledge
  ///  of the specific type).
  ContactPoint? addressContactPoint,

  /// [addressExtendedContactDetail] What address or number needs to be used
  ///  for a user to connect to the virtual service to join. The channelType
  ///  informs as to which datatype is appropriate to use (requires knowledge
  ///  of the specific type).
  ExtendedContactDetail? addressExtendedContactDetail,

  /// [additionalInfo] Address to see alternative connection details.
  List<FhirUrl>? additionalInfo,

  /// [additionalInfoElement] ("_additionalInfo") Extensions for
  ///  additionalInfo
  @JsonKey(name: '_additionalInfo') List<Element>? additionalInfoElement,

  /// [maxParticipants] Maximum number of participants supported by the
  ///  virtual service.
  FhirPositiveInt? maxParticipants,

  /// [maxParticipantsElement] ("_maxParticipants") Extensions for
  ///  maxParticipants
  @JsonKey(name: '_maxParticipants') Element? maxParticipantsElement,

  /// [sessionKey] Session Key required by the virtual service.
  String? sessionKey,

  /// [sessionKeyElement] ("_sessionKey") Extensions for sessionKey
  @JsonKey(name: '_sessionKey') Element? sessionKeyElement,
}) = _VirtualServiceDetail;