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 easeness

    Declaration

    Swift

    public let shortName: VisitTypeShortName
  • Undocumented

    Declaration

    Swift

    public init(
        visitTypeId: String, 
        name: String, 
        shortName: VisitTypeShortName
    )