ProviderAvailability

public struct ProviderAvailability : Codable, Equatable

Object containing information on Provider Availability. Called using the AvailabilityService.getProviderAvailability methods

  • npi

    The national identifier for the Provider

    Declaration

    Swift

    public let npi: String
  • The full name of the Provider

    Declaration

    Swift

    public let name: String
  • The gender of the Provider if provided

    Declaration

    Swift

    public let gender: Gender?
  • A list of specialties of the provider

    Declaration

    Swift

    public let specialties: [String]
  • The departmentId of the provider

    Declaration

    Swift

    public let departmentId: String
  • The name of the department of the provider

    Declaration

    Swift

    public let departmentName: String
  • Which EHR System this provider belongs to

    Declaration

    Swift

    public let ehrInstance: String
  • Address of the provider

    Declaration

    Swift

    public let address: Address
  • Which timezone this provider department practices in

    Declaration

    Swift

    public let timezone: String
  • If zip code or Latitude/Longitude are used in search, the distance from there, otherwise 0

    Declaration

    Swift

    public let distanceFrom: Double
  • Which Visit Types and Availability of the provider

    Declaration

    Swift

    public let visitTypes: [ProviderVisitTypeAvailability]?
  • What type of clinic the provider is practicing in.

    Declaration

    Swift

    public let clinicType: String?