PracticePaymentAvailability
public struct PracticePaymentAvailability : Codable
A structure that represents what type of payments are supported in a Practice
-
Payment by insurance
Declaration
Swift
public let insurance: Bool
-
Payment by credit card
Declaration
Swift
public let selfPay: Bool
-
Payment by serviceKey / coupon code
Declaration
Swift
public let serviceKey: Bool
-
Undocumented
Declaration
Swift
public init( insurance: Bool, selfPay: Bool, serviceKey: Bool )