ExtendedContactDetail constructor

const ExtendedContactDetail({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. CodeableConcept? purpose,
  4. List<HumanName>? name,
  5. List<ContactPoint>? telecom,
  6. Address? address,
  7. Reference? organization,
  8. Period? period,
})

ExtendedContactDetail Specifies contact information for a specific purpose over a period of time, might be handled/monitored by a specific named person or organization.

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.

purpose The purpose/type of contact.

name The name of an individual to contact, some types of contact detail are usually blank.

telecom The contact details application for the purpose defined.

address Address for the contact.

organization This contact detail is handled/monitored by a specific organization. If the name is provided in the contact, then it is referring to the named individual within this organization.

period Period that this contact was valid for usage.

Implementation

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

  /// [purpose] The purpose/type of contact.
  CodeableConcept? purpose,

  /// [name] The name of an individual to contact, some types of contact
  ///  detail are usually blank.
  List<HumanName>? name,

  /// [telecom] The contact details application for the purpose defined.
  List<ContactPoint>? telecom,

  /// [address] Address for the contact.
  Address? address,

  /// [organization] This contact detail is handled/monitored by a specific
  ///  organization. If the name is provided in the contact, then it is
  ///  referring to the named individual within this organization.
  Reference? organization,

  /// [period] Period that this contact was valid for usage.
  Period? period,
}) = _ExtendedContactDetail;