Warning
@objc(Checkout3DSWarning)
public enum Warning : Int, Equatable, RawRepresentable, CaseIterable
Represents a warning produced by the 3DS SDK, either due to potential security issues found, or to communicate a rejected configuration request.
-
The appURL provided exceeds 211 characters and so has been ignored.
Declaration
Swift
case appURLTooLong -
The appURL is not in a recognised Universal App Link format and so has been ignored.
Declaration
Swift
case appURLFormatInvalid -
A debugger is attached to the App.
Declaration
Swift
case debuggerAttached -
A emulator is being used to run the App.
Declaration
Swift
case runningOnSimulator -
The device is jailbroken.
Declaration
Swift
case jailbroken -
The integrity of the SDK has been tampered.
Declaration
Swift
case integrityTampered -
An identifier of the warning type.
Declaration
Swift
public var id: String { get } -
A description of the warning. Warnings are provided either to report potential security issues or to communicate a rejected configuration request.
Declaration
Swift
public var message: String { get } -
The severity of the warning. Either
Severity.low,Severity.medium, orSeverity.high.Declaration
Swift
public var severity: Severity { get } -
The severity of the warning.
See moreDeclaration
Swift
@objc public enum Severity : Int
Warning Enumeration Reference