ActivationErrorReason
public enum ActivationErrorReason
The possible underlying reasons an .activationError error occurs.
- notActivatedError: The
Dittoinstance has not yet been activated, which is achieved via a successful call tosetAccessLicense. - licenseTokenExpired: The provided license token has expired.
- licenseTokenVerificationFailed: Verification of the provided license token failed.
- licenseTokenUnsupportedFutureVersion: The provided license token is in an unsupported future format.
-
The
Dittoinstance has not yet been activated, which is achieved via a successful call tosetAccessLicense.Declaration
Swift
case notActivatedError(message: String) -
The provided license token has expired.
Declaration
Swift
case licenseTokenExpired(message: String) -
Verification of the provided license token failed.
Declaration
Swift
case licenseTokenVerificationFailed(message: String) -
The provided license token is in an unsupported future format.
Declaration
Swift
case licenseTokenUnsupportedFutureVersion(message: String)
ActivationErrorReason Enumeration Reference