AddressType

public enum AddressType: String

The type of an address (physical / postal)

URL: http://hl7.org/fhir/address-type ValueSet: http://hl7.org/fhir/ValueSet/address-type

  • Mailing addresses - PO Boxes and care-of addresses.

    Declaration

    Swift

    case postal = "postal"
  • A physical address that can be visited.

    Declaration

    Swift

    case physical = "physical"
  • An address that is both physical and postal.

    Declaration

    Swift

    case both = "both"