CustomizationOptions
public struct CustomizationOptions : Equatable
A structure holding information on customizing the DexcareSDK
-
Values for customization of the TytoCare integration This value can be set after the first initialization of the SDK, but must be set before you start a virtual visit.
Declaration
Swift
public var tytoCareConfig: TytoCareConfig?
-
Options for the Virtual Visit experience. This value can be set after the first initialization of the SDK, but must be set before you start a virtual visit.
Declaration
Swift
public var virtualConfig: VirtualConfig?
-
Whether or not to validate emails If true, all emails passed in the SDK will be validated with a regex found at
EmailValidator.EMAIL_VALIDATION_REGEX
If set to false, no validation will happen, and it is up to you to validate any invalid emails.Note
default is trueDeclaration
Swift
public var validateEmails: Bool
-
Undocumented
Declaration
Swift
public init(tytoCareConfig: TytoCareConfig? = nil, virtualConfig: VirtualConfig? = nil, validateEmails: Bool = true)