VersionSupport
public enum VersionSupport
Enum representing whether the server supports your app version or not.
-
Current app version is supported by Usher Server
Declaration
Swift
case supported
-
Current app version is supported by Usher Server but an upgrade is recommended by the
upgradeByDate
. You can also use the returned message, that is configured in Usher Server to display to user.Declaration
Swift
case upgradeRecommended(message: String, upgradeByDate: Date?)
-
Current app version is not supported by Usher Server and upgrading is required. You can also use the returned message, that is configured in Usher Server to display to user.
Declaration
Swift
case upgradeRequired(message: String)