Settings
TFSettings
Runtime settings fetched from the server.
- iOS (Swift)
- Android (Java)
public struct TFSettings {
public let pinMinLength: Int
public let pinMaxLength: Int
public let showAccountRecovery: Bool
public let showTermsAndConditions: Bool
public let showDeviceSecurity: Bool
public init(
pinMinLength: Int,
pinMaxLength: Int,
showAccountRecovery: Bool,
showTermsAndConditions: Bool,
showDeviceSecurity: Bool
)
}
public class TFSettings {
public TFSettings(
int pinMinLength,
int pinMaxLength,
boolean showAccountRecovery,
boolean showTermsAndConditions,
boolean showDeviceSecurity
)
public int getPinMinLength()
public int getPinMaxLength()
public boolean isShowAccountRecovery()
public boolean isShowTermsAndConditions()
public boolean isShowDeviceSecurity()
}