AllowedVisitType

public struct AllowedVisitType : Equatable, Codable

A structure containing information about the visit type that is allowed on a clinic

  • A string representing the internal id of the VisitType. Used in some SDK calls.

    Declaration

    Swift

    public let visitTypeId: String
  • A string describing the Allowed Visit Type

    Declaration

    Swift

    public let name: String
  • A VisitType describing the Allowed Visit Type in short form. Used in some SDK calls. VisitType is simply a string representation for easiness

    Declaration

    Swift

    public let shortName: VisitTypeShortName
  • Minimum age for visit measured in ageUnit

    Declaration

    Swift

    public let minAge: Int
  • Maximum age for visit measured in ageUnit

    Declaration

    Swift

    public let maxAge: Int
  • Unit for measurement of age (years, months or days)

    Declaration

    Swift

    public let ageUnit: AgeUnit