A struct used in register app interface. Contains detailed information about the registered application.
Convenience init with no parameters
+ (nonnull instancetype)currentAppInfo;
class func current() -> Self
An SDLAppInfo object
The name displayed for the mobile application on the mobile device (can differ from the app name set in the initial RAI request).
Required
@property (nonatomic, strong) NSString *_Nonnull appDisplayName;
var appDisplayName: String { get set }
The AppBundleID of an iOS application or package name of the Android application. This supports App Launch strategies for each platform.
Required
@property (nonatomic, strong) NSString *_Nonnull appBundleID;
var appBundleID: String { get set }
Represents the build version number of this particular mobile app.
Required
@property (nonatomic, strong) NSString *_Nonnull appVersion;
var appVersion: String { get set }