OnRCStatus notifications to all registered mobile applications and the HMI whenever (1) SDL allocates a module to an application or (2) it de-allocates a module from an application, or (3) an application registers with SDL
@abstract Contains a list (zero or more) of module types that are allocated to the application.
Required, Array of SDLModuleData, Array size 0 - 100
See
SDLPermissionItem@property (nonatomic, strong) NSArray<SDLModuleData *> *_Nonnull allocatedModules;
var allocatedModules: [SDLModuleData] { get set }
@abstract Contains a list (zero or more) of module types that are free to access for the application.
Required, Array of SDLModuleData, Array size 0 - 100
See
SDLPermissionItem@property (nonatomic, strong) NSArray<SDLModuleData *> *_Nonnull freeModules;
var freeModules: [SDLModuleData] { get set }
Issued by SDL to notify the application about remote control status change on SDL If “true” - RC is allowed; if “false” - RC is disallowed.
optional, Boolean, default Value = false
@property (nonatomic, strong, nullable) NSNumber<SDLBool> *allowed;
var allowed: (NSNumber & SDLBool)? { get set }