diff --git a/CHANGELOG.md b/CHANGELOG.md
index 848fef0eb..4a9dd2286 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 5.0.0 Release Candidate 3 (changes since RC 2)
+### Bug Fixes
+* Fix a possible crash if the List Files request from the FileManager fails due to disconnection or unregistration.
+
# 5.0.0 Release Candidate 2 (changes since RC 1)
### Bug Fixes
* Fixed podspec
diff --git a/SmartDeviceLink-iOS.podspec b/SmartDeviceLink-iOS.podspec
index fc5374ec4..21ec70ac2 100644
--- a/SmartDeviceLink-iOS.podspec
+++ b/SmartDeviceLink-iOS.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "SmartDeviceLink-iOS"
-s.version = "5.0.0-rc.2"
+s.version = "5.0.0-rc.3"
s.summary = "Connect your app with cars!"
s.homepage = "https://github.com/smartdevicelink/SmartDeviceLink-iOS"
s.license = { :type => "New BSD", :file => "LICENSE" }
diff --git a/SmartDeviceLink.podspec b/SmartDeviceLink.podspec
index 823114aad..34d7eb0e7 100644
--- a/SmartDeviceLink.podspec
+++ b/SmartDeviceLink.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "SmartDeviceLink"
-s.version = "5.0.0-rc.2"
+s.version = "5.0.0-rc.3"
s.summary = "Connect your app with cars!"
s.homepage = "https://github.com/smartdevicelink/SmartDeviceLink-iOS"
s.license = { :type => "New BSD", :file => "LICENSE" }
diff --git a/SmartDeviceLink/Info.plist b/SmartDeviceLink/Info.plist
index 6301a85d0..cb0690f2e 100644
--- a/SmartDeviceLink/Info.plist
+++ b/SmartDeviceLink/Info.plist
@@ -15,7 +15,7 @@
@interface NSString (SDLEnum)
+
+- (BOOL)isEqualToEnum:(SDLEnum)enumObj;
+
+@end
+
+
diff --git a/docs/Categories/NSString(SDLEnum).html b/docs/Categories/NSString(SDLEnum).html
index c0cc68463..c1cdef17a 100644
--- a/docs/Categories/NSString(SDLEnum).html
+++ b/docs/Categories/NSString(SDLEnum).html
@@ -20,6 +20,13 @@ - (BOOL)isEqualToEnum:(SDLEnum)enumObj;
+
+
+ func isEqual(toEnum enumObj: SDLEnum) -> Bool
+
diff --git a/docs/Classes.html b/docs/Classes.html
index 3de966192..a6f3895d0 100644
--- a/docs/Classes.html
+++ b/docs/Classes.html
@@ -238,6 +238,35 @@ @interface SDLAbstractProtocol : NSObject <SDLTransportDelegate>
+
+@property (strong, nonatomic) NSString *debugConsoleGroupName;
+@property (nullable, weak, nonatomic) SDLAbstractTransport *transport;
+@property (nullable, strong, nonatomic) NSHashTable<id<SDLProtocolListener>> *protocolDelegateTable;
+@property (nullable, nonatomic, strong) id<SDLSecurityType> securityManager;
+@property (nonatomic, copy) NSString *appId;
+
+// Sending
+- (void)startServiceWithType:(SDLServiceType)serviceType payload:(nullable NSData *)payload;
+- (void)startSecureServiceWithType:(SDLServiceType)serviceType payload:(nullable NSData *)payload completionHandler:(void (^)(BOOL success, NSError *error))completionHandler;
+- (void)endServiceWithType:(SDLServiceType)serviceType;
+
+- (void)sendRPC:(SDLRPCMessage *)message;
+- (BOOL)sendRPC:(SDLRPCMessage *)message encrypted:(BOOL)encryption error:(NSError **)error;
+
+- (void)sendRawData:(NSData *)data withServiceType:(SDLServiceType)serviceType;
+- (void)sendEncryptedRawData:(NSData *)data onService:(SDLServiceType)serviceType;
+
+// Recieving
+- (void)handleBytesFromTransport:(NSData *)receivedData;
+
+@end
+
+
+ class SDLAbstractProtocol : NSObject, SDLTransportDelegate
+
@@ -250,6 +279,23 @@ @interface SDLAbstractTransport : NSObject
+
+@property (nullable, weak, nonatomic) id<SDLTransportDelegate> delegate;
+@property (strong, nonatomic) NSString *debugConsoleGroupName;
+
+- (void)connect;
+- (void)disconnect;
+- (void)sendData:(NSData *)dataToSend;
+- (double)retryDelay;
+
+@end
+
+
+ class SDLAbstractTransport : NSObject
+
@@ -373,6 +419,24 @@ @interface SDLAirbagStatus : SDLRPCStruct
+
+@property (strong, nonatomic) SDLVehicleDataEventStatus driverAirbagDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus driverSideAirbagDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus driverCurtainAirbagDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus passengerAirbagDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus passengerCurtainAirbagDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus driverKneeAirbagDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus passengerSideAirbagDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus passengerKneeAirbagDeployed;
+
+@end
+
+
+ class SDLAirbagStatus : SDLRPCStruct
+
@@ -490,6 +554,21 @@ @interface SDLAppInfo : SDLRPCStruct
+
++ (instancetype)currentAppInfo;
+
+@property (strong, nonatomic) NSString *appDisplayName;
+@property (strong, nonatomic) NSString *appBundleID;
+@property (strong, nonatomic) NSString *appVersion;
+
+@end
+
+
+ class SDLAppInfo : SDLRPCStruct
+
@@ -502,6 +581,61 @@ @interface SDLArtwork : SDLFile
+
+/**
+ * Convenience Helper to create an ephemeral artwork from an image.
+ *
+ * This is an ephemeral file, it will not be persisted through sessions / ignition cycles. Any files that you do not *know* you will use in future sessions should be created through this method. For example, album / artist artwork should be ephemeral.
+ *
+ * Persistent files should be created using `persistentArtworkWithImage:name:asImageFormat:`
+ *
+ * @warning It is strongly recommended to pass the file url using an SDLFile initializer instead of the image. If you pass the UIImage, it is loaded into memory, and will be dumped to a temporary file. This will create a duplicate file. *Only pass a UIImage if the image is not stored on disk*.
+ *
+ * @param image The UIImage to be sent to the remote head unit
+ * @param name The name of the file that will be used to reference the file in the future (for example on the remote file system). The max file name length may vary based on remote file system limitations.
+ * @param imageFormat Whether the image should be converted to a PNG or JPG before transmission. Images with transparency or few colors should be PNGs. Images with many colors should be JPGs.
+ *
+ * @return An instance of this class to be passed to the file manager.
+ */
++ (instancetype)artworkWithImage:(UIImage *)image name:(NSString *)name asImageFormat:(SDLArtworkImageFormat)imageFormat NS_SWIFT_UNAVAILABLE("Use the standard initializer and set persistant to false");
+
+/**
+ * Convenience Helper to create a persistent artwork from an image.
+ *
+ * This is a persistent file, it will be persisted through sessions / ignition cycles. You will only have a limited space for all files, so be sure to only persist files that are required for all or most sessions. For example, menu artwork should be persistent.
+ *
+ * Ephemeral files should be created using `ephemeralArtworkWithImage:name:asImageFormat:`
+ *
+ * @warning It is strongly recommended to pass the file url using an SDLFile initializer instead of the image. If you pass the UIImage, it is loaded into memory, and will be dumped to a temporary file. This will create a duplicate file. *Only pass a UIImage if the image is not stored on disk*.
+ *
+ * @param image The UIImage to be sent to the remote head unit
+ * @param name The name of the file that will be used to reference the file in the future (for example on the remote file system). The max file name length may vary based on remote file system limitations.
+ * @param imageFormat Whether the image should be converted to a PNG or JPG before transmission. Images with transparency or few colors should be PNGs. Images with many colors should be JPGs.
+ *
+ * @return An instance of this class to be passed to the file manager.
+ */
++ (instancetype)persistentArtworkWithImage:(UIImage *)image name:(NSString *)name asImageFormat:(SDLArtworkImageFormat)imageFormat NS_SWIFT_UNAVAILABLE("Use the standard initializer and set persistant to true");
+
+/**
+ * Create a file for transmission to the remote system from a UIImage.
+ *
+ * @param image The UIImage to be sent to the remote head unit
+ * @param name The name of the file that will be used to reference the file in the future (for example on the remote file system). The max file name length may vary based on remote file system limitations.
+ * @param persistent Whether or not the artwork should be persistent.
+ * @param imageFormat Whether the image should be converted to a PNG or JPG before transmission. Images with transparency or few colors should be PNGs. Images with many colors should be JPGs.
+ *
+ * @return An instance of this class to be passed to the file manager.
+ */
+- (instancetype)initWithImage:(UIImage *)image name:(NSString *)name persistent:(BOOL)persistent asImageFormat:(SDLArtworkImageFormat)imageFormat;
+
+@end
+
+
+ class SDLArtwork : SDLFile
+
@@ -566,6 +700,31 @@ @interface SDLBeltStatus : SDLRPCStruct
+
+@property (strong, nonatomic) SDLVehicleDataEventStatus driverBeltDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus passengerBeltDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus passengerBuckleBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus driverBuckleBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus leftRow2BuckleBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus passengerChildDetected;
+@property (strong, nonatomic) SDLVehicleDataEventStatus rightRow2BuckleBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus middleRow2BuckleBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus middleRow3BuckleBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus leftRow3BuckleBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus rightRow3BuckleBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus leftRearInflatableBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus rightRearInflatableBelted;
+@property (strong, nonatomic) SDLVehicleDataEventStatus middleRow1BeltDeployed;
+@property (strong, nonatomic) SDLVehicleDataEventStatus middleRow1BuckleBelted;
+
+@end
+
+
+ class SDLBeltStatus : SDLRPCStruct
+
@@ -636,6 +795,15 @@ @interface SDLButtonPressResponse : SDLRPCResponse
+
+@end
+
+
+ class SDLButtonPressResponse : SDLRPCResponse
+
@@ -770,6 +938,89 @@ @interface SDLClimateControlData : SDLRPCStruct
+
+- (instancetype)initWithFanSpeed:(nullable NSNumber<SDLInt> *)fanSpeed desiredTemperature:(nullable SDLTemperature *)desiredTemperature acEnable:(nullable NSNumber<SDLBool> *)acEnable circulateAirEnable:(nullable NSNumber<SDLBool> *)circulateAirEnable autoModeEnable:(nullable NSNumber<SDLBool> *)autoModeEnable defrostZone:(nullable SDLDefrostZone)defrostZone dualModeEnable:(nullable NSNumber<SDLBool> *)dualModeEnable acMaxEnable:(nullable NSNumber<SDLBool> *)acMaxEnable ventilationMode:(nullable SDLVentilationMode)ventilationMode;
+
+/**
+ * @abstract Speed of Fan in integer
+ *
+ * Optional, MinValue- 0 MaxValue= 100
+ */
+@property (nullable, strong, nonatomic) NSNumber<SDLInt> *fanSpeed;
+
+/**
+ * @abstract The Current Temperature in SDLTemperature
+ *
+ * @warning This property is readonly and cannot be set on the module.
+ *
+ * Optional
+ */
+@property (nullable, strong, nonatomic) SDLTemperature *currentTemperature;
+
+/**
+ * @abstract Desired Temperature in SDLTemperature
+ *
+ * Optional
+ */
+@property (nullable, strong, nonatomic) SDLTemperature *desiredTemperature;
+
+/**
+ * @abstract Represents if AC is enabled.
+ *
+ * Optional, Boolean
+ */
+@property (nullable, strong, nonatomic) NSNumber<SDLBool> *acEnable;
+
+/**
+ * @abstract Represents if circulation of air is enabled.
+ *
+ * Optional, Boolean
+ */
+@property (nullable, strong, nonatomic) NSNumber<SDLBool> *circulateAirEnable;
+
+/**
+ * @abstract Represents if auto mode is enabled.
+ *
+ * Optional, Boolean
+ */
+@property (nullable, strong, nonatomic) NSNumber<SDLBool> *autoModeEnable;
+
+/**
+ * @abstract Represents the kind of defrost zone
+ *
+ * Optional, SDLDefrostZone
+ */
+@property (nullable, strong, nonatomic) SDLDefrostZone defrostZone;
+
+/**
+ * @abstract Represents if dual mode is enabled.
+ *
+ * Optional, Boolean
+ */
+@property (nullable, strong, nonatomic) NSNumber<SDLBool> *dualModeEnable;
+
+/**
+ * @abstract Represents if ac max is enabled.
+ *
+ * Optional, Boolean
+ */
+@property (nullable, strong, nonatomic) NSNumber<SDLBool> *acMaxEnable;
+
+/**
+ * @abstract Represents the kind of Ventilation zone
+ *
+ * Optional, SDLVentilationMode
+ */
+@property (nullable, strong, nonatomic) SDLVentilationMode ventilationMode;
+
+@end
+
+
+ class SDLClimateControlData : SDLRPCStruct
+
@@ -782,6 +1033,20 @@ @interface SDLClusterModeStatus : SDLRPCStruct
+
+@property (strong, nonatomic) NSNumber<SDLBool> *powerModeActive;
+@property (strong, nonatomic) SDLPowerModeQualificationStatus powerModeQualificationStatus;
+@property (strong, nonatomic) SDLCarModeStatus carModeStatus;
+@property (strong, nonatomic) SDLPowerModeStatus powerModeStatus;
+
+@end
+
+
+ class SDLClusterModeStatus : SDLRPCStruct
+
@@ -794,6 +1059,77 @@ @interface SDLConfiguration : NSObject <NSCopying>
+
+/**
+ * The lifecycle configuration.
+ */
+@property (copy, nonatomic, readonly) SDLLifecycleConfiguration *lifecycleConfig;
+
+/**
+ * The lock screen configuration.
+ */
+@property (copy, nonatomic, readonly) SDLLockScreenConfiguration *lockScreenConfig;
+
+/**
+ The log configuration.
+ */
+@property (copy, nonatomic, readonly) SDLLogConfiguration *loggingConfig;
+
+/**
+ The configuration
+ */
+@property (copy, nonatomic, readonly) SDLStreamingMediaConfiguration *streamingMediaConfig;
+
+/**
+ Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, and logging configuration.
+
+ @param lifecycleConfig The lifecycle configuration to be used.
+ @param lockScreenConfig The lockscreen configuration to be used, or `enabledConfiguration` if nil.
+ @param logConfig The logging configuration to be used, or `defaultConfiguration` if nil.
+ @return The configuration
+ */
+- (instancetype)initWithLifecycle:(SDLLifecycleConfiguration *)lifecycleConfig lockScreen:(nullable SDLLockScreenConfiguration *)lockScreenConfig logging:(nullable SDLLogConfiguration *)logConfig;
+
+/**
+ Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, and logging configuration.
+
+ @param lifecycleConfig The lifecycle configuration to be used.
+ @param lockScreenConfig The lockscreen configuration to be used, or `enabledConfiguration` if nil.
+ @param logConfig The logging configuration to be used, or `defaultConfiguration` if nil.
+ @return The configuration
+ */
++ (instancetype)configurationWithLifecycle:(SDLLifecycleConfiguration *)lifecycleConfig lockScreen:(nullable SDLLockScreenConfiguration *)lockScreenConfig logging:(nullable SDLLogConfiguration *)logConfig NS_SWIFT_UNAVAILABLE("Use an initializer instead");
+
+/**
+ Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, logging, and streaming media configuration.
+
+ @param lifecycleConfig The lifecycle configuration to be used.
+ @param lockScreenConfig The lockscreen configuration to be used, or `enabledConfiguration` if nil.
+ @param logConfig The logging configuration to be used, or `defaultConfiguration` if nil.
+ @param streamingMediaConfig The streaming media configuration to be used, or nil because it is not needed.
+ @return The configuration
+ */
+- (instancetype)initWithLifecycle:(SDLLifecycleConfiguration *)lifecycleConfig lockScreen:(nullable SDLLockScreenConfiguration *)lockScreenConfig logging:(nullable SDLLogConfiguration *)logConfig streamingMedia:(nullable SDLStreamingMediaConfiguration *)streamingMediaConfig;
+
+/**
+ Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, logging, and streaming media configuration.
+
+ @param lifecycleConfig The lifecycle configuration to be used.
+ @param lockScreenConfig The lockscreen configuration to be used, or `enabledConfiguration` if nil.
+ @param logConfig The logging configuration to be used, or `defaultConfiguration` if nil.
+ @param streamingMediaConfig The streaming media configuration to be used, or nil because it is not needed.
+ @return The configuration
+ */
++ (instancetype)configurationWithLifecycle:(SDLLifecycleConfiguration *)lifecycleConfig lockScreen:(nullable SDLLockScreenConfiguration *)lockScreenConfig logging:(nullable SDLLogConfiguration *)logConfig streamingMedia:(nullable SDLStreamingMediaConfiguration *)streamingMediaConfig NS_SWIFT_UNAVAILABLE("Use an initializer instead");
+
+@end
+
+
+ class SDLConfiguration : NSObject, NSCopying
+
@@ -859,6 +1195,19 @@ @interface SDLDIDResult : SDLRPCStruct
+
+@property (strong, nonatomic) SDLVehicleDataResultCode resultCode;
+@property (strong, nonatomic) NSNumber<SDLInt> *didLocation;
+@property (nullable, strong, nonatomic) NSString *data;
+
+@end
+
+
+ class SDLDIDResult : SDLRPCStruct
+
@@ -871,6 +1220,86 @@ @interface SDLDateTime : SDLRPCStruct
+
+- (instancetype)initWithHour:(UInt8)hour minute:(UInt8)minute;
+
+- (instancetype)initWithHour:(UInt8)hour minute:(UInt8)minute second:(UInt8)second millisecond:(UInt16)millisecond;
+
+- (instancetype)initWithHour:(UInt8)hour minute:(UInt8)minute second:(UInt8)second millisecond:(UInt16)millisecond day:(UInt8)day month:(UInt8)month year:(UInt16)year;
+
+- (instancetype)initWithHour:(UInt8)hour minute:(UInt8)minute second:(UInt8)second millisecond:(UInt16)millisecond day:(UInt8)day month:(UInt8)month year:(UInt16)year timezoneMinuteOffset:(UInt8)timezoneMinuteOffset timezoneHourOffset:(int)timezoneHourOffset;
+
+/**
+ * @abstract Milliseconds part of time
+ *
+ * Optional, Integer 0 - 999
+ */
+@property (copy, nonatomic) NSNumber<SDLInt> *millisecond;
+
+/**
+ * @abstract Seconds part of time
+ *
+ * Optional, Integer 0 - 59
+ */
+@property (copy, nonatomic) NSNumber<SDLInt> *second;
+
+/**
+ * @abstract Minutes part of time
+ *
+ * Optional, Integer 0 - 59
+ */
+@property (copy, nonatomic) NSNumber<SDLInt> *minute;
+
+/**
+ * @abstract Hour part of time
+ *
+ * Optional, Integer 0 - 23
+ */
+@property (copy, nonatomic) NSNumber<SDLInt> *hour;
+
+/**
+ * @abstract Day of the month
+ *
+ * Optional, Integer 1 - 31
+ */
+@property (copy, nonatomic) NSNumber<SDLInt> *day;
+
+/**
+ * @abstract Month of the year
+ *
+ * Optional, Integer 1 - 12
+ */
+@property (copy, nonatomic) NSNumber<SDLInt> *month;
+
+/**
+ * @abstract The year in YYYY format
+ *
+ * Optional, Max Value 4095
+ */
+@property (copy, nonatomic) NSNumber<SDLInt> *year;
+
+/**
+ * @abstract Time zone offset in Min with regard to UTC
+ *
+ * Optional, Integer 0 - 59
+ */
+@property (copy, nonatomic) NSNumber<SDLInt> *timezoneMinuteOffset;
+
+/**
+ * @abstract Time zone offset in Hours with regard to UTC
+ *
+ * Optional, Integer -12 - 14
+ */
+@property (copy, nonatomic) NSNumber<SDLInt> *timezoneHourOffset;
+
+@end
+
+
+ class SDLDateTime : SDLRPCStruct
+
@@ -1074,6 +1503,24 @@ @interface SDLDeviceInfo : SDLRPCStruct
+
++ (instancetype)currentDevice;
+
+@property (nullable, strong, nonatomic) NSString *hardware;
+@property (nullable, strong, nonatomic) NSString *firmwareRev;
+@property (nullable, strong, nonatomic) NSString *os;
+@property (nullable, strong, nonatomic) NSString *osVersion;
+@property (nullable, strong, nonatomic) NSString *carrier;
+@property (nullable, strong, nonatomic) NSNumber<SDLInt> *maxNumberRFCOMMPorts;
+
+@end
+
+
+ class SDLDeviceInfo : SDLRPCStruct
+
@@ -1299,6 +1746,19 @@ @interface SDLECallInfo : SDLRPCStruct
+
+@property (strong, nonatomic) SDLVehicleDataNotificationStatus eCallNotificationStatus;
+@property (strong, nonatomic) SDLVehicleDataNotificationStatus auxECallNotificationStatus;
+@property (strong, nonatomic) SDLECallConfirmationStatus eCallConfirmationStatus;
+
+@end
+
+
+ class SDLECallInfo : SDLRPCStruct
+
@@ -1311,6 +1771,21 @@ @interface SDLEmergencyEvent : SDLRPCStruct
+
+@property (strong, nonatomic) SDLEmergencyEventType emergencyEventType;
+@property (strong, nonatomic) SDLFuelCutoffStatus fuelCutoffStatus;
+@property (strong, nonatomic) SDLVehicleDataEventStatus rolloverEvent;
+@property (strong, nonatomic) NSNumber<SDLInt> *maximumChangeVelocity;
+@property (strong, nonatomic) SDLVehicleDataEventStatus multipleEvents;
+
+@end
+
+
+ class SDLEmergencyEvent : SDLRPCStruct
+
@@ -1323,6 +1798,17 @@ @interface SDLEncodedSyncPData : SDLRPCRequest
+
+@property (strong, nonatomic) NSArray<NSString *> *data;
+
+@end
+
+
+ class SDLEncodedSyncPData : SDLRPCRequest
+
@@ -1334,6 +1820,15 @@ @interface SDLEncodedSyncPDataResponse : SDLRPCResponse
+
+@end
+
+
+ class SDLEncodedSyncPDataResponse : SDLRPCResponse
+
@@ -1393,6 +1888,138 @@ @interface SDLFile : NSObject <NSCopying>
+
+/**
+ * Whether or not the file should persist on disk between car ignition cycles.
+ */
+@property (assign, nonatomic, readonly, getter=isPersistent) BOOL persistent;
+
+/**
+ * Whether or not the file should overwrite an existing file on the remote disk with the same name.
+ */
+@property (assign, nonatomic) BOOL overwrite;
+
+/**
+ * The name the file should be stored under on the remote disk. This is how the file will be referenced in all later calls.
+ */
+@property (copy, nonatomic, readonly) NSString *name;
+
+/**
+ * The url the local file is stored at while waiting to push it to the remote system. If the data has not been passed to the file URL, this will be nil.
+ */
+@property (copy, nonatomic, readonly, nullable) NSURL *fileURL;
+
+/**
+ * The binary data of the SDLFile. If initialized with data, this will be a relatively quick call, but if initialized with a file URL, this is a rather expensive call the first time. The data will be cached in RAM after the first call.
+ */
+@property (copy, nonatomic, readonly) NSData *data;
+
+/**
+ * The size of the binary data of the SDLFile.
+ */
+@property (nonatomic, readonly) unsigned long long fileSize;
+
+/**
+ * The system will attempt to determine the type of file that you have passed in. It will default to BINARY if it does not recognize the file type or the file type is not supported by SDL.
+ */
+@property (strong, nonatomic, readonly) SDLFileType fileType;
+
+/**
+ * A stream to pull binary data from a SDLFile. The stream only pulls required data from the file on disk or in memory. This reduces memory usage while uploading a large file to the remote system as each chunk of data can be released immediately after it is uploaded.
+ */
+@property (nonatomic, readonly) NSInputStream *inputStream;
+
+- (instancetype)init NS_UNAVAILABLE;
+
+/**
+ * The designated initializer for an SDL File. The only major property that is not set using this is "overwrite", which defaults to NO.
+ *
+ * @param url The file URL pointing to the local data that will be pushed to the remote system.
+ * @param name The name that the file will be stored under on the remote system and how it will be referenced from the local system. The max file name length may vary based on remote filesystem limitations.
+ * @param persistent Whether or not the file will persist between ignition cycles.
+ *
+ * @return An SDLFile object.
+ */
+- (instancetype)initWithFileURL:(NSURL *)url name:(NSString *)name persistent:(BOOL)persistent NS_DESIGNATED_INITIALIZER;
+
+/**
+ * Create an SDL file using a local file URL.
+ *
+ * This is a persistent file, it will be persisted through sessions / ignition cycles. You will only have a limited space for all files, so be sure to only persist files that are required for all or most sessions. For example, menu artwork should be persistent.
+ *
+ * Ephemeral files should be created using ephemeralFileAtURL:name:
+ *
+ * @warning If this is not a readable file, this will return nil
+ *
+ * @param url The url to the file that should be uploaded.
+ * @param name The name of the file that will be used to reference the file in the future (for example on the remote file system). The max file name length may vary based on remote filesystem limitations.
+ *
+ * @return An instance of this class, or nil if a readable file at the path could not be found.
+ */
++ (instancetype)persistentFileAtFileURL:(NSURL *)url name:(NSString *)name NS_SWIFT_UNAVAILABLE("Use the standard initializer and set persistant to true");
+
+/**
+ * Create an SDL file using a local file URL.
+ *
+ * This is an ephemeral file, it will not be persisted through sessions / ignition cycles. Any files that you do not *know* you will use in future sessions should be created through this method. For example, album / artist artwork should be ephemeral.
+ *
+ * Persistent files should be created using persistentFileAtURL:name:
+ *
+ * @warning If this is not a readable file, this will return nil
+ *
+ * @param url The url to the file on disk that will be uploaded
+ * @param name The name of the file that will be used to reference the file in the future (for example on the remote file system). The max file name length may vary based on remote file system limitations.
+ *
+ * @return An instance of this class, or nil if a readable file at the url could not be found.
+ */
++ (instancetype)fileAtFileURL:(NSURL *)url name:(NSString *)name;
+
+/**
+ * Create an SDL file using raw data. It is strongly preferred to pass a file URL instead of data, as it is currently held in memory until the file is sent.
+ *
+ * @param data The raw data to be used for the file
+ * @param name The name of the file that will be used to reference the file in the future (for example on the remote file system). The max file name length may vary based on remote file system limitations.
+ * @param extension The file extension. For example "png". Currently supported file extensions are: "bmp", "jpg", "jpeg", "png", "wav", "mp3", "aac", "json". All others will be sent as binary files.
+ * @param persistent Whether or not the remote file with this data should be persistent
+ *
+ * @return An instance of this class
+ */
+- (instancetype)initWithData:(NSData *)data name:(NSString *)name fileExtension:(NSString *)extension persistent:(BOOL)persistent NS_DESIGNATED_INITIALIZER;
+
+/**
+ * Create an SDL file using raw data. It is strongly preferred to pass a file URL instead of data, as it is currently held in memory until the file is sent.
+ *
+ * This is a persistent file, it will be persisted through sessions / ignition cycles. You will only have a limited space for all files, so be sure to only persist files that are required for all or most sessions. For example, menu artwork should be persistent.
+ *
+ * @param data The raw data to be used for the file
+ * @param name The name of the file that will be used to reference the file in the future (for example on the remote file system). The max file name length may vary based on remote file system limitations.
+ * @param extension The file extension. For example "png". Currently supported file extensions are: "bmp", "jpg", "jpeg", "png", "wav", "mp3", "aac", "json". All others will be sent as binary files.
+ *
+ * @return An instance of this class
+ */
++ (instancetype)persistentFileWithData:(NSData *)data name:(NSString *)name fileExtension:(NSString *)extension NS_SWIFT_UNAVAILABLE("Use the standard initializer and set persistant to true");
+
+/**
+ * Create an SDL file using raw data. It is strongly preferred to pass a file URL instead of data, as it is currently held in memory until the file is sent.
+ *
+ * This is an ephemeral file, it will not be persisted through sessions / ignition cycles. Any files that you do not *know* you will use in future sessions should be created through this method. For example, album / artist artwork should be ephemeral.
+ *
+ * @param data The raw data to be used for the file
+ * @param name The name of the file that will be used to reference the file in the future (for example on the remote file system). The max file name length may vary based on remote file system limitations.
+ * @param extension The file extension. For example "png". Currently supported file extensions are: "bmp", "jpg", "jpeg", "png", "wav", "mp3", "aac", "json". All others will be sent as binary files.
+ *
+ * @return An instance of this class
+ */
++ (instancetype)fileWithData:(NSData *)data name:(NSString *)name fileExtension:(NSString *)extension;
+
+@end
+
+
+ class SDLFile : NSObject, NSCopying
+
@@ -1534,6 +2161,26 @@ @interface SDLGetInteriorVehicleDataResponse : SDLRPCResponse
+
+@property (strong, nonatomic) SDLModuleData *moduleData;
+
+/**
+ * @abstract It is a conditional-mandatory parameter: must be returned in case "subscribe" parameter was present in the related request.
+ * if "true" - the "moduleType" from request is successfully subscribed and the head unit will send onInteriorVehicleData notifications for the moduleType.
+ * if "false" - the "moduleType" from request is either unsubscribed or failed to subscribe.
+ *
+ * Optional, Boolean
+ */
+@property (nullable, strong, nonatomic) NSNumber<SDLBool> *isSubscribed;
+
+@end
+
+
+ class SDLGetInteriorVehicleDataResponse : SDLRPCResponse
+
@@ -1546,6 +2193,24 @@ @interface SDLGetSystemCapability : SDLRPCRequest
+
+- (instancetype)initWithType:(SDLSystemCapabilityType)type;
+
+/**
+ They type of capability you'd like to receive in the response.
+
+ Mandatory
+ */
+@property (strong, nonatomic) SDLSystemCapabilityType systemCapabilityType;
+
+@end
+
+
+ class SDLGetSystemCapability : SDLRPCRequest
+
@@ -1558,6 +2223,17 @@ @interface SDLGetSystemCapabilityResponse : SDLRPCResponse
+
+@property (strong, nonatomic) SDLSystemCapability *systemCapability;
+
+@end
+
+
+ class SDLGetSystemCapabilityResponse : SDLRPCResponse
+
@@ -1618,6 +2294,25 @@ @interface SDLGetWayPoints : SDLRPCRequest
+
+- (instancetype)initWithType:(SDLWayPointType)type;
+
+/**
+ * To request for either the destination
+ * only or for all waypoints including destination
+ *
+ * Required
+ */
+@property (nullable, strong, nonatomic) SDLWayPointType waypointType;
+
+@end
+
+
+ class SDLGetWayPoints : SDLRPCRequest
+
@@ -1630,6 +2325,24 @@ @interface SDLGetWayPointsResponse : SDLRPCResponse
+
+/**
+ * @abstract Array of waypoints
+ *
+ * @see SDLLocationDetails
+ *
+ * Optional, Array size 1 - 10
+ */
+@property (nullable, strong, nonatomic) NSArray<SDLLocationDetails *> *waypoints;
+
+@end
+
+
+ class SDLGetWayPointsResponse : SDLRPCResponse
+
@@ -1642,6 +2355,36 @@ @interface SDLHMICapabilities : SDLRPCStruct
+
+/**
+ Availability of built in Nav. True: Available, False: Not Available
+
+ Boolean value. Optional.
+ */
+@property (nullable, copy, nonatomic) NSNumber<SDLBool> *navigation;
+
+/**
+ Availability of built in phone. True: Available, False: Not Available
+
+ Boolean value. Optional.
+ */
+@property (nullable, copy, nonatomic) NSNumber<SDLBool> *phoneCall;
+
+/**
+ Availability of built in video streaming. True: Available, False: Not Available
+
+ Boolean value. Optional.
+ */
+@property (nullable, copy, nonatomic) NSNumber<SDLBool> *videoStreaming;
+
+@end
+
+
+ class SDLHMICapabilities : SDLRPCStruct
+
@@ -1713,6 +2456,18 @@ @interface SDLIAPTransport : SDLAbstractTransport <SDLIAPSessionDelegate>
+
+@property (nullable, strong, nonatomic) SDLIAPSession *controlSession;
+@property (nullable, strong, nonatomic) SDLIAPSession *session;
+
+@end
+
+
+ class SDLIAPTransport : SDLAbstractTransport, SDLIAPSessionDelegate
+
@@ -1746,6 +2501,19 @@ @interface SDLImageField : SDLRPCStruct
+
+@property (strong, nonatomic) SDLImageFieldName name;
+@property (strong, nonatomic) NSArray<SDLFileType> *imageTypeSupported;
+@property (nullable, strong, nonatomic) SDLImageResolution *imageResolution;
+
+@end
+
+
+ class SDLImageField : SDLRPCStruct
+
@@ -1758,6 +2526,20 @@ @interface SDLImageResolution : SDLRPCStruct
+
+@property (strong, nonatomic) NSNumber<SDLInt> *resolutionWidth;
+@property (strong, nonatomic) NSNumber<SDLInt> *resolutionHeight;
+
+- (instancetype)initWithWidth:(uint16_t)width height:(uint16_t)height;
+
+@end
+
+
+ class SDLImageResolution : SDLRPCStruct
+
@@ -1770,6 +2552,23 @@ @interface SDLKeyboardProperties : SDLRPCStruct
+
+- (instancetype)initWithLanguage:(nullable SDLLanguage)language layout:(nullable SDLKeyboardLayout)layout keypressMode:(nullable SDLKeypressMode)keypressMode limitedCharacterList:(nullable NSArray<NSString *> *)limitedCharacterList autoCompleteText:(nullable NSString *)autoCompleteText;
+
+@property (nullable, strong, nonatomic) SDLLanguage language;
+@property (nullable, strong, nonatomic) SDLKeyboardLayout keyboardLayout;
+@property (nullable, strong, nonatomic) SDLKeypressMode keypressMode;
+@property (nullable, strong, nonatomic) NSArray<NSString *> *limitedCharacterList;
+@property (nullable, strong, nonatomic) NSString *autoCompleteText;
+
+@end
+
+
+ class SDLKeyboardProperties : SDLRPCStruct
+
@@ -1844,6 +2643,29 @@ @interface SDLLocationCoordinate : SDLRPCStruct
+
+/**
+ * @abstract Latitude of the location
+ *
+ * Required, Double -90 - 90
+ */
+@property (copy, nonatomic) NSNumber<SDLFloat> *latitudeDegrees;
+
+/**
+ * @abstract Longitude of the location
+ *
+ * Required, Double -180 - 180
+ */
+@property (copy, nonatomic) NSNumber<SDLFloat> *longitudeDegrees;
+
+@end
+
+
+ class SDLLocationCoordinate : SDLRPCStruct
+
@@ -1856,6 +2678,71 @@ @interface SDLLocationDetails : SDLRPCStruct
+
+/**
+ * @abstract Latitude/Longitude of the location
+ *
+ * @see SDLLocationCoordinate
+ *
+ * Optional
+ */
+@property (nullable, strong, nonatomic) SDLLocationCoordinate *coordinate;
+
+/**
+ * @abstract Name of location.
+ *
+ * Optional, Max length 500 chars
+ */
+@property (nullable, copy, nonatomic) NSString *locationName;
+
+/**
+ * @abstract Location address for display purposes only.
+ *
+ * Optional, Array of Strings, Array length 0 - 4, Max String length 500
+ */
+@property (nullable, copy, nonatomic) NSArray<NSString *> *addressLines;
+
+/**
+ * @abstract Description intended location / establishment.
+ *
+ * Optional, Max length 500 chars
+ */
+@property (nullable, copy, nonatomic) NSString *locationDescription;
+
+/**
+ * @abstract Phone number of location / establishment.
+ *
+ * Optional, Max length 500 chars
+ */
+@property (nullable, copy, nonatomic) NSString *phoneNumber;
+
+/**
+ * @abstract Image / icon of intended location.
+ *
+ * @see SDLImage
+ *
+ * Optional
+ */
+@property (nullable, strong, nonatomic) SDLImage *locationImage;
+
+/**
+ * @abstract Address to be used by navigation engines for search.
+ *
+ * @see SDLOASISAddress
+ *
+ * Optional
+ */
+@property (nullable, strong, nonatomic) SDLOasisAddress *searchAddress;
+
+
+@end
+
+
+ class SDLLocationDetails : SDLRPCStruct
+
@@ -1868,6 +2755,75 @@ @interface SDLLockScreenConfiguration : NSObject <NSCopying>
+
+/**
+ * Whether or not the lock screen should be shown in the "lock screen optional" state. Defaults to 'NO'.
+ */
+@property (assign, nonatomic) BOOL showInOptionalState;
+
+/**
+ * If YES, the lock screen should be managed by SDL and automatically engage when necessary. If NO, then the lock screen will never be engaged.
+ */
+@property (assign, nonatomic, readonly) BOOL enableAutomaticLockScreen;
+
+/**
+ * The background color of the lock screen. This could be a branding color, or leave at the default for a dark blue-gray.
+ */
+@property (copy, nonatomic, readonly) UIColor *backgroundColor;
+
+/**
+ * Your app icon as it will appear on the lock screen.
+ */
+@property (copy, nonatomic, readonly, nullable) UIImage *appIcon;
+
+/**
+ * A custom view controller that the lock screen will manage the presentation of.
+ */
+@property (strong, nonatomic, readonly, nullable) UIViewController *customViewController;
+
+- (instancetype)init NS_UNAVAILABLE;
+
+/**
+ * Use this configuration if you wish to manage a lock screen yourself. This may be useful if the automatic presentation feature of SDLLockScreenManager is failing for some reason.
+ *
+ * @return The configuration
+ */
++ (instancetype)disabledConfiguration;
+
+/**
+ * Use this configuration for the basic default lock screen. A custom app icon will not be used.
+ *
+ * @return The configuration
+ */
++ (instancetype)enabledConfiguration;
+
+/**
+ * Use this configuration to provide a custom lock screen icon and a custom background color, or nil if you wish to use the default background color. This will use the default lock screen layout.
+ *
+ * @param lockScreenAppIcon The app icon to be shown on the lock screen
+ * @param lockScreenBackgroundColor The color of the lock screen background
+ *
+ * @return The configuration
+ */
++ (instancetype)enabledConfigurationWithAppIcon:(UIImage *)lockScreenAppIcon backgroundColor:(nullable UIColor *)lockScreenBackgroundColor;
+
+/**
+ * Use this configuration if you wish to provide your own view controller for the lock screen. This view controller's presentation and dismissal will still be managed by the lock screen manager. Note that you may subclass SDLLockScreenViewController and pass it here to continue to have the vehicle icon set to your view controller by the manager.
+ *
+ * @param viewController The view controller to be managed
+ *
+ * @return The configuration
+ */
++ (instancetype)enabledConfigurationWithViewController:(UIViewController *)viewController;
+
+@end
+
+
+ class SDLLockScreenConfiguration : NSObject, NSCopying
+
@@ -1880,6 +2836,30 @@ @interface SDLLockScreenViewController : UIViewController
+
+/**
+ * The app's icon. This will be set by the lock screen configuration.
+ */
+@property (copy, nonatomic, nullable) UIImage *appIcon;
+
+/**
+ * The vehicle's designated icon. This will be set by the lock screen manager when it is notified that a lock screen icon has been downloaded.
+ */
+@property (copy, nonatomic, nullable) UIImage *vehicleIcon;
+
+/**
+ * The designated background color set in the lock screen configuration, or the default SDL gray-blue.
+ */
+@property (copy, nonatomic, nullable) UIColor *backgroundColor;
+
+@end
+
+
+ class SDLLockScreenViewController : UIViewController
+
@@ -1892,6 +2872,66 @@ @interface SDLLogConfiguration : NSObject <NSCopying>
+
+/**
+ Any custom logging modules used by the developer's code. Defaults to none.
+ */
+@property (copy, nonatomic) NSSet<SDLLogFileModule *> *modules;
+
+/**
+ Where the logs will attempt to output. Defaults to Console.
+ */
+@property (copy, nonatomic) NSSet<id<SDLLogTarget>> *targets;
+
+/**
+ What log filters will run over this session. Defaults to none.
+ */
+@property (copy, nonatomic) NSSet<SDLLogFilter *> *filters;
+
+/**
+ How detailed of logs will be output. Defaults to Default.
+ */
+@property (assign, nonatomic) SDLLogFormatType formatType;
+
+/**
+ Whether or not logs will be run on a separate queue, asynchronously, allowing the following code to run before the log completes. Or if it will occur synchronously, which will prevent logs from being missed, but will slow down surrounding code. Defaults to YES.
+ */
+@property (assign, nonatomic, getter=isAsynchronous) BOOL asynchronous;
+
+/**
+ Whether or not error logs will be dispatched to loggers asynchronously. Defaults to NO.
+ */
+@property (assign, nonatomic, getter=areErrorsAsynchronous) BOOL errorsAsynchronous;
+
+/**
+ Any modules that do not have an explicitly specified level will by default use the global log level. Defaults to Error.
+ Do not specify Default for this parameter.
+ */
+@property (assign, nonatomic) SDLLogLevel globalLogLevel;
+
+
+/**
+ A default logger for production. This sets the format type to Default, the log level to Error, and only enables the ASL logger.
+
+ @return A default configuration that may be customized.
+ */
++ (instancetype)defaultConfiguration;
+
+/**
+ A debug logger for use in development. This sets the format type to Detailed, the log level to Debug, and enables the Console and ASL loggers.
+
+ @return A debug configuration that may be customized.
+ */
++ (instancetype)debugConfiguration;
+
+@end
+
+
+ class SDLLogConfiguration : NSObject, NSCopying
+
@@ -1904,6 +2944,75 @@ @interface SDLLogFileModule : NSObject
+
+/**
+ The name of the this module, e.g. "Transport"
+ */
+@property (copy, nonatomic, readonly) NSString *name;
+
+/**
+ All of the files contained within this module. When a log is logged, the `__FILE__` (in Obj-C) or `#file` (in Swift) is automatically captured and checked to see if any module has a file in this set that matches. If it does, it will be logged using the module's log level and the module's name will be printed in the formatted log.
+ */
+@property (copy, nonatomic, readonly) NSSet<NSString *> *files;
+
+/**
+ The custom level of the log. This is `SDLLogLevelDefault` (whatever the current global log level is) by default.
+ */
+@property (assign, nonatomic) SDLLogLevel logLevel;
+
+
+/**
+ This method is unavailable and may not be used.
+
+ @return Always returns nil
+ */
+- (instancetype)init NS_UNAVAILABLE;
+
+/**
+ Returns an initialized `SDLLogFileModule` that contains a custom name, set of files, and associated log level.
+
+ @param name The name of this module. This will be used when printing a formatted log for a file within this module e.g. "Transport".
+ @param files The files this module covers. This should correspond to a `__FILE__` or `#file` call for use when comparing a log to this module. Any log originating in a file contained in this set will then use this module's log level and print the module name.
+ @param level The custom logging level logs originating in files contained in this log module will use. For example, if the global level is `SDLLogLevelError` and this module is configured to `SDLLogLevelVerbose`, all logs originating from files within this module will be logged, not merely error logs.
+ @return An initialized `SDLLogFileModule`
+ */
+- (instancetype)initWithName:(NSString *)name files:(NSSet<NSString *> *)files level:(SDLLogLevel)level NS_DESIGNATED_INITIALIZER;
+
+/**
+ Returns an initialized `SDLLogFileModule` that contains a custom name and set of files. The logging level is the same as the current global logging file by using `SDLLogLevelDefault`.
+
+ @param name The name of this module. This will be used when printing a formatted log for a file within this module e.g. "Transport".
+ @param files The files this module covers. This should correspond to a `__FILE__` or `#file` call for use when comparing a log to this module. Any log originating in a file contained in this set will then use this module's log level and print the module name.
+ @return An initialized `SDLLogFileModule`
+ */
+- (instancetype)initWithName:(NSString *)name files:(NSSet<NSString *> *)files;
+
+/**
+ Returns an initialized `SDLLogFileModule` that contains a custom name and set of files. The logging level is the same as the current global logging file by using `SDLLogLevelDefault`.
+
+ @param name The name of this module. This will be used when printing a formatted log for a file within this module e.g. "Transport".
+ @param files The files this module covers. This should correspond to a `__FILE__` or `#file` call for use when comparing a log to this module. Any log originating in a file contained in this set will then use this module's log level and print the module name.
+ @return An initialized `SDLLogFileModule`
+ */
++ (instancetype)moduleWithName:(NSString *)name files:(NSSet<NSString *> *)files;
+
+
+/**
+ Returns whether or not this module contains a given file.
+
+ @param fileName The file name to check
+ @return A BOOL, YES if this module contains the given file.
+ */
+- (BOOL)containsFile:(NSString *)fileName;
+
+@end
+
+
+ class SDLLogFileModule : NSObject
+
@@ -1916,6 +3025,93 @@ @interface SDLLogFilter : NSObject
+
+@property (strong, nonatomic, readonly) SDLLogFilterBlock filter;
+
+- (instancetype)init NS_UNAVAILABLE;
+
+/**
+ Create a new filter with a custom filter block. The filter block will take a log model and return a BOOL of pass / fail.
+
+ @param filter The custom filter to be used
+ @return An instance of SDLLogFilter
+ */
+- (instancetype)initWithCustomFilter:(SDLLogFilterBlock)filter NS_DESIGNATED_INITIALIZER;
+
+/**
+ Returns a filter that only allows logs not containing the passed string within their message.
+
+ @param string The string, which, if present in the message of the log, will prevent the log from being logged.
+ @param caseSensitive Whether or not `string` should be checked as case sensitive against the log's message.
+ @return A filter that may be passed into the `logConfiguration`.
+ */
++ (SDLLogFilter *)filterByDisallowingString:(NSString *)string caseSensitive:(BOOL)caseSensitive;
+
+/**
+ Returns a filter that only allows logs containing the passed string within their message.
+
+ @param string The string, which, if present in the message of the log, will allow the log to be logged.
+ @param caseSensitive Whether or not `string` should be checked as case sensitive against the log's message.
+ @return A filter that may be passed into the `logConfiguration`.
+ */
++ (SDLLogFilter *)filterByAllowingString:(NSString *)string caseSensitive:(BOOL)caseSensitive;
+
+/**
+ Returns a filter that only allows logs not passing the passed regex against their message.
+
+ @param regex The regex, which, if it matches the message of the log, will prevent the log from being logged.
+ @return A filter that may be passed into the `logConfiguration`.
+ */
++ (SDLLogFilter *)filterByDisallowingRegex:(NSRegularExpression *)regex;
+
+/**
+ Returns a filter that only allows logs passing the passed regex against their message.
+
+ @param regex The regex, which, if it matches the message of the log, will allow the log to be logged.
+ @return A filter that may be passed into the `logConfiguration`.
+ */
++ (SDLLogFilter *)filterByAllowingRegex:(NSRegularExpression *)regex;
+
+/**
+ Returns a filter that only allows logs not within the specified file modules to be logged.
+
+ @param modules A set of module names. If any match, they will not be logged.
+ @return A filter that may be passed into the `logConfiguration`.
+ */
++ (SDLLogFilter *)filterByDisallowingModules:(NSSet<NSString *> *)modules;
+
+/**
+ Returns a filter that only allows logs of the specified file modules to be logged.
+
+ @param modules A set of module names. If any match, they will not be logged.
+ @return A filter that may be passed into the `logConfiguration`.
+ */
++ (SDLLogFilter *)filterByAllowingModules:(NSSet<NSString *> *)modules;
+
+/**
+ Returns a filter that only allows logs not within the specified files to be logged.
+
+ @param fileNames If a log matches any of the passed files, the log will not be logged.
+ @return A filter that may be passed into the `logConfiguration`.
+ */
++ (SDLLogFilter *)filterByDisallowingFileNames:(NSSet<NSString *> *)fileNames;
+
+/**
+ Returns a filter that only allows logs within the specified files to be logged.
+
+ @param fileNames If a log matches any of the passed files, the log will be logged.
+ @return A filter that may be passed into the `logConfiguration`.
+ */
++ (SDLLogFilter *)filterByAllowingFileNames:(NSSet<NSString *> *)fileNames;
+
+@end
+
+
+ class SDLLogFilter : NSObject
+
@@ -2003,6 +3199,114 @@ @interface SDLManager : NSObject
+
+/**
+ * The configuration the manager was set up with.
+ */
+@property (copy, nonatomic, readonly) SDLConfiguration *configuration;
+
+/**
+ * The current HMI level of the running app.
+ */
+@property (copy, nonatomic, readonly) SDLHMILevel hmiLevel;
+
+/**
+ * The current audio streaming state of the running app.
+ */
+@property (copy, nonatomic, readonly) SDLAudioStreamingState audioStreamingState;
+
+/**
+ * The current system context of the running app.
+ */
+@property (copy, nonatomic, readonly) SDLSystemContext systemContext;
+
+/**
+ * The file manager to be used by the running app.
+ */
+@property (strong, nonatomic, readonly) SDLFileManager *fileManager;
+
+/**
+ * The permission manager monitoring RPC permissions.
+ */
+@property (strong, nonatomic, readonly) SDLPermissionManager *permissionManager;
+
+/**
+ * The streaming media manager to be used for starting video sessions.
+ */
+@property (strong, nonatomic, readonly, nullable) SDLStreamingMediaManager *streamManager;
+
+/**
+ * The response of a register call after it has been received.
+ */
+@property (strong, nonatomic, readonly, nullable) SDLRegisterAppInterfaceResponse *registerResponse;
+
+/**
+ * The manager's delegate.
+ */
+@property (weak, nonatomic, nullable) id<SDLManagerDelegate> delegate;
+
+/**
+ * Deprecated internal proxy object. This should only be accessed when the Manager is READY. This property may go to nil at any time.
+ * The only reason to use this is to access the `putFileStream:withRequest:` method. All other functionality exists on managers in 4.3. This will be removed in 5.0 and the functionality replicated on `SDLFileManager`.
+ */
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
+@property (strong, nonatomic, readonly, nullable) SDLProxy *proxy;
+#pragma clang diagnostic pop
+
+
+#pragma mark Lifecycle
+
+/**
+ * Initialize the manager with a configuration. Call `startWithHandler` to begin waiting for a connection.
+ *
+ * @param configuration Your app's unique configuration for setup.
+ * @param delegate An optional delegate to be notified of hmi level changes and startup and shutdown. It is recommended that you implement this.
+ *
+ * @return An instance of SDLManager
+ */
+- (instancetype)initWithConfiguration:(SDLConfiguration *)configuration delegate:(nullable id<SDLManagerDelegate>)delegate NS_DESIGNATED_INITIALIZER;
+
+/**
+ * Start the manager, which will tell it to start looking for a connection. Once one does, it will automatically run the setup process and call the readyBlock when done.
+ *
+ * @param readyHandler The block called when the manager is ready to be used or an error occurs while attempting to become ready.
+ */
+- (void)startWithReadyHandler:(SDLManagerReadyBlock)readyHandler NS_SWIFT_NAME(start(readyHandler:));
+
+/**
+ * Stop the manager, it will disconnect if needed and no longer look for a connection. You probably don't need to call this method ever.
+ *
+ * If you do call this method, you must wait for SDLManagerDelegate's managerDidDisconnect callback to call startWithReadyHandler:.
+ */
+- (void)stop;
+
+
+#pragma mark Manually Send RPC Requests
+
+/**
+ * Send an RPC request and don't bother with the response or error. If you need the response or error, call sendRequest:withCompletionHandler: instead.
+ *
+ * @param request The RPC request to send
+ */
+- (void)sendRequest:(SDLRPCRequest *)request;
+
+/**
+ * Send an RPC request and set a completion handler that will be called with the response when the response returns.
+ *
+ * @param request The RPC request to send
+ * @param handler The handler that will be called when the response returns
+ */
+- (void)sendRequest:(SDLRPCRequest *)request withResponseHandler:(nullable SDLResponseHandler)handler NS_SWIFT_NAME(send(request:responseHandler:));
+
+@end
+
+
+ class SDLManager : NSObject
+
@@ -2036,6 +3340,58 @@ @interface SDLMetadataTags : SDLRPCStruct
+
+/**
+ * @abstract Constructs a newly allocated SDLMetadataType object with NSArrays
+ */
+- (instancetype)initWithTextFieldTypes:(nullable NSArray<SDLMetadataType> *)mainField1 mainField2:(nullable NSArray<SDLMetadataType> *)mainField2;
+
+- (instancetype)initWithTextFieldTypes:(nullable NSArray<SDLMetadataType> *)mainField1 mainField2:(nullable NSArray<SDLMetadataType> *)mainField2 mainField3:(nullable NSArray<SDLMetadataType> *)mainField3 mainField4:(nullable NSArray<SDLMetadataType> *)mainField4;
+
+/**
+ * @abstract The type of data contained in the "mainField1" text field, Optional.
+ *
+ * minsize= 0
+ *
+ * maxsize= 5
+ */
+@property (nullable, strong, nonatomic) NSArray<SDLMetadataType> *mainField1;
+
+/**
+ * @abstract The type of data contained in the "mainField2" text field, Optional.
+ *
+ * minsize= 0
+ *
+ * maxsize= 5
+ */
+@property (nullable, strong, nonatomic) NSArray<SDLMetadataType> *mainField2;
+
+/**
+ * @abstract The type of data contained in the "mainField3" text field, Optional.
+ *
+ * minsize= 0
+ *
+ * maxsize= 5
+ */
+@property (nullable, strong, nonatomic) NSArray<SDLMetadataType> *mainField3;
+
+/**
+ * @abstract The type of data contained in the "mainField4" text field, Optional.
+ *
+ * minsize= 0
+ *
+ * maxsize= 5
+ */
+@property (nullable, strong, nonatomic) NSArray<SDLMetadataType> *mainField4;
+
+@end
+
+
+ class SDLMetadataTags : SDLRPCStruct
+
@@ -2048,6 +3404,29 @@ @interface SDLModuleData : SDLRPCStruct
+
+- (instancetype)initWithRadioControlData:(SDLRadioControlData *)radioControlData;
+- (instancetype)initWithClimateControlData:(SDLClimateControlData *)climateControlData;
+
+/**
+ * The moduleType indicates which type of data should be changed
+ * and identifies which data object exists in this struct.
+ * For example, if the moduleType is CLIMATE then a "climateControlData" should exist
+ */
+@property (strong, nonatomic) SDLModuleType moduleType;
+
+@property (nullable, strong, nonatomic) SDLRadioControlData *radioControlData;
+
+@property (nullable, strong, nonatomic) SDLClimateControlData *climateControlData;
+
+@end
+
+
+ class SDLModuleData : SDLRPCStruct
+
@@ -2060,6 +3439,17 @@ @interface SDLMyKey : SDLRPCStruct
+
+@property (strong, nonatomic) SDLVehicleDataStatus e911Override;
+
+@end
+
+
+ class SDLMyKey : SDLRPCStruct
+
@@ -2072,6 +3462,29 @@ @interface SDLNavigationCapability : SDLRPCStruct
+
+- (instancetype)initWithSendLocation:(BOOL)sendLocationEnabled waypoints:(BOOL)waypointsEnabled;
+
+/**
+ Whether or not the SendLocation RPC is enabled.
+ Boolean, optional
+ */
+@property (nullable, copy, nonatomic) NSNumber *sendLocationEnabled;
+
+/**
+ Whether or not Waypoint related RPCs are enabled.
+ Boolean, optional
+ */
+@property (nullable, copy, nonatomic) NSNumber *getWayPointsEnabled;
+
+@end
+
+
+ class SDLNavigationCapability : SDLRPCStruct
+
@@ -2084,6 +3497,18 @@ @interface SDLNotificationConstants : NSObject
+
++ (NSArray<SDLNotificationName> *)allResponseNames;
++ (NSArray<SDLNotificationName> *)allButtonEventNotifications;
+
+@end
+
+
+ class SDLNotificationConstants : NSObject
+
@@ -2096,6 +3521,82 @@ @interface SDLOasisAddress : SDLRPCStruct
+
+- (instancetype)initWithSubThoroughfare:(nullable NSString *)subThoroughfare thoroughfare:(nullable NSString *)thoroughfare locality:(nullable NSString *)locality administrativeArea:(nullable NSString *)administrativeArea postalCode:(nullable NSString *)postalCode countryCode:(nullable NSString *)countryCode;
+
+- (instancetype)initWithSubThoroughfare:(nullable NSString *)subThoroughfare thoroughfare:(nullable NSString *)thoroughfare locality:(nullable NSString *)locality administrativeArea:(nullable NSString *)administrativeArea postalCode:(nullable NSString *)postalCode countryCode:(nullable NSString *)countryCode countryName:(nullable NSString *)countryName subAdministrativeArea:(nullable NSString *)subAdministrativeArea subLocality:(nullable NSString *)subLocality;
+
+/**
+ * @abstract Name of the country (localized)
+ *
+ * Optional, max length = 200
+ */
+@property (nullable, copy, nonatomic) NSString *countryName;
+
+/**
+ * @abstract countryCode of the country(ISO 3166-2)
+ *
+ * Optional, max length = 200
+ */
+@property (nullable, copy, nonatomic) NSString *countryCode;
+
+/**
+ * @abstract postalCode of location (PLZ, ZIP, PIN, CAP etc.)
+ *
+ * Optional, max length = 200
+ */
+@property (nullable, copy, nonatomic) NSString *postalCode;
+
+/**
+ * @abstract Portion of country (e.g. state)
+ *
+ * Optional, max length = 200
+ */
+@property (nullable, copy, nonatomic) NSString *administrativeArea;
+
+/**
+ * @abstract Portion of administrativeArea (e.g. county)
+ *
+ * Optional, max length = 200
+ */
+@property (nullable, copy, nonatomic) NSString *subAdministrativeArea;
+
+/**
+ * @abstract Hypernym for city/village
+ *
+ * Optional, max length = 200
+ */
+@property (nullable, copy, nonatomic) NSString *locality;
+
+/**
+ * @abstract Hypernym for district
+ *
+ * Optional, max length = 200
+ */
+@property (nullable, copy, nonatomic) NSString *subLocality;
+
+/**
+ * @abstract Hypernym for street, road etc.
+ *
+ * Optional, max length = 200
+ */
+@property (nullable, copy, nonatomic) NSString *thoroughfare;
+
+/**
+ * @abstract Portion of thoroughfare (e.g. house number)
+ *
+ * Optional, max length = 200
+ */
+@property (nullable, copy, nonatomic) NSString *subThoroughfare;
+
+@end
+
+
+ class SDLOasisAddress : SDLRPCStruct
+
@@ -2353,6 +3854,19 @@ @interface SDLOnEncodedSyncPData : SDLRPCNotification
+
+@property (strong, nonatomic) NSArray<NSString *> *data;
+@property (nullable, strong, nonatomic) NSString *URL;
+@property (nullable, strong, nonatomic) NSNumber<SDLInt> *Timeout;
+
+@end
+
+
+ class SDLOnEncodedSyncPData : SDLRPCNotification
+
@@ -2396,6 +3910,17 @@ @interface SDLOnHashChange : SDLRPCNotification
+
+@property (strong, nonatomic) NSString *hashID;
+
+@end
+
+
+ class SDLOnHashChange : SDLRPCNotification
+
@@ -2408,6 +3933,17 @@ @interface SDLOnInteriorVehicleData : SDLRPCNotification
+
+@property (strong, nonatomic) SDLModuleData *moduleData;
+
+@end
+
+
+ class SDLOnInteriorVehicleData : SDLRPCNotification
+
@@ -2420,6 +3956,18 @@ @interface SDLOnKeyboardInput : SDLRPCNotification
+
+@property (strong, nonatomic) SDLKeyboardEvent event;
+@property (nullable, strong, nonatomic) NSString *data;
+
+@end
+
+
+ class SDLOnKeyboardInput : SDLRPCNotification
+
@@ -2499,6 +4047,18 @@ @interface SDLOnSyncPData : SDLRPCNotification
+
+@property (nullable, strong, nonatomic) NSString *URL;
+@property (nullable, strong, nonatomic) NSNumber<SDLInt> *Timeout;
+
+@end
+
+
+ class SDLOnSyncPData : SDLRPCNotification
+
@@ -2511,6 +4071,22 @@ @interface SDLOnSystemRequest : SDLRPCNotification
+
+@property (strong, nonatomic) SDLRequestType requestType;
+@property (nullable, strong, nonatomic) NSString *url;
+@property (nullable, strong, nonatomic) NSNumber<SDLInt> *timeout;
+@property (nullable, strong, nonatomic) SDLFileType fileType;
+@property (nullable, strong, nonatomic) NSNumber<SDLUInt> *offset;
+@property (nullable, strong, nonatomic) NSNumber<SDLUInt> *length;
+
+@end
+
+
+ class SDLOnSystemRequest : SDLRPCNotification
+
@@ -2523,6 +4099,17 @@ @interface SDLOnTBTClientState : SDLRPCNotification
+
+@property (strong, nonatomic) SDLTBTState state;
+
+@end
+
+
+ class SDLOnTBTClientState : SDLRPCNotification
+
@@ -2535,6 +4122,18 @@ @interface SDLOnTouchEvent : SDLRPCNotification
+
+@property (strong, nonatomic) SDLTouchType type;
+@property (strong, nonatomic) NSArray<SDLTouchEvent *> *event;
+
+@end
+
+
+ class SDLOnTouchEvent : SDLRPCNotification
+
@@ -2568,6 +4167,22 @@ @interface SDLOnWayPointChange : SDLRPCNotification
+
+/**
+ * @abstract Location address for display purposes only.
+ *
+ * Required, Array of Strings, Array size 1 - 10
+ */
+@property (copy, nonatomic) NSArray<SDLLocationDetails *> *waypoints;
+
+@end
+
+
+ class SDLOnWayPointChange : SDLRPCNotification
+
@@ -2701,6 +4316,19 @@ @interface SDLPermissionItem : SDLRPCStruct
+
+@property (strong, nonatomic) NSString *rpcName;
+@property (strong, nonatomic) SDLHMIPermissions *hmiPermissions;
+@property (strong, nonatomic) SDLParameterPermissions *parameterPermissions;
+
+@end
+
+
+ class SDLPermissionItem : SDLRPCStruct
+
@@ -2713,6 +4341,81 @@ @interface SDLPermissionManager : NSObject
+
+/**
+ * Start the manager with a completion block that will be called when startup completes. This is used internally. To use an SDLPermissionManager, you should use the manager found on `SDLManager`.
+ *
+ * @param completionHandler The block to be called when the manager's setup is complete.
+ */
+- (void)startWithCompletionHandler:(void (^)(BOOL success, NSError *__nullable error))completionHandler;
+
+/**
+ * Stop the manager. This method is used internally.
+ */
+- (void)stop;
+
+/**
+ * Determine if an individual RPC is allowed for the current HMI level
+ *
+ * @param rpcName The name of the RPC to be tested, for example, SDLShow
+ *
+ * @return YES if the RPC is allowed at the current HMI level, NO if not
+ */
+- (BOOL)isRPCAllowed:(SDLPermissionRPCName)rpcName;
+
+/**
+ * Determine if all RPCs are allowed for the current HMI level
+ *
+ * @param rpcNames The RPCs to check
+ *
+ * @return AllAllowed if all of the permissions are allowed, AllDisallowed if all the permissions are disallowed, Any if some are allowed, and some are disallowed
+ */
+- (SDLPermissionGroupStatus)groupStatusOfRPCs:(NSArray<SDLPermissionRPCName> *)rpcNames;
+
+/**
+ * Retrieve a dictionary with keys that are the passed in RPC names, and objects of an NSNumber<BOOL> specifying if that RPC is currently allowed
+ *
+ * @param rpcNames An array of RPC names to check
+ *
+ * @return A dictionary specifying if the passed in RPC names are currently allowed or not
+ */
+- (NSDictionary<SDLPermissionRPCName, NSNumber<SDLBool> *> *)statusOfRPCs:(NSArray<SDLPermissionRPCName> *)rpcNames;
+
+/**
+ * Add an observer for specified RPC names, with a callback that will be called whenever the value changes, as well as immediately with the current status.
+ *
+ * @warning This block will be captured by the SDLPermissionsManager, be sure to use [weakself/strongself](http://www.logicsector.com/ios/avoiding-objc-retain-cycles-with-weakself-and-strongself-the-easy-way/) if you are referencing self within your observer block.
+ *
+ * @warning The observer may be called before this method returns, do not attempt to remove the observer from within the observer. That could send `nil` to removeObserverForIdentifier:. If you want functionality like that, call groupStatusOfRPCs: instead.
+ *
+ * @param rpcNames The RPCs to be observed
+ * @param groupType Affects the times that the observer block will be called. If Any, any change to any RPC in rpcNames will cause the observer block to be called. If AllAllowed, the block will be called when: 1. Every RPC in rpcNames becomes allowed 2. The group of rpcNames goes from all being allowed to some or all being disallowed.
+ * @param handler The block that will be called whenever permissions change.
+ *
+ * @return An identifier that can be passed to removeObserverForIdentifer: to remove the observer
+ */
+- (SDLPermissionObserverIdentifier)addObserverForRPCs:(NSArray<SDLPermissionRPCName> *)rpcNames groupType:(SDLPermissionGroupType)groupType withHandler:(SDLPermissionsChangedHandler)handler;
+
+/**
+ * Remove every current observer
+ */
+- (void)removeAllObservers;
+
+/**
+ * Remove block observers for the specified RPC
+ *
+ * @param identifier The identifier specifying which observer to remove
+ */
+- (void)removeObserverForIdentifier:(SDLPermissionObserverIdentifier)identifier;
+
+@end
+
+
+ class SDLPermissionManager : NSObject
+
@@ -2725,6 +4428,23 @@ @interface SDLPhoneCapability : SDLRPCStruct
+
+- (instancetype)initWithDialNumber:(BOOL)dialNumberEnabled;
+
+/**
+ Whether or not the DialNumber RPC is enabled.
+ Boolean, optional
+ */
+@property (nullable, strong, nonatomic) NSNumber *dialNumberEnabled;
+
+@end
+
+
+ class SDLPhoneCapability : SDLRPCStruct
+
@@ -2737,6 +4457,58 @@ @interface SDLPinchGesture : NSObject
+
+/**
+ * @abstract
+ * Initializes a pinch gesture.
+ * @param firstTouch
+ * First touch of the gesture
+ * @param secondTouch
+ * Second touch of the gesture
+ * @return SDLPinchGesture
+ * Instance of SDLPinchGesture.
+ */
+- (instancetype)initWithFirstTouch:(SDLTouch *)firstTouch secondTouch:(SDLTouch *)secondTouch;
+
+/**
+ * @abstract
+ * First touch of a pinch gesture.
+ */
+@property (nonatomic, strong) SDLTouch *firstTouch;
+
+/**
+ * @abstract
+ * Second touch of a pinch gesture.
+ */
+@property (nonatomic, strong) SDLTouch *secondTouch;
+
+/**
+ * @abstract
+ * Distance between first and second touches.
+ */
+@property (nonatomic, assign, readonly) CGFloat distance;
+
+/**
+ * @abstract
+ * Center point between first and second touches.
+ */
+@property (nonatomic, assign, readonly) CGPoint center;
+
+/**
+ * @abstract
+ * Returns whether or not the pinch gesture is valid. This is true if both touches
+ * are non null.
+ */
+@property (nonatomic, assign, readonly) BOOL isValid;
+
+@end
+
+
+ class SDLPinchGesture : NSObject
+
@@ -2770,6 +4542,27 @@ @interface SDLProtocol : SDLAbstractProtocol <SDLProtocolListener>
+
+// Sending
+- (void)startServiceWithType:(SDLServiceType)serviceType payload:(nullable NSData *)payload;
+- (void)startSecureServiceWithType:(SDLServiceType)serviceType payload:(nullable NSData *)payload completionHandler:(void (^)(BOOL success, NSError *error))completionHandler;
+- (void)endServiceWithType:(SDLServiceType)serviceType;
+- (void)sendRPC:(SDLRPCMessage *)message;
+- (BOOL)sendRPC:(SDLRPCMessage *)message encrypted:(BOOL)encryption error:(NSError **)error;
+- (void)sendRawData:(NSData *)data withServiceType:(SDLServiceType)serviceType;
+- (void)sendEncryptedRawData:(NSData *)data onService:(SDLServiceType)serviceType;
+
+// Recieving
+- (void)handleBytesFromTransport:(NSData *)receivedData;
+
+@end
+
+
+ class SDLProtocol : SDLAbstractProtocol, SDLProtocolListener
+
@@ -2782,6 +4575,34 @@ @interface SDLProtocolHeader : NSObject <NSCopying> {
+ UInt8 _version;
+ NSUInteger _size;
+}
+
+@property (assign, nonatomic, readonly) UInt8 version;
+@property (assign, nonatomic, readonly) NSUInteger size;
+@property (assign, nonatomic) BOOL encrypted;
+@property (assign, nonatomic) SDLFrameType frameType;
+@property (assign, nonatomic) SDLServiceType serviceType;
+@property (assign, nonatomic) SDLFrameInfo frameData;
+@property (assign, nonatomic) UInt8 sessionID;
+@property (assign, nonatomic) UInt32 bytesInPayload;
+
+- (instancetype)init;
+- (nullable NSData *)data;
+- (void)parse:(NSData *)data;
+- (NSString *)description;
++ (__kindof SDLProtocolHeader *)headerForVersion:(UInt8)version;
++ (UInt8)determineVersion:(NSData *)data;
+
+@end
+
+
+ class SDLProtocolHeader : NSObject, NSCopying
+
@@ -2794,6 +4615,25 @@ @interface SDLProtocolMessage : NSObject
+
+@property (strong, nonatomic) SDLProtocolHeader *header;
+@property (nullable, strong, nonatomic) NSData *payload;
+@property (strong, nonatomic, readonly) NSData *data;
+
++ (instancetype)messageWithHeader:(SDLProtocolHeader *)header andPayload:(nullable NSData *)payload; // Returns a V1 or V2 object
+
+- (NSUInteger)size;
+- (NSString *)description;
+- (nullable NSDictionary<NSString *, id> *)rpcDictionary; // Use for RPC type messages to obtain the data in a dictionary
+
+@end
+
+
+ class SDLProtocolMessage : NSObject
+
@@ -2806,6 +4646,52 @@ @interface SDLProxy : NSObject<SDLProtocolListener, NSStreamDelegate> {
+ Byte _version;
+ Byte _bulkSessionID;
+ BOOL _isConnected;
+}
+
+@property (nullable, strong, nonatomic) SDLAbstractProtocol *protocol;
+@property (nullable, strong, nonatomic) SDLAbstractTransport *transport;
+@property (readonly, copy, nonatomic) NSSet<NSObject<SDLProxyListener> *> *proxyListeners;
+@property (strong, nonatomic) SDLTimer *startSessionTimer;
+@property (copy, nonatomic) NSString *debugConsoleGroupName;
+@property (readonly, copy, nonatomic) NSString *proxyVersion;
+
+- (id)initWithTransport:(SDLAbstractTransport *)transport
+ protocol:(SDLAbstractProtocol *)protocol
+ delegate:(NSObject<SDLProxyListener> *)delegate;
+
+- (void)addDelegate:(NSObject<SDLProxyListener> *)delegate;
+- (void)removeDelegate:(NSObject<SDLProxyListener> *)delegate;
+
+- (void)sendRPC:(SDLRPCMessage *)message;
+
+- (void)handleRPCDictionary:(NSDictionary<NSString *, id> *)dictionary;
+
+- (void)handleProtocolMessage:(SDLProtocolMessage *)msgData;
+
+- (void)addSecurityManagers:(NSArray<Class> *)securityManagerClasses forAppId:(NSString *)appId;
+
+/**
+ * Puts data into a file on the module
+ * @abstract Performs a putFile for a given input stream, performed in chunks, for handling very large files.
+ * @param inputStream A stream containing the data to put to the module.
+ * @param putFileRPCRequest A SDLPutFile object containing the parameters for the put(s)
+ * @discussion The proxy will read from the stream based on the max MTU size and send them in individual putFile requests.
+ * This may result in multiple responses being received, one for each request.
+ * Note: the length parameter of the putFileRPCRequest will be ignored. The proxy will substitute the number of bytes read from the stream.
+ */
+- (void)putFileStream:(NSInputStream *)inputStream withRequest:(SDLPutFile *)putFileRPCRequest;
+
+@end
+
+
+ class SDLProxy : NSObject, SDLProtocolListener, StreamDelegate
+
@@ -2818,6 +4704,21 @@ @interface SDLProxyFactory : NSObject {
+}
+
++ (SDLProxy *)buildSDLProxyWithListener:(NSObject<SDLProxyListener> *)listener;
+
++ (SDLProxy *)buildSDLProxyWithListener:(NSObject<SDLProxyListener> *)listener
+ tcpIPAddress:(NSString *)ipaddress
+ tcpPort:(NSString *)port;
+@end
+
+
+ class SDLProxyFactory : NSObject
+
@@ -2904,6 +4805,30 @@ @interface SDLRPCMessage : SDLRPCStruct {
+ NSMutableDictionary<NSString *, id> *function;
+ NSMutableDictionary<NSString *, id> *parameters;
+ NSString *messageType;
+}
+
+- (instancetype)initWithName:(NSString *)name;
+- (instancetype)initWithDictionary:(NSDictionary<NSString *, id> *)dict;
+- (nullable NSString *)getFunctionName;
+- (void)setFunctionName:(nullable NSString *)functionName;
+- (nullable NSObject *)getParameters:(NSString *)functionName;
+- (void)setParameters:(NSString *)functionName value:(nullable NSObject *)value;
+
+@property (nullable, strong, nonatomic) NSData *bulkData;
+@property (strong, nonatomic, readonly) NSString *name;
+@property (strong, nonatomic, readonly) NSString *messageType;
+
+@end
+
+
+ class SDLRPCMessage : SDLRPCStruct
+
@@ -2915,6 +4840,15 @@ @interface SDLRPCNotification : SDLRPCMessage
+
+@end
+
+
+ class SDLRPCNotification : SDLRPCMessage
+
@@ -2927,6 +4861,34 @@ @interface SDLRPCNotificationNotification : NSNotification
+
+@property (copy, nonatomic, readonly) __kindof SDLRPCNotification *notification;
+
+- (instancetype)initWithName:(NSString *)name object:(nullable id)object rpcNotification:(__kindof SDLRPCNotification *)notification;
+
+/**
+ * Returns whether or not the containing notification is equal to a class, not including subclasses.
+ *
+ * @param aClass the class you are questioning
+ */
+- (BOOL)isNotificationMemberOfClass:(Class)aClass;
+
+/**
+ * Returns whether or not the containing notification is a kind of class, including subclasses.
+ *
+ * @param aClass the class you are questioning
+ */
+- (BOOL)isNotificationKindOfClass:(Class)aClass;
+
+
+@end
+
+
+ class SDLRPCNotificationNotification : NSNotification
+
@@ -2939,6 +4901,17 @@ @interface SDLRPCRequest : SDLRPCMessage
+
+@property (strong, nonatomic) NSNumber<SDLInt> *correlationID;
+
+@end
+
+
+ class SDLRPCRequest : SDLRPCMessage
+
@@ -2951,6 +4924,20 @@ @interface SDLRPCResponse : SDLRPCMessage
+
+@property (strong, nonatomic) NSNumber<SDLInt> *correlationID;
+@property (strong, nonatomic) NSNumber<SDLBool> *success;
+@property (strong, nonatomic) SDLResult resultCode;
+@property (nullable, strong, nonatomic) NSString *info;
+
+@end
+
+
+ class SDLRPCResponse : SDLRPCMessage
+
@@ -2963,6 +4950,33 @@ @interface SDLRPCResponseNotification : NSNotification
+
+@property (copy, nonatomic, readonly) __kindof SDLRPCResponse *response;
+
+- (instancetype)initWithName:(NSString *)name object:(nullable id)object rpcResponse:(__kindof SDLRPCResponse *)response;
+
+/**
+ * Returns whether or not the containing response is equal to a class, not including subclasses.
+ *
+ * @param aClass the class you are questioning
+ */
+- (BOOL)isResponseMemberOfClass:(Class)aClass;
+
+/**
+ * Returns whether or not the containing response is a kind of class, including subclasses.
+ *
+ * @param aClass the class you are questioning
+ */
+- (BOOL)isResponseKindOfClass:(Class)aClass;
+
+@end
+
+
+ class SDLRPCResponseNotification : NSNotification
+
@@ -2975,6 +4989,22 @@ @interface SDLRPCStruct : NSObject <NSCopying> {
+ NSMutableDictionary<NSString *, id> *store;
+}
+
+- (instancetype)initWithDictionary:(NSDictionary<NSString *, id> *)dict;
+- (instancetype)init;
+
+- (NSDictionary<NSString *, id> *)serializeAsDictionary:(Byte)version;
+
+@end
+
+
+ class SDLRPCStruct : NSObject, NSCopying
+
@@ -3074,6 +5104,58 @@ @interface SDLRectangle : SDLRPCStruct
+
+/**
+ Create a Rectangle
+
+ @param x The top-left x value
+ @param y The top-left y value
+ @param width The width
+ @param height The height
+ @return An new SDLRectangle object
+ */
+- (instancetype)initWithX:(float)x y:(float)y width:(float)width height:(float)height;
+
+/**
+ Create a Rectangle from a CGRect
+
+ @param rect The rectangle to use
+ @return An new SDLRectangle object
+ */
+- (instancetype)initWithCGRect:(CGRect)rect;
+
+/**
+ * The X-coordinate of the user control
+ * Required, Float
+ */
+@property (strong, nonatomic) NSNumber<SDLFloat> *x;
+
+/**
+ * The Y-coordinate of the user control
+ * Required, Float
+ */
+@property (strong, nonatomic) NSNumber<SDLFloat> *y;
+
+/**
+ * The width of the user control's bounding rectangle
+ * Required, Float
+ */
+@property (strong, nonatomic) NSNumber<SDLFloat> *width;
+
+/**
+ * The height of the user control's bounding rectangle
+ * Required, Float
+ */
+@property (strong, nonatomic) NSNumber<SDLFloat> *height;
+
+@end
+
+
+ class SDLRectangle : SDLRPCStruct
+
@@ -3197,6 +5279,40 @@ @interface SDLRemoteControlCapabilities : SDLRPCStruct
+
+- (instancetype)initWithClimateControlCapabilities:(nullable NSArray<SDLClimateControlCapabilities *> *)climateControlCapabilities radioControlCapabilities:(nullable NSArray<SDLRadioControlCapabilities *> *)radioControlCapabilities buttonCapabilities:(nullable NSArray<SDLButtonCapabilities *> *)buttonCapabilities;
+
+/**
+ * @abstract If included, the platform supports RC climate controls.
+ * For this baseline version, maxsize=1. i.e. only one climate control module is supported.
+ *
+ * Optional, Array of SDLClimateControlCapabilities, Array length 1 - 100
+ */
+@property (nullable, strong, nonatomic) NSArray<SDLClimateControlCapabilities *> *climateControlCapabilities;
+
+/**
+ * @abstract If included, the platform supports RC radio controls.
+ * For this baseline version, maxsize=1. i.e. only one radio control module is supported.
+ *
+ * Optional, Array of SDLRadioControlCapabilities, Array length 1 - 100
+ */
+@property (nullable, strong, nonatomic) NSArray<SDLRadioControlCapabilities *> *radioControlCapabilities;
+
+/**
+ * @abstract If included, the platform supports RC button controls with the included button names.
+ *
+ * Optional, Array of SDLButtonCapabilities, Array length 1 - 100
+ */
+@property (nullable, strong, nonatomic) NSArray<SDLButtonCapabilities *> *buttonCapabilities;
+
+@end
+
+
+ class SDLRemoteControlCapabilities : SDLRPCStruct
+
@@ -3261,6 +5377,18 @@ @interface SDLScreenParams : SDLRPCStruct
+
+@property (strong, nonatomic) SDLImageResolution *resolution;
+@property (nullable, strong, nonatomic) SDLTouchEventCapabilities *touchEventAvailable;
+
+@end
+
+
+ class SDLScreenParams : SDLRPCStruct
+
@@ -3355,6 +5483,89 @@ @interface SDLSendLocation : SDLRPCRequest
+
+- (instancetype)initWithLongitude:(double)longitude latitude:(double)latitude locationName:(nullable NSString *)locationName locationDescription:(nullable NSString *)locationDescription address:(nullable NSArray<NSString *> *)address phoneNumber:(nullable NSString *)phoneNumber image:(nullable SDLImage *)image;
+
+- (instancetype)initWithLongitude:(double)longitude latitude:(double)latitude locationName:(nullable NSString *)locationName locationDescription:(nullable NSString *)locationDescription displayAddressLines:(nullable NSArray<NSString *> *)displayAddressLines phoneNumber:(nullable NSString *)phoneNumber image:(nullable SDLImage *)image deliveryMode:(nullable SDLDeliveryMode)deliveryMode timeStamp:(nullable SDLDateTime *)timeStamp address:(nullable SDLOasisAddress *)address;
+
+/**
+ * The longitudinal coordinate of the location.
+ *
+ * Float, Required, -180.0 - 180.0
+ */
+@property (nullable, copy, nonatomic) NSNumber<SDLFloat> *longitudeDegrees;
+
+/**
+ * The latitudinal coordinate of the location.
+ *
+ * Float, Required, -90.0 - 90.0
+ */
+@property (nullable, copy, nonatomic) NSNumber<SDLFloat> *latitudeDegrees;
+
+/**
+ * Name / title of intended location
+ *
+ * Optional, Maxlength = 500 char
+ */
+@property (nullable, copy, nonatomic) NSString *locationName;
+
+/**
+ * Description of the intended location / establishment
+ *
+ * Optional, MaxLength = 500 char
+ */
+@property (nullable, copy, nonatomic) NSString *locationDescription;
+
+/**
+ * Location address for display purposes only
+ *
+ * Contains String, Optional, Max Array Length = 4, Max String Length = 500
+ */
+@property (nullable, copy, nonatomic) NSArray<NSString *> *addressLines;
+
+/**
+ * Phone number of intended location / establishment
+ *
+ * Optional, Max Length = 500
+ */
+@property (nullable, copy, nonatomic) NSString *phoneNumber;
+
+/**
+ * Image / icon of intended location
+ *
+ * Optional
+ */
+@property (nullable, strong, nonatomic) SDLImage *locationImage;
+
+/**
+ * Mode in which the sendLocation request is sent
+ *
+ * Optional
+ */
+@property (nullable, strong, nonatomic) SDLDeliveryMode deliveryMode;
+
+/**
+ * Arrival time of Location. If multiple SendLocations are sent, this will be used for sorting as well.
+ *
+ * Optional
+ */
+@property (nullable, strong, nonatomic) SDLDateTime *timeStamp;
+
+/**
+ * Address to be used for setting destination
+ *
+ * Optional
+ */
+@property (nullable, strong, nonatomic) SDLOasisAddress *address;
+
+@end
+
+
+ class SDLSendLocation : SDLRPCRequest
+
@@ -3366,6 +5577,15 @@ @interface SDLSendLocationResponse : SDLRPCResponse
+
+@end
+
+
+ class SDLSendLocationResponse : SDLRPCResponse
+
@@ -3768,6 +5988,28 @@ @interface SDLSoftButton : SDLRPCStruct
+
+- (instancetype)initWithHandler:(nullable SDLRPCButtonNotificationHandler)handler;
+
+- (instancetype)initWithType:(SDLSoftButtonType)type text:(nullable NSString *)text image:(nullable SDLImage *)image highlighted:(BOOL)highlighted buttonId:(UInt16)buttonId systemAction:(nullable SDLSystemAction)systemAction handler:(nullable SDLRPCButtonNotificationHandler)handler;
+
+@property (copy, nonatomic) SDLRPCButtonNotificationHandler handler;
+
+@property (strong, nonatomic) SDLSoftButtonType type;
+@property (strong, nonatomic, nullable) NSString *text;
+@property (strong, nonatomic, nullable) SDLImage *image;
+@property (strong, nonatomic, nullable) NSNumber<SDLBool> *isHighlighted;
+@property (strong, nonatomic) NSNumber<SDLInt> *softButtonID;
+@property (strong, nonatomic, nullable) SDLSystemAction systemAction;
+
+@end
+
+
+ class SDLSoftButton : SDLRPCStruct
+
@@ -3895,6 +6137,87 @@ @interface SDLStreamingMediaConfiguration : NSObject <NSCopying>
+
+/**
+ * Set security managers which could be used. This is primarily used with video streaming applications to authenticate and perhaps encrypt traffic data.
+ */
+@property (copy, nonatomic, nullable) NSArray<Class<SDLSecurityType>> *securityManagers;
+
+/**
+ * What encryption level video/audio streaming should be. The default is SDLStreamingEncryptionFlagAuthenticateAndEncrypt.
+ */
+@property (assign, nonatomic) SDLStreamingEncryptionFlag maximumDesiredEncryption;
+
+/**
+ * Properties to use for applications that utilitze the video encoder for streaming. See VTCompressionProperties.h for more details. For example, you can set kVTCompressionPropertyKey_ExpectedFrameRate to set your expected framerate.
+ */
+@property (copy, nonatomic, nullable) NSDictionary<NSString *, id> *customVideoEncoderSettings;
+
+/**
+ Usable to change run time video stream setup behavior. Only use this and modify the results if you *really* know what you're doing. The head unit defaults are generally good.
+ */
+@property (weak, nonatomic, nullable) id<SDLStreamingMediaManagerDataSource> dataSource;
+
+/**
+ Set the window your video streaming content is within.
+
+ Activates the haptic view parser when set. If the window contains `UIView` based views, these will be discovered and automatically sent to the head unit if it uses a haptic interface. Whether or not it supports the haptic interace, this library will also use that information to attempt to return the touched view to you in `SDLTouchManagerDelegate`.
+
+ @warning Apps using views outside of the `UIView` heirarchy (such as OpenGL) are currently unsupported. If you app uses partial views in the heirarchy, only those views will be discovered. Your OpenGL views will not be discoverable to a haptic interface head unit and you will have to manually make these views discoverable via the `SDLSendHapticData` RPC request.
+
+ @warning This is a weak property and it's therefore your job to hold a strong reference to this window.
+ */
+@property (weak, nonatomic, nullable) UIWindow *window;
+
+/**
+ Create an insecure video streaming configuration. No security managers will be provided and the encryption flag will be set to None. If you'd like custom video encoder settings, you can set the property manually.
+
+ @return The configuration
+ */
+- (instancetype)init;
+
+/**
+ Manually set all the properties to the streaming media configuration
+
+ @param securityManagers The security managers to use or nil for none.
+ @param encryptionFlag The maximum encrpytion supported. If the connected head unit supports less than set here, it will still connect, but if it supports more than set here, it will not connect.
+ @param videoSettings Custom video encoder settings to be used in video streaming.
+ @param window The UIWindow you are running the content that is being streamed on, to use for haptics if needed and possible (only works for UIViews)
+ @return The configuration
+ */
+- (instancetype)initWithSecurityManagers:(nullable NSArray<Class<SDLSecurityType>> *)securityManagers encryptionFlag:(SDLStreamingEncryptionFlag)encryptionFlag videoSettings:(nullable NSDictionary<NSString *, id> *)videoSettings dataSource:(nullable id<SDLStreamingMediaManagerDataSource>)dataSource window:(nullable UIWindow *)window;
+
+/**
+ Create a secure configuration for each of the security managers provided.
+
+ @param securityManagers The security managers to be used. The encryption flag will be set to AuthenticateAndEncrypt if any security managers are set.
+ @return The configuration
+ */
+- (instancetype)initWithSecurityManagers:(NSArray<Class<SDLSecurityType>> *)securityManagers;
+
+/**
+ Create a secure configuration for each of the security managers provided.
+
+ @param securityManagers The security managers to be used. The encryption flag will be set to AuthenticateAndEncrypt if any security managers are set.
+ @return The configuration
+ */
++ (instancetype)secureConfigurationWithSecurityManagers:(NSArray<Class<SDLSecurityType>> *)securityManagers NS_SWIFT_UNAVAILABLE("Use an initializer instead");
+
+/**
+ Create an insecure video streaming configuration. No security managers will be provided and the encryption flag will be set to None. If you'd like custom video encoder settings, you can set the property manually. This is equivalent to `init`.
+
+ @return The configuration
+ */
++ (instancetype)insecureConfiguration NS_SWIFT_UNAVAILABLE("Use the standard initializer instead");
+
+@end
+
+
+ class SDLStreamingMediaConfiguration : NSObject, NSCopying
+
@@ -3907,6 +6230,137 @@ @interface SDLStreamingMediaManager : NSObject
+
+/**
+ * Touch Manager responsible for providing touch event notifications.
+ */
+@property (nonatomic, strong, readonly) SDLTouchManager *touchManager;
+
+/**
+ A haptic interface that can be updated to reparse views within the window you've provided. Send a `SDLDidUpdateProjectionView` notification or call the `updateInterfaceLayout` method to reparse. The "output" of this haptic interface occurs in the `touchManager` property where it will call the delegate.
+ */
+@property (nonatomic, strong, readonly, nullable) id<SDLFocusableItemLocatorType> focusableItemManager;
+
+/**
+ * Whether or not video streaming is supported
+ *
+ * @see SDLRegisterAppInterface SDLDisplayCapabilities
+ */
+@property (assign, nonatomic, readonly, getter=isStreamingSupported) BOOL streamingSupported;
+
+/**
+ * Whether or not the video session is connected.
+ */
+@property (assign, nonatomic, readonly, getter=isVideoConnected) BOOL videoConnected;
+
+/**
+ * Whether or not the video session is encrypted. This may be different than the requestedEncryptionType.
+ */
+@property (assign, nonatomic, readonly, getter=isVideoEncrypted) BOOL videoEncrypted;
+
+/**
+ * Whether or not the audio session is connected.
+ */
+@property (assign, nonatomic, readonly, getter=isAudioConnected) BOOL audioConnected;
+
+/**
+ * Whether or not the audio session is encrypted. This may be different than the requestedEncryptionType.
+ */
+@property (assign, nonatomic, readonly, getter=isAudioEncrypted) BOOL audioEncrypted;
+
+/**
+ * Whether or not the video stream is paused due to either the application being backgrounded, the HMI state being either NONE or BACKGROUND, or the video stream not being ready.
+ */
+@property (assign, nonatomic, readonly, getter=isVideoStreamingPaused) BOOL videoStreamingPaused;
+
+/**
+ * This is the current screen size of a connected display. This will be the size the video encoder uses to encode the raw image data.
+ */
+@property (assign, nonatomic, readonly) CGSize screenSize;
+
+/**
+ This is the agreed upon format of video encoder that is in use, or nil if not currently connected.
+ */
+@property (strong, nonatomic, readonly, nullable) SDLVideoStreamingFormat *videoFormat;
+
+/**
+ A list of all supported video formats by this manager
+ */
+@property (strong, nonatomic, readonly) NSArray<SDLVideoStreamingFormat *> *supportedFormats;
+
+/**
+ * The pixel buffer pool reference returned back from an active VTCompressionSessionRef encoder.
+ *
+ * @warning This will only return a valid pixel buffer pool after the encoder has been initialized (when the video session has started).
+ * @discussion Clients may call this once and retain the resulting pool, this call is cheap enough that it's OK to call it once per frame.
+ */
+@property (assign, nonatomic, readonly, nullable) CVPixelBufferPoolRef pixelBufferPool;
+
+/**
+ * The requested encryption type when a session attempts to connect. This setting applies to both video and audio sessions.
+ *
+ * DEFAULT: SDLStreamingEncryptionFlagAuthenticateAndEncrypt
+ */
+@property (assign, nonatomic) SDLStreamingEncryptionFlag requestedEncryptionType;
+
+- (instancetype)init NS_UNAVAILABLE;
+
+/**
+ Create a new streaming media manager for navigation and VPM apps with a specified configuration
+
+ @param connectionManager The pass-through for RPCs
+ @param configuration The configuration of this streaming media session
+ @return A new streaming manager
+ */
+- (instancetype)initWithConnectionManager:(id<SDLConnectionManagerType>)connectionManager configuration:(SDLStreamingMediaConfiguration *)configuration NS_DESIGNATED_INITIALIZER;
+
+/**
+ * Start the manager with a completion block that will be called when startup completes. This is used internally. To use an SDLStreamingMediaManager, you should use the manager found on `SDLManager`.
+ */
+- (void)startWithProtocol:(SDLAbstractProtocol *)protocol;
+
+/**
+ * Stop the manager. This method is used internally.
+ */
+- (void)stop;
+
+/**
+ * This method receives raw image data and will run iOS8+'s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit.
+ *
+ * @param imageBuffer A CVImageBufferRef to be encoded by Video Toolbox
+ *
+ * @return Whether or not the data was successfully encoded and sent.
+ */
+- (BOOL)sendVideoData:(CVImageBufferRef)imageBuffer;
+
+/**
+ * This method receives raw image data and will run iOS8+'s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit.
+ *
+ * @param imageBuffer A CVImageBufferRef to be encoded by Video Toolbox
+ * @param presentationTimestamp A presentation timestamp for the frame, or kCMTimeInvalid if timestamp is unknown. If it's valid, it must be greater than the previous one.
+ *
+ * @return Whether or not the data was successfully encoded and sent.
+ */
+- (BOOL)sendVideoData:(CVImageBufferRef)imageBuffer presentationTimestamp:(CMTime)presentationTimestamp;
+
+/**
+ * This method receives PCM audio data and will attempt to send that data across to the head unit for immediate playback
+ *
+ * @param audioData The data in PCM audio format, to be played
+ *
+ * @return Whether or not the data was successfully sent.
+ */
+- (BOOL)sendAudioData:(NSData *)audioData;
+
+
+@end
+
+
+ class SDLStreamingMediaManager : NSObject
+
@@ -4080,6 +6534,15 @@ @interface SDLSubscribeWayPointsResponse : SDLRPCResponse
+
+@end
+
+
+ class SDLSubscribeWayPointsResponse : SDLRPCResponse
+
@@ -4112,6 +6575,15 @@ @interface SDLSyncPData : SDLRPCRequest
+
+@end
+
+
+ class SDLSyncPData : SDLRPCRequest
+
@@ -4123,6 +6595,15 @@ @interface SDLSyncPDataResponse : SDLRPCResponse
+
+@end
+
+
+ class SDLSyncPDataResponse : SDLRPCResponse
+
@@ -4158,6 +6639,20 @@ @interface SDLTCPTransport : SDLAbstractTransport {
+ _Nullable CFSocketRef socket;
+}
+
+@property (strong, nonatomic) NSString *hostName;
+@property (strong, nonatomic) NSString *portNumber;
+
+@end
+
+
+ class SDLTCPTransport : SDLAbstractTransport
+
@@ -4217,6 +6712,30 @@ @interface SDLTemperature : SDLRPCStruct
+
+- (instancetype)initWithUnit:(SDLTemperatureUnit)unit value:(float)value;
+
+/**
+ * @abstract Temperature Unit
+ *
+ */
+@property (strong, nonatomic) SDLTemperatureUnit unit;
+
+/**
+ * @abstract Temperature Value in TemperatureUnit specified unit. Range depends on OEM and is not checked by SDL
+ *
+ * FLoat value
+ */
+@property (strong, nonatomic) NSNumber<SDLFloat> *value;
+
+@end
+
+
+ class SDLTemperature : SDLRPCStruct
+
@@ -4294,6 +6813,23 @@ @interface SDLTireStatus : SDLRPCStruct
+
+@property (strong, nonatomic) SDLWarningLightStatus pressureTelltale;
+@property (strong, nonatomic) SDLSingleTireStatus *leftFront;
+@property (strong, nonatomic) SDLSingleTireStatus *rightFront;
+@property (strong, nonatomic) SDLSingleTireStatus *leftRear;
+@property (strong, nonatomic) SDLSingleTireStatus *rightRear;
+@property (strong, nonatomic) SDLSingleTireStatus *innerLeftRear;
+@property (strong, nonatomic) SDLSingleTireStatus *innerRightRear;
+
+@end
+
+
+ class SDLTireStatus : SDLRPCStruct
+
@@ -4306,6 +6842,56 @@ @interface SDLTouch : NSObject
+
+/**
+ * @abstract
+ * Initializes a touch.
+ * @param touchEvent
+ * Incoming touch event from onOnTouchEvent notification.
+ * @return SDLTouch
+ * Instance of SDLTouch.
+ */
+- (instancetype)initWithTouchEvent:(SDLTouchEvent *)touchEvent;
+
+/**
+ * @abstract
+ * Identifier of the touch's finger. Refer to SDLTouchIdentifier for valid
+ * identifiers.
+ */
+@property (nonatomic, assign, readonly) NSInteger identifier;
+
+/**
+ * @abstract
+ * Location of touch point, in the head unit's coordinate system.
+ */
+@property (nonatomic, assign, readonly) CGPoint location;
+
+/**
+ * @abstract
+ * Timestamp in which the touch occured.
+ */
+@property (nonatomic, assign, readonly) NSUInteger timeStamp;
+
+/**
+ * @abstract
+ * Returns whether or not this touch is a first finger.
+ */
+@property (nonatomic, assign, readonly) BOOL isFirstFinger;
+
+/**
+ * @abstract
+ * Returns whether or not this touch is a second finger.
+ */
+@property (nonatomic, assign, readonly) BOOL isSecondFinger;
+
+@end
+
+
+ class SDLTouch : NSObject
+
@@ -4318,6 +6904,18 @@ @interface SDLTouchCoord : SDLRPCStruct
+
+@property (strong, nonatomic) NSNumber<SDLFloat> *x;
+@property (strong, nonatomic) NSNumber<SDLFloat> *y;
+
+@end
+
+
+ class SDLTouchCoord : SDLRPCStruct
+
@@ -4330,6 +6928,42 @@ @interface SDLTouchEvent : SDLRPCStruct
+
+/**
+ A touch's unique identifier. The application can track the current touch events by id.
+ If a touch event has type begin, the id should be added to the set of touches.
+ If a touch event has type end, the id should be removed from the set of touches.
+
+ Mandatory, 0-9
+ */
+@property (strong, nonatomic) NSNumber<SDLInt> *touchEventId;
+
+/**
+ The time that the touch was recorded. This number can the time since the beginning of the session or something else as long as the units are in milliseconds.
+
+ The timestamp is used to determined the rate of change of position of a touch.
+
+ The application also uses the time to verify whether two touches, with different ids, are part of a single action by the user.
+
+ If there is only a single timestamp in this array, it is the same for every coordinate in the coordinates array.
+
+ Mandatory, array size 1-1000, contains <NSNumber> size 0-5000000000
+ */
+@property (strong, nonatomic) NSArray<NSNumber<SDLInt> *> *timeStamp;
+
+/**
+ * Mandatory, array size 1-1000, contains SDLTouchCoord
+ */
+@property (strong, nonatomic) NSArray<SDLTouchCoord *> *coord;
+
+@end
+
+
+ class SDLTouchEvent : SDLRPCStruct
+
@@ -4342,6 +6976,19 @@ @interface SDLTouchEventCapabilities : SDLRPCStruct
+
+@property (strong, nonatomic) NSNumber<SDLBool> *pressAvailable;
+@property (strong, nonatomic) NSNumber<SDLBool> *multiTouchAvailable;
+@property (strong, nonatomic) NSNumber<SDLBool> *doublePressAvailable;
+
+@end
+
+
+ class SDLTouchEventCapabilities : SDLRPCStruct
+
@@ -4354,6 +7001,77 @@ @interface SDLTouchManager : NSObject
+
+/**
+ Notified of processed touches such as pinches, pans, and taps
+ */
+@property (nonatomic, weak, nullable) id<SDLTouchManagerDelegate> touchEventDelegate;
+
+/**
+ * @abstract
+ * Returns all OnTouchEvent notifications as SDLTouch and SDLTouchType objects.
+ */
+@property (copy, nonatomic, nullable) SDLTouchEventHandler touchEventHandler;
+
+/**
+ Distance between two taps on the screen, in the head unit's coordinate system, used for registering double-tap callbacks.
+
+ @note Defaults to 50 px.
+ */
+@property (nonatomic, assign) CGFloat tapDistanceThreshold;
+
+/**
+ * @abstract
+ * Time (in seconds) between tap events to register a double-tap callback.
+ * @remark
+ * Default is 0.4 seconds.
+ */
+@property (nonatomic, assign) CGFloat tapTimeThreshold;
+
+/**
+ * @abstract
+ * Time (in seconds) between movement events to register panning or pinching
+ * callbacks.
+ * @remark
+ * Default is 0.05 seconds.
+ */
+@property (nonatomic, assign) CGFloat movementTimeThreshold;
+
+/**
+ * @abstract
+ * Boolean denoting whether or not the touch manager should deliver touch event
+ * callbacks.
+ * @remark
+ * Default is true.
+ */
+@property (nonatomic, assign, getter=isTouchEnabled) BOOL touchEnabled;
+
+/**
+ * @abstract
+ * Cancels pending touch event timers that may be in progress.
+ * @remark
+ * Currently only impacts the timer used to register single taps.
+ */
+- (void)cancelPendingTouches;
+
+- (instancetype)init NS_UNAVAILABLE;
+
+/**
+ Initialize a touch manager with a hit tester if available
+
+ @param hitTester The hit tester to be used to correlate a point with a view
+ @return The initialized touch manager
+ */
+- (instancetype)initWithHitTester:(nullable id<SDLHapticHitTester>)hitTester;
+
+@end
+
+
+ class SDLTouchManager : NSObject
+
@@ -4366,6 +7084,20 @@ @interface SDLTurn : SDLRPCStruct
+
+- (instancetype)initWithNavigationText:(nullable NSString *)navigationText turnIcon:(nullable SDLImage *)icon;
+
+@property (strong, nonatomic, nullable) NSString *navigationText;
+@property (strong, nonatomic, nullable) SDLImage *turnIcon;
+
+@end
+
+
+ class SDLTurn : SDLRPCStruct
+
@@ -4525,6 +7257,15 @@ @interface SDLUnsubscribeWayPoints : SDLRPCRequest
+
+@end
+
+
+ class SDLUnsubscribeWayPoints : SDLRPCRequest
+
@@ -4536,6 +7277,15 @@ @interface SDLUnsubscribeWayPointsResponse : SDLRPCResponse
+
+@end
+
+
+ class SDLUnsubscribeWayPointsResponse : SDLRPCResponse
+
@@ -4595,6 +7345,18 @@ @interface SDLVehicleDataResult : SDLRPCStruct
+
+@property (strong, nonatomic) SDLVehicleDataType dataType;
+@property (strong, nonatomic) SDLVehicleDataResultCode resultCode;
+
+@end
+
+
+ class SDLVehicleDataResult : SDLRPCStruct
+
@@ -4628,6 +7390,41 @@ @interface SDLVideoStreamingCapability : SDLRPCStruct
+
+- (instancetype)initWithPreferredResolution:(nullable SDLImageResolution *)preferredResolution maxBitrate:(int32_t)maxBitrate supportedFormats:(nullable NSArray<SDLVideoStreamingFormat *> *)supportedFormats hapticDataSupported:(BOOL)hapticDataSupported;
+
+/**
+ * @abstract The preferred resolution of a video stream for decoding and rendering on HMI, optional
+ */
+@property (nullable, strong, nonatomic) SDLImageResolution *preferredResolution;
+
+/**
+ * @abstract The maximum bitrate of video stream that is supported, in kbps, optional
+ *
+ * minvalue= 0
+ *
+ * maxvalue= 2147483647
+ */
+@property (nullable, strong, nonatomic) NSNumber<SDLInt> *maxBitrate;
+
+/**
+ * @abstract Detailed information on each format supported by this system, in its preferred order, optional
+ */
+@property (nullable, strong, nonatomic) NSArray<SDLVideoStreamingFormat *> *supportedFormats;
+
+/**
+ True if the system can utilize the haptic spatial data from the source being streamed.
+ */
+@property (nullable, strong, nonatomic) NSNumber<SDLBool> *hapticSpatialDataSupported;
+
+@end
+
+
+ class SDLVideoStreamingCapability : SDLRPCStruct
+
@@ -4640,6 +7437,27 @@ @interface SDLVideoStreamingFormat : SDLRPCStruct
+
+/**
+ * @abstract Protocol type, see VideoStreamingProtocol, mandatory
+ */
+@property (strong, nonatomic) SDLVideoStreamingProtocol protocol;
+
+/**
+ * @abstract Codec type, see VideoStreamingCodec, mandatory
+ */
+@property (strong, nonatomic) SDLVideoStreamingCodec codec;
+
+- (instancetype)initWithCodec:(SDLVideoStreamingCodec)codec protocol:(SDLVideoStreamingProtocol)protocol;
+
+@end
+
+
+ class SDLVideoStreamingFormat : SDLRPCStruct
+
@@ -4652,6 +7470,23 @@ @interface SDLVRHelpItem : SDLRPCStruct
+
+- (instancetype)initWithText:(NSString *)text image:(nullable SDLImage *)image;
+
+- (instancetype)initWithText:(NSString *)text image:(nullable SDLImage *)image position:(UInt8)position;
+
+@property (strong, nonatomic) NSString *text;
+@property (strong, nonatomic, nullable) SDLImage *image;
+@property (strong, nonatomic) NSNumber<SDLInt> *position;
+
+@end
+
+
+ class SDLVRHelpItem : SDLRPCStruct
+
diff --git a/docs/Classes/SDLAbstractProtocol.html b/docs/Classes/SDLAbstractProtocol.html
index 368e6683b..23103f8d2 100644
--- a/docs/Classes/SDLAbstractProtocol.html
+++ b/docs/Classes/SDLAbstractProtocol.html
@@ -32,6 +32,13 @@ @property (strong, nonatomic) NSString *debugConsoleGroupName
+
+
+ var debugConsoleGroupName: String { get set }
+
@@ -43,6 +50,13 @@ @property (nullable, weak, nonatomic) SDLAbstractTransport *transport
+
+
+ weak var transport: SDLAbstractTransport? { get set }
+
@@ -54,6 +68,13 @@ @property (nullable, strong, nonatomic) NSHashTable<id<SDLProtocolListener>> *protocolDelegateTable
+
+
+ var protocolDelegateTable: NSHashTable<SDLProtocolListener>? { get set }
+
@@ -65,6 +86,13 @@ @property (nullable, nonatomic, strong) id<SDLSecurityType> securityManager
+
+
+ var securityManager: SDLSecurityType? { get set }
+
@@ -76,6 +104,13 @@ @property (nonatomic, copy) NSString *appId
+
+
+ var appId: String { get set }
+
@@ -87,6 +122,13 @@ - (void)startServiceWithType:(SDLServiceType)serviceType payload:(nullable NSData *)payload;
+
+
+ func startService(with serviceType: SDLServiceType, payload: Data?)
+
@@ -98,6 +140,13 @@ - (void)startSecureServiceWithType:(SDLServiceType)serviceType payload:(nullable NSData *)payload completionHandler:(void (^)(BOOL success, NSError *error))completionHandler;
+
+
+ func startSecureService(with serviceType: SDLServiceType, payload: Data?, completionHandler: @escaping (Bool, Error) -> Void)
+
@@ -109,6 +158,13 @@ - (void)endServiceWithType:(SDLServiceType)serviceType;
+
+
+ func endService(with serviceType: SDLServiceType)
+
@@ -120,6 +176,13 @@ - (void)sendRPC:(SDLRPCMessage *)message;
+
+
+ func sendRPC(_ message: SDLRPCMessage)
+
@@ -131,6 +194,13 @@ - (BOOL)sendRPC:(SDLRPCMessage *)message encrypted:(BOOL)encryption error:(NSError **)error;
+
+
+ func sendRPC(_ message: SDLRPCMessage, encrypted encryption: Bool) throws
+
@@ -142,6 +212,13 @@ - (void)sendRawData:(NSData *)data withServiceType:(SDLServiceType)serviceType;
+
+
+ func sendRawData(_ data: Data, with serviceType: SDLServiceType)
+
@@ -153,6 +230,13 @@ - (void)sendEncryptedRawData:(NSData *)data onService:(SDLServiceType)serviceType;
+
+
+ func sendEncryptedRawData(_ data: Data, on serviceType: SDLServiceType)
+
@@ -164,6 +248,13 @@ - (void)handleBytesFromTransport:(NSData *)receivedData;
+
+
+ func handleBytes(fromTransport receivedData: Data)
+
diff --git a/docs/Classes/SDLAbstractTransport.html b/docs/Classes/SDLAbstractTransport.html
index 8f4da4575..7d1b453da 100644
--- a/docs/Classes/SDLAbstractTransport.html
+++ b/docs/Classes/SDLAbstractTransport.html
@@ -25,6 +25,13 @@ @property (nullable, weak, nonatomic) id<SDLTransportDelegate> delegate
+
+
+ weak var delegate: SDLTransportDelegate? { get set }
+
@@ -36,6 +43,13 @@ @property (strong, nonatomic) NSString *debugConsoleGroupName
+
+
+ var debugConsoleGroupName: String { get set }
+
@@ -47,6 +61,13 @@ - (void)connect;
+
+
+ func connect()
+
@@ -58,6 +79,13 @@ - (void)disconnect;
+
+
+ func disconnect()
+
@@ -69,6 +97,13 @@ - (void)sendData:(NSData *)dataToSend;
+
+
+ func send(_ dataToSend: Data)
+
@@ -80,6 +115,13 @@ - (double)retryDelay;
+
+
+ func retryDelay() -> Double
+
diff --git a/docs/Classes/SDLAddCommand.html b/docs/Classes/SDLAddCommand.html
index 24ded1c16..f5cfe81ad 100644
--- a/docs/Classes/SDLAddCommand.html
+++ b/docs/Classes/SDLAddCommand.html
@@ -81,9 +81,12 @@ @interface SDLAddCommand : SDLRPCRequest
+ - (instancetype)initWithId:(UInt32)commandId vrCommands:(nullable NSArray<NSString *> *)vrCommands handler:(nullable SDLRPCCommandNotificationHandler)handler;
+ init(id commandId: UInt32, vrCommands: [String]?, handler: SDLRPCCommandNotificationHandler? = nil)
+
@@ -96,9 +99,12 @@ @interface SDLAddCommand : SDLRPCRequest
+ - (instancetype)initWithId:(UInt32)commandId vrCommands:(nullable NSArray<NSString *> *)vrCommands menuName:(NSString *)menuName handler:(SDLRPCCommandNotificationHandler)handler;
+ init(id commandId: UInt32, vrCommands: [String]?, menuName: String, handler: @escaping SDLRPCCommandNotificationHandler)
+
@@ -111,9 +117,12 @@ @interface SDLAddCommand : SDLRPCRequest
+ - (instancetype)initWithId:(UInt32)commandId vrCommands:(nullable NSArray<NSString *> *)vrCommands menuName:(NSString *)menuName parentId:(UInt32)parentId position:(UInt16)position iconValue:(NSString *)iconValue iconType:(SDLImageType)iconType handler:(nullable SDLRPCCommandNotificationHandler)handler;
+ init(id commandId: UInt32, vrCommands: [String]?, menuName: String, parentId: UInt32, position: UInt16, iconValue: String, iconType: SDLImageType, handler: SDLRPCCommandNotificationHandler? = nil)
+
@@ -158,7 +167,7 @@ var cmdID: NSNumber
+ var cmdID: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLAddSubMenu.html b/docs/Classes/SDLAddSubMenu.html
index 827765439..4820d2e4f 100644
--- a/docs/Classes/SDLAddSubMenu.html
+++ b/docs/Classes/SDLAddSubMenu.html
@@ -35,9 +35,12 @@ @interface SDLAddSubMenu : SDLRPCRequest
+ - (instancetype)initWithId:(UInt32)menuId menuName:(NSString *)menuName;
+ init(id menuId: UInt32, menuName: String)
+
@@ -50,9 +53,12 @@ @interface SDLAddSubMenu : SDLRPCRequest
+ - (instancetype)initWithId:(UInt32)menuId menuName:(NSString *)menuName position:(UInt8)position;
+ init(id menuId: UInt32, menuName: String, position: UInt8)
+
@@ -72,7 +78,7 @@ var menuID: NSNumber
+ var menuID: NSNumber & SDLInt { get set }
@@ -105,7 +111,7 @@ var position: (NSNumber
+ var position: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLAirbagStatus.html b/docs/Classes/SDLAirbagStatus.html
index e4d2253ca..dc416800a 100644
--- a/docs/Classes/SDLAirbagStatus.html
+++ b/docs/Classes/SDLAirbagStatus.html
@@ -27,6 +27,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus driverAirbagDeployed
+
+
+ var driverAirbagDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -38,6 +45,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus driverSideAirbagDeployed
+
+
+ var driverSideAirbagDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -49,6 +63,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus driverCurtainAirbagDeployed
+
+
+ var driverCurtainAirbagDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -60,6 +81,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus passengerAirbagDeployed
+
+
+ var passengerAirbagDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -71,6 +99,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus passengerCurtainAirbagDeployed
+
+
+ var passengerCurtainAirbagDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -82,6 +117,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus driverKneeAirbagDeployed
+
+
+ var driverKneeAirbagDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -93,6 +135,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus passengerSideAirbagDeployed
+
+
+ var passengerSideAirbagDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -104,6 +153,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus passengerKneeAirbagDeployed
+
+
+ var passengerKneeAirbagDeployed: SDLVehicleDataEventStatus { get set }
+
diff --git a/docs/Classes/SDLAlert.html b/docs/Classes/SDLAlert.html
index c958e5649..936c9bc19 100644
--- a/docs/Classes/SDLAlert.html
+++ b/docs/Classes/SDLAlert.html
@@ -63,9 +63,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithAlertText1:(nullable NSString *)alertText1 alertText2:(nullable NSString *)alertText2 duration:(UInt16)duration;
+ init(alertText1: String?, alertText2: String?, duration: UInt16)
+
@@ -78,9 +81,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithAlertText1:(nullable NSString *)alertText1 alertText2:(nullable NSString *)alertText2 alertText3:(nullable NSString *)alertText3;
+ init(alertText1: String?, alertText2: String?, alertText3: String?)
+
@@ -93,9 +99,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithAlertText1:(nullable NSString *)alertText1 alertText2:(nullable NSString *)alertText2 alertText3:(nullable NSString *)alertText3 duration:(UInt16)duration;
+ init(alertText1: String?, alertText2: String?, alertText3: String?, duration: UInt16)
+
@@ -108,9 +117,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithAlertText1:(nullable NSString *)alertText1 alertText2:(nullable NSString *)alertText2 alertText3:(nullable NSString *)alertText3 duration:(UInt16)duration softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
+ init(alertText1: String?, alertText2: String?, alertText3: String?, duration: UInt16, softButtons: [SDLSoftButton]?)
+
@@ -123,9 +135,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithTTS:(nullable NSString *)ttsText playTone:(BOOL)playTone;
+ init(tts ttsText: String?, playTone: Bool)
+
@@ -138,9 +153,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithTTS:(nullable NSString *)ttsText alertText1:(nullable NSString *)alertText1 alertText2:(nullable NSString *)alertText2 playTone:(BOOL)playTone duration:(UInt16)duration;
+ init(tts ttsText: String?, alertText1: String?, alertText2: String?, playTone: Bool, duration: UInt16)
+
@@ -153,9 +171,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithTTS:(nullable NSString *)ttsText alertText1:(nullable NSString *)alertText1 alertText2:(nullable NSString *)alertText2 alertText3:(nullable NSString *)alertText3 playTone:(BOOL)playTone duration:(UInt16)duration;
+ init(tts ttsText: String?, alertText1: String?, alertText2: String?, alertText3: String?, playTone: Bool, duration: UInt16)
+
@@ -168,9 +189,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithTTSChunks:(nullable NSArray<SDLTTSChunk *> *)ttsChunks playTone:(BOOL)playTone;
+ init(ttsChunks: [SDLTTSChunk]?, playTone: Bool)
+
@@ -183,9 +207,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithTTSChunks:(nullable NSArray<SDLTTSChunk *> *)ttsChunks alertText1:(nullable NSString *)alertText1 alertText2:(nullable NSString *)alertText2 alertText3:(nullable NSString *)alertText3 playTone:(BOOL)playTone softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
+ init(ttsChunks: [SDLTTSChunk]?, alertText1: String?, alertText2: String?, alertText3: String?, playTone: Bool, softButtons: [SDLSoftButton]?)
+
@@ -198,9 +225,12 @@ @interface SDLAlert : SDLRPCRequest
+ - (instancetype)initWithTTSChunks:(nullable NSArray<SDLTTSChunk *> *)ttsChunks alertText1:(nullable NSString *)alertText1 alertText2:(nullable NSString *)alertText2 alertText3:(nullable NSString *)alertText3 playTone:(BOOL)playTone duration:(UInt16)duration softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
+ init(ttsChunks: [SDLTTSChunk]?, alertText1: String?, alertText2: String?, alertText3: String?, playTone: Bool, duration: UInt16, softButtons: [SDLSoftButton]?)
+
@@ -332,7 +362,7 @@ var duration: (NSNumber
+ var duration: (NSNumber & SDLInt)? { get set }
@@ -354,7 +384,7 @@ var playTone: (NSNumber
+ var playTone: (NSNumber & SDLBool)? { get set }
@@ -377,7 +407,7 @@ var progressIndicator: (NSNumber
+ var progressIndicator: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLAlertManeuver.html b/docs/Classes/SDLAlertManeuver.html
index a12497161..eabd681a5 100644
--- a/docs/Classes/SDLAlertManeuver.html
+++ b/docs/Classes/SDLAlertManeuver.html
@@ -24,9 +24,12 @@ @interface SDLAlertManeuver : SDLRPCRequest
+ - (instancetype)initWithTTS:(nullable NSString *)ttsText softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
+ init(tts ttsText: String?, softButtons: [SDLSoftButton]?)
+
@@ -39,9 +42,12 @@ @interface SDLAlertManeuver : SDLRPCRequest
+ - (instancetype)initWithTTSChunks:(nullable NSArray<SDLTTSChunk *> *)ttsChunks softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
+ init(ttsChunks: [SDLTTSChunk]?, softButtons: [SDLSoftButton]?)
+
@@ -54,9 +60,12 @@ @interface SDLAlertManeuver : SDLRPCRequest
+ @property (nullable, strong, nonatomic) NSArray<SDLTTSChunk *> *ttsChunks
+ var ttsChunks: [SDLTTSChunk]? { get set }
+
@@ -69,9 +78,12 @@ @interface SDLAlertManeuver : SDLRPCRequest
+ @property (nullable, strong, nonatomic) NSArray<SDLSoftButton *> *softButtons
+ var softButtons: [SDLSoftButton]? { get set }
+
diff --git a/docs/Classes/SDLAlertResponse.html b/docs/Classes/SDLAlertResponse.html
index 93a080621..4a7a75d86 100644
--- a/docs/Classes/SDLAlertResponse.html
+++ b/docs/Classes/SDLAlertResponse.html
@@ -22,9 +22,12 @@ @interface SDLAlertResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) NSNumber<SDLInt> *tryAgainTime
+ var tryAgainTime: (NSNumber & SDLInt)? { get set }
+
diff --git a/docs/Classes/SDLAppInfo.html b/docs/Classes/SDLAppInfo.html
index c7047535a..aaeeeb2b0 100644
--- a/docs/Classes/SDLAppInfo.html
+++ b/docs/Classes/SDLAppInfo.html
@@ -23,6 +23,13 @@ + (instancetype)currentAppInfo;
+
+
+ class func current() -> Self
+
@@ -34,6 +41,13 @@ @property (strong, nonatomic) NSString *appDisplayName
+
+
+ var appDisplayName: String { get set }
+
@@ -45,6 +59,13 @@ @property (strong, nonatomic) NSString *appBundleID
+
+
+ var appBundleID: String { get set }
+
@@ -56,6 +77,13 @@ @property (strong, nonatomic) NSString *appVersion
+
+
+ var appVersion: String { get set }
+
diff --git a/docs/Classes/SDLBeltStatus.html b/docs/Classes/SDLBeltStatus.html
index 72996b103..a195160e5 100644
--- a/docs/Classes/SDLBeltStatus.html
+++ b/docs/Classes/SDLBeltStatus.html
@@ -34,6 +34,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus driverBeltDeployed
+
+
+ var driverBeltDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -45,6 +52,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus passengerBeltDeployed
+
+
+ var passengerBeltDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -56,6 +70,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus passengerBuckleBelted
+
+
+ var passengerBuckleBelted: SDLVehicleDataEventStatus { get set }
+
@@ -67,6 +88,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus driverBuckleBelted
+
+
+ var driverBuckleBelted: SDLVehicleDataEventStatus { get set }
+
@@ -78,6 +106,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus leftRow2BuckleBelted
+
+
+ var leftRow2BuckleBelted: SDLVehicleDataEventStatus { get set }
+
@@ -89,6 +124,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus passengerChildDetected
+
+
+ var passengerChildDetected: SDLVehicleDataEventStatus { get set }
+
@@ -100,6 +142,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus rightRow2BuckleBelted
+
+
+ var rightRow2BuckleBelted: SDLVehicleDataEventStatus { get set }
+
@@ -111,6 +160,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus middleRow2BuckleBelted
+
+
+ var middleRow2BuckleBelted: SDLVehicleDataEventStatus { get set }
+
@@ -122,6 +178,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus middleRow3BuckleBelted
+
+
+ var middleRow3BuckleBelted: SDLVehicleDataEventStatus { get set }
+
@@ -133,6 +196,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus leftRow3BuckleBelted
+
+
+ var leftRow3BuckleBelted: SDLVehicleDataEventStatus { get set }
+
@@ -144,6 +214,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus rightRow3BuckleBelted
+
+
+ var rightRow3BuckleBelted: SDLVehicleDataEventStatus { get set }
+
@@ -155,6 +232,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus leftRearInflatableBelted
+
+
+ var leftRearInflatableBelted: SDLVehicleDataEventStatus { get set }
+
@@ -166,6 +250,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus rightRearInflatableBelted
+
+
+ var rightRearInflatableBelted: SDLVehicleDataEventStatus { get set }
+
@@ -177,6 +268,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus middleRow1BeltDeployed
+
+
+ var middleRow1BeltDeployed: SDLVehicleDataEventStatus { get set }
+
@@ -188,6 +286,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus middleRow1BuckleBelted
+
+
+ var middleRow1BuckleBelted: SDLVehicleDataEventStatus { get set }
+
diff --git a/docs/Classes/SDLBodyInformation.html b/docs/Classes/SDLBodyInformation.html
index b22144921..a689627e5 100644
--- a/docs/Classes/SDLBodyInformation.html
+++ b/docs/Classes/SDLBodyInformation.html
@@ -32,7 +32,7 @@ var parkBrakeActive: NSNumber
+ var parkBrakeActive: NSNumber & SDLBool { get set }
@@ -89,7 +89,7 @@ var driverDoorAjar: (NSNumber
+ var driverDoorAjar: (NSNumber & SDLBool)? { get set }
@@ -108,7 +108,7 @@ var passengerDoorAjar: (NSNumber
+ var passengerDoorAjar: (NSNumber & SDLBool)? { get set }
@@ -127,7 +127,7 @@ var rearLeftDoorAjar: (NSNumber
+ var rearLeftDoorAjar: (NSNumber & SDLBool)? { get set }
@@ -146,7 +146,7 @@ var rearRightDoorAjar: (NSNumber
+ var rearRightDoorAjar: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLButtonCapabilities.html b/docs/Classes/SDLButtonCapabilities.html
index a4c906ca2..a85732101 100644
--- a/docs/Classes/SDLButtonCapabilities.html
+++ b/docs/Classes/SDLButtonCapabilities.html
@@ -51,7 +51,7 @@ var shortPressAvailable: NSNumber
+ var shortPressAvailable: NSNumber & SDLBool { get set }
@@ -72,7 +72,7 @@ var longPressAvailable: NSNumber
+ var longPressAvailable: NSNumber & SDLBool { get set }
@@ -93,7 +93,7 @@ var upDownAvailable: NSNumber
+ var upDownAvailable: NSNumber & SDLBool { get set }
diff --git a/docs/Classes/SDLButtonPress.html b/docs/Classes/SDLButtonPress.html
index e4f5e0158..a2445aa08 100644
--- a/docs/Classes/SDLButtonPress.html
+++ b/docs/Classes/SDLButtonPress.html
@@ -24,9 +24,12 @@ @interface SDLButtonPress : SDLRPCRequest
+ - (instancetype)initWithButtonName:(SDLButtonName)buttonName moduleType:(SDLModuleType) moduleType;
+ init(buttonName: SDLButtonName, moduleType: SDLModuleType)
+
diff --git a/docs/Classes/SDLChangeRegistration.html b/docs/Classes/SDLChangeRegistration.html
index 8f454547b..d7d67ad53 100644
--- a/docs/Classes/SDLChangeRegistration.html
+++ b/docs/Classes/SDLChangeRegistration.html
@@ -32,9 +32,12 @@ @interface SDLChangeRegistration : SDLRPCRequest
+ - (instancetype)initWithLanguage:(SDLLanguage)language hmiDisplayLanguage:(SDLLanguage)hmiDisplayLanguage;
+ init(language: SDLLanguage, hmiDisplayLanguage: SDLLanguage)
+
@@ -47,9 +50,12 @@ @interface SDLChangeRegistration : SDLRPCRequest
+ - (instancetype)initWithLanguage:(SDLLanguage)language hmiDisplayLanguage:(SDLLanguage)hmiDisplayLanguage appName:(nullable NSString *)appName ttsName:(nullable NSArray<SDLTTSChunk *> *)ttsName ngnMediaScreenAppName:(nullable NSString *)ngnMediaScreenAppName vrSynonyms:(nullable NSArray<NSString *> *)vrSynonyms;
+ init(language: SDLLanguage, hmiDisplayLanguage: SDLLanguage, appName: String?, ttsName: [SDLTTSChunk]?, ngnMediaScreenAppName: String?, vrSynonyms: [String]?)
+
diff --git a/docs/Classes/SDLChoice.html b/docs/Classes/SDLChoice.html
index 2293a9c8a..1bc632033 100644
--- a/docs/Classes/SDLChoice.html
+++ b/docs/Classes/SDLChoice.html
@@ -70,9 +70,12 @@ @interface SDLChoice : SDLRPCStruct
+ - (instancetype)initWithId:(UInt16)choiceId menuName:(NSString *)menuName vrCommands:(NSArray<NSString *> *)vrCommands;
+ init(id choiceId: UInt16, menuName: String, vrCommands: [String])
+
@@ -85,9 +88,12 @@ @interface SDLChoice : SDLRPCStruct
+ - (instancetype)initWithId:(UInt16)choiceId menuName:(NSString *)menuName vrCommands:(NSArray<NSString *> *)vrCommands image:(nullable SDLImage *)image secondaryText:(nullable NSString *)secondaryText secondaryImage:(nullable SDLImage *)secondaryImage tertiaryText:(nullable NSString *)tertiaryText;
+ init(id choiceId: UInt16, menuName: String, vrCommands: [String], image: SDLImage?, secondaryText: String?, secondaryImage: SDLImage?, tertiaryText: String?)
+
@@ -106,7 +112,7 @@ var choiceID: NSNumber
+ var choiceID: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLClimateControlCapabilities.html b/docs/Classes/SDLClimateControlCapabilities.html
index d3fc527b6..5d902234e 100644
--- a/docs/Classes/SDLClimateControlCapabilities.html
+++ b/docs/Classes/SDLClimateControlCapabilities.html
@@ -33,9 +33,12 @@ @interface SDLClimateControlCapabilities : SDLRPCStruct
+ - (instancetype)initWithModuleName:(NSString *)moduleName fanSpeedAvailable:(BOOL)fanSpeedAvailable desiredTemperatureAvailable:(BOOL)desiredTemperatureAvailable acEnableAvailable:(BOOL)acEnableAvailable acMaxEnableAvailable:(BOOL)acMaxEnableAvailable circulateAirAvailable:(BOOL)circulateAirEnableAvailable autoModeEnableAvailable:(BOOL)autoModeEnableAvailable dualModeEnableAvailable:(BOOL)dualModeEnableAvailable defrostZoneAvailable:(BOOL)defrostZoneAvailable ventilationModeAvailable:(BOOL)ventilationModeAvailable;
+ init(moduleName: String, fanSpeedAvailable: Bool, desiredTemperatureAvailable: Bool, acEnableAvailable: Bool, acMaxEnableAvailable: Bool, circulateAirAvailable circulateAirEnableAvailable: Bool, autoModeEnableAvailable: Bool, dualModeEnableAvailable: Bool, defrostZoneAvailable: Bool, ventilationModeAvailable: Bool)
+
@@ -77,7 +80,7 @@ var fanSpeedAvailable: (NSNumber
+ var fanSpeedAvailable: (NSNumber & SDLBool)? { get set }
@@ -99,7 +102,7 @@ var desiredTemperatureAvailable: (NSNumber
+ var desiredTemperatureAvailable: (NSNumber & SDLBool)? { get set }
@@ -121,7 +124,7 @@ var acEnableAvailable: (NSNumber
+ var acEnableAvailable: (NSNumber & SDLBool)? { get set }
@@ -143,7 +146,7 @@ var acMaxEnableAvailable: (NSNumber
+ var acMaxEnableAvailable: (NSNumber & SDLBool)? { get set }
@@ -165,7 +168,7 @@ var circulateAirEnableAvailable: (NSNumber
+ var circulateAirEnableAvailable: (NSNumber & SDLBool)? { get set }
@@ -187,7 +190,7 @@ var autoModeEnableAvailable: (NSNumber
+ var autoModeEnableAvailable: (NSNumber & SDLBool)? { get set }
@@ -209,7 +212,7 @@ var dualModeEnableAvailable: (NSNumber
+ var dualModeEnableAvailable: (NSNumber & SDLBool)? { get set }
@@ -231,7 +234,7 @@ var defrostZoneAvailable: (NSNumber
+ var defrostZoneAvailable: (NSNumber & SDLBool)? { get set }
@@ -274,7 +277,7 @@ var ventilationModeAvailable: (NSNumber
+ var ventilationModeAvailable: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLClimateControlData.html b/docs/Classes/SDLClimateControlData.html
index 855d94857..96eff48b9 100644
--- a/docs/Classes/SDLClimateControlData.html
+++ b/docs/Classes/SDLClimateControlData.html
@@ -30,6 +30,13 @@ - (instancetype)initWithFanSpeed:(nullable NSNumber<SDLInt> *)fanSpeed desiredTemperature:(nullable SDLTemperature *)desiredTemperature acEnable:(nullable NSNumber<SDLBool> *)acEnable circulateAirEnable:(nullable NSNumber<SDLBool> *)circulateAirEnable autoModeEnable:(nullable NSNumber<SDLBool> *)autoModeEnable defrostZone:(nullable SDLDefrostZone)defrostZone dualModeEnable:(nullable NSNumber<SDLBool> *)dualModeEnable acMaxEnable:(nullable NSNumber<SDLBool> *)acMaxEnable ventilationMode:(nullable SDLVentilationMode)ventilationMode;
+
+
+ init(fanSpeed: (NSNumber & SDLInt)?, desiredTemperature: SDLTemperature?, acEnable: (NSNumber & SDLBool)?, circulateAirEnable: (NSNumber & SDLBool)?, autoModeEnable: (NSNumber & SDLBool)?, defrostZone: SDLDefrostZone?, dualModeEnable: (NSNumber & SDLBool)?, acMaxEnable: (NSNumber & SDLBool)?, ventilationMode: SDLVentilationMode?)
+
@@ -48,7 +55,7 @@ var fanSpeed: (NSNumber
+ var fanSpeed: (NSNumber & SDLInt)? { get set }
@@ -115,7 +122,7 @@ var acEnable: (NSNumber
+ var acEnable: (NSNumber & SDLBool)? { get set }
@@ -136,7 +143,7 @@ var circulateAirEnable: (NSNumber
+ var circulateAirEnable: (NSNumber & SDLBool)? { get set }
@@ -157,7 +164,7 @@ var autoModeEnable: (NSNumber
+ var autoModeEnable: (NSNumber & SDLBool)? { get set }
@@ -198,7 +205,7 @@ var dualModeEnable: (NSNumber
+ var dualModeEnable: (NSNumber & SDLBool)? { get set }
@@ -219,7 +226,7 @@ var acMaxEnable: (NSNumber
+ var acMaxEnable: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLClusterModeStatus.html b/docs/Classes/SDLClusterModeStatus.html
index 1ed1b0e28..847730a5f 100644
--- a/docs/Classes/SDLClusterModeStatus.html
+++ b/docs/Classes/SDLClusterModeStatus.html
@@ -23,6 +23,13 @@ @property (strong, nonatomic) NSNumber<SDLBool> *powerModeActive
+
+
+ var powerModeActive: NSNumber & SDLBool { get set }
+
@@ -34,6 +41,13 @@ @property (strong, nonatomic) SDLPowerModeQualificationStatus powerModeQualificationStatus
+
+
+ var powerModeQualificationStatus: SDLPowerModeQualificationStatus { get set }
+
@@ -45,6 +59,13 @@ @property (strong, nonatomic) SDLCarModeStatus carModeStatus
+
+
+ var carModeStatus: SDLCarModeStatus { get set }
+
@@ -56,6 +77,13 @@ @property (strong, nonatomic) SDLPowerModeStatus powerModeStatus
+
+
+ var powerModeStatus: SDLPowerModeStatus { get set }
+
diff --git a/docs/Classes/SDLCreateInteractionChoiceSet.html b/docs/Classes/SDLCreateInteractionChoiceSet.html
index 1e2552799..c88af61ba 100644
--- a/docs/Classes/SDLCreateInteractionChoiceSet.html
+++ b/docs/Classes/SDLCreateInteractionChoiceSet.html
@@ -36,9 +36,12 @@ @interface SDLCreateInteractionChoiceSet : SDLRPCRequest
+ - (instancetype)initWithId:(UInt32)choiceId choiceSet:(NSArray<SDLChoice *> *)choiceSet;
+ init(id choiceId: UInt32, choiceSet: [SDLChoice])
+
@@ -58,7 +61,7 @@ var interactionChoiceSetID: NSNumber
+ var interactionChoiceSetID: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLDIDResult.html b/docs/Classes/SDLDIDResult.html
index 0b2a67e4a..ee81129e7 100644
--- a/docs/Classes/SDLDIDResult.html
+++ b/docs/Classes/SDLDIDResult.html
@@ -22,6 +22,13 @@ @property (strong, nonatomic) SDLVehicleDataResultCode resultCode
+
+
+ var resultCode: SDLVehicleDataResultCode { get set }
+
@@ -33,6 +40,13 @@ @property (strong, nonatomic) NSNumber<SDLInt> *didLocation
+
+
+ var didLocation: NSNumber & SDLInt { get set }
+
@@ -44,6 +58,13 @@ @property (nullable, strong, nonatomic) NSString *data
+
+
+ var data: String? { get set }
+
diff --git a/docs/Classes/SDLDateTime.html b/docs/Classes/SDLDateTime.html
index 2c06a1405..83c6ab4eb 100644
--- a/docs/Classes/SDLDateTime.html
+++ b/docs/Classes/SDLDateTime.html
@@ -32,6 +32,13 @@ - (instancetype)initWithHour:(UInt8)hour minute:(UInt8)minute;
+
+
+ init(hour: UInt8, minute: UInt8)
+
@@ -43,6 +50,13 @@ - (instancetype)initWithHour:(UInt8)hour minute:(UInt8)minute second:(UInt8)second millisecond:(UInt16)millisecond;
+
+
+ init(hour: UInt8, minute: UInt8, second: UInt8, millisecond: UInt16)
+
@@ -54,6 +68,13 @@ - (instancetype)initWithHour:(UInt8)hour minute:(UInt8)minute second:(UInt8)second millisecond:(UInt16)millisecond day:(UInt8)day month:(UInt8)month year:(UInt16)year;
+
+
+ init(hour: UInt8, minute: UInt8, second: UInt8, millisecond: UInt16, day: UInt8, month: UInt8, year: UInt16)
+
@@ -65,6 +86,13 @@ - (instancetype)initWithHour:(UInt8)hour minute:(UInt8)minute second:(UInt8)second millisecond:(UInt16)millisecond day:(UInt8)day month:(UInt8)month year:(UInt16)year timezoneMinuteOffset:(UInt8)timezoneMinuteOffset timezoneHourOffset:(int)timezoneHourOffset;
+
+
+ init(hour: UInt8, minute: UInt8, second: UInt8, millisecond: UInt16, day: UInt8, month: UInt8, year: UInt16, timezoneMinuteOffset: UInt8, timezoneHourOffset: Int32)
+
@@ -83,7 +111,7 @@ @NSCopying var millisecond: NSNumber
+ @NSCopying var millisecond: NSNumber & SDLInt { get set }
@@ -103,7 +131,7 @@ @NSCopying var second: NSNumber
+ @NSCopying var second: NSNumber & SDLInt { get set }
@@ -123,7 +151,7 @@ @NSCopying var minute: NSNumber
+ @NSCopying var minute: NSNumber & SDLInt { get set }
@@ -143,7 +171,7 @@ @NSCopying var hour: NSNumber
+ @NSCopying var hour: NSNumber & SDLInt { get set }
@@ -163,7 +191,7 @@ @NSCopying var day: NSNumber
+ @NSCopying var day: NSNumber & SDLInt { get set }
@@ -183,7 +211,7 @@ @NSCopying var month: NSNumber
+ @NSCopying var month: NSNumber & SDLInt { get set }
@@ -203,7 +231,7 @@ @NSCopying var year: NSNumber
+ @NSCopying var year: NSNumber & SDLInt { get set }
@@ -224,7 +252,7 @@ @NSCopying var timezoneMinuteOffset: NSNumber
+ @NSCopying var timezoneMinuteOffset: NSNumber & SDLInt { get set }
@@ -245,7 +273,7 @@ @NSCopying var timezoneHourOffset: NSNumber
+ @NSCopying var timezoneHourOffset: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLDeleteCommand.html b/docs/Classes/SDLDeleteCommand.html
index 62197d9b9..4b800a001 100644
--- a/docs/Classes/SDLDeleteCommand.html
+++ b/docs/Classes/SDLDeleteCommand.html
@@ -31,9 +31,12 @@ @interface SDLDeleteCommand : SDLRPCRequest
+ - (instancetype)initWithId:(UInt32)commandId;
+ init(id commandId: UInt32)
+
@@ -53,7 +56,7 @@ var cmdID: NSNumber
+ var cmdID: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLDeleteFile.html b/docs/Classes/SDLDeleteFile.html
index 1c5149a6c..ec2374a07 100644
--- a/docs/Classes/SDLDeleteFile.html
+++ b/docs/Classes/SDLDeleteFile.html
@@ -27,9 +27,12 @@ @interface SDLDeleteFile : SDLRPCRequest
+ - (instancetype)initWithFileName:(NSString *)fileName;
+ init(fileName: String)
+
diff --git a/docs/Classes/SDLDeleteFileResponse.html b/docs/Classes/SDLDeleteFileResponse.html
index bd23313b8..3ec421fd6 100644
--- a/docs/Classes/SDLDeleteFileResponse.html
+++ b/docs/Classes/SDLDeleteFileResponse.html
@@ -23,9 +23,12 @@ @interface SDLDeleteFileResponse : SDLRPCResponse
+ @property (strong, nonatomic) NSNumber<SDLInt> *spaceAvailable
+ var spaceAvailable: NSNumber & SDLInt { get set }
+
diff --git a/docs/Classes/SDLDeleteInteractionChoiceSet.html b/docs/Classes/SDLDeleteInteractionChoiceSet.html
index 8d32fa2fc..cd8adbf79 100644
--- a/docs/Classes/SDLDeleteInteractionChoiceSet.html
+++ b/docs/Classes/SDLDeleteInteractionChoiceSet.html
@@ -33,9 +33,12 @@ @interface SDLDeleteInteractionChoiceSet : SDLRPCRequest
+ - (instancetype)initWithId:(UInt32)choiceId;
+ init(id choiceId: UInt32)
+
@@ -56,7 +59,7 @@ var interactionChoiceSetID: NSNumber
+ var interactionChoiceSetID: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLDeleteSubMenu.html b/docs/Classes/SDLDeleteSubMenu.html
index 031445fd6..ca3893469 100644
--- a/docs/Classes/SDLDeleteSubMenu.html
+++ b/docs/Classes/SDLDeleteSubMenu.html
@@ -31,9 +31,12 @@ @interface SDLDeleteSubMenu : SDLRPCRequest
+ - (instancetype)initWithId:(UInt32)menuId;
+ init(id menuId: UInt32)
+
@@ -51,7 +54,7 @@ var menuID: NSNumber
+ var menuID: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLDeviceInfo.html b/docs/Classes/SDLDeviceInfo.html
index f0d5bc03d..c6fdb7324 100644
--- a/docs/Classes/SDLDeviceInfo.html
+++ b/docs/Classes/SDLDeviceInfo.html
@@ -26,6 +26,13 @@ + (instancetype)currentDevice;
+
+
+ class func currentDevice() -> Self
+
@@ -37,6 +44,13 @@ @property (nullable, strong, nonatomic) NSString *hardware
+
+
+ var hardware: String? { get set }
+
@@ -48,6 +62,13 @@ @property (nullable, strong, nonatomic) NSString *firmwareRev
+
+
+ var firmwareRev: String? { get set }
+
@@ -59,6 +80,13 @@ @property (nullable, strong, nonatomic) NSString *os
+
+
+ var os: String? { get set }
+
@@ -70,6 +98,13 @@ @property (nullable, strong, nonatomic) NSString *osVersion
+
+
+ var osVersion: String? { get set }
+
@@ -81,6 +116,13 @@ @property (nullable, strong, nonatomic) NSString *carrier
+
+
+ var carrier: String? { get set }
+
@@ -92,6 +134,13 @@ @property (nullable, strong, nonatomic) NSNumber<SDLInt> *maxNumberRFCOMMPorts
+
+
+ var maxNumberRFCOMMPorts: (NSNumber & SDLInt)? { get set }
+
diff --git a/docs/Classes/SDLDeviceStatus.html b/docs/Classes/SDLDeviceStatus.html
index cbf569c27..7a0d18d4c 100644
--- a/docs/Classes/SDLDeviceStatus.html
+++ b/docs/Classes/SDLDeviceStatus.html
@@ -125,7 +125,7 @@ var voiceRecOn: NSNumber
+ var voiceRecOn: NSNumber & SDLBool { get set }
@@ -145,7 +145,7 @@ var btIconOn: NSNumber
+ var btIconOn: NSNumber & SDLBool { get set }
@@ -165,7 +165,7 @@ var callActive: NSNumber
+ var callActive: NSNumber & SDLBool { get set }
@@ -186,7 +186,7 @@ var phoneRoaming: NSNumber
+ var phoneRoaming: NSNumber & SDLBool { get set }
@@ -207,7 +207,7 @@ var textMsgAvailable: NSNumber
+ var textMsgAvailable: NSNumber & SDLBool { get set }
@@ -254,7 +254,7 @@ var stereoAudioOutputMuted: NSNumber
+ var stereoAudioOutputMuted: NSNumber & SDLBool { get set }
@@ -275,7 +275,7 @@ var monoAudioOutputMuted: NSNumber
+ var monoAudioOutputMuted: NSNumber & SDLBool { get set }
@@ -348,7 +348,7 @@ var eCallEventActive: NSNumber
+ var eCallEventActive: NSNumber & SDLBool { get set }
diff --git a/docs/Classes/SDLDiagnosticMessage.html b/docs/Classes/SDLDiagnosticMessage.html
index 3d7d40554..7eff21d0a 100644
--- a/docs/Classes/SDLDiagnosticMessage.html
+++ b/docs/Classes/SDLDiagnosticMessage.html
@@ -26,9 +26,12 @@ @interface SDLDiagnosticMessage : SDLRPCRequest
+ - (instancetype)initWithTargetId:(UInt16)targetId length:(UInt16)length data:(NSArray<NSNumber<SDLUInt> *> *)data;
+ init(targetId: UInt16, length: UInt16, data: [NSNumber & SDLUInt])
+
@@ -47,7 +50,7 @@ var targetID: NSNumber
+ var targetID: NSNumber & SDLInt { get set }
@@ -68,7 +71,7 @@ var messageLength: NSNumber
+ var messageLength: NSNumber & SDLInt { get set }
@@ -89,7 +92,7 @@ var messageData: [NSNumber
+ var messageData: [NSNumber & SDLInt] { get set }
diff --git a/docs/Classes/SDLDiagnosticMessageResponse.html b/docs/Classes/SDLDiagnosticMessageResponse.html
index 75346efc2..a5c2eb9d8 100644
--- a/docs/Classes/SDLDiagnosticMessageResponse.html
+++ b/docs/Classes/SDLDiagnosticMessageResponse.html
@@ -25,9 +25,12 @@ @interface SDLDiagnosticMessageResponse : SDLRPCResponse
+ @property (strong, nonatomic) NSArray<NSNumber<SDLInt> *> *messageDataResult
+ var messageDataResult: [NSNumber & SDLInt] { get set }
+
diff --git a/docs/Classes/SDLDialNumber.html b/docs/Classes/SDLDialNumber.html
index 2ad946847..fcc64b134 100644
--- a/docs/Classes/SDLDialNumber.html
+++ b/docs/Classes/SDLDialNumber.html
@@ -24,9 +24,12 @@ @interface SDLDialNumber : SDLRPCRequest
+ - (instancetype)initWithNumber:(NSString *)number;
+ init(number: String)
+
@@ -34,7 +37,7 @@ Up to 40 character string representing the phone number. All characters stripped except for ‘0’-'9’, ’*’, ’#’, ’,’, ’;’, and ’+’
+Up to 40 character string representing the phone number. All characters stripped except for ‘0’-‘9’, ‘*’, ‘#’, ‘,’, ‘;’, and ‘+’
diff --git a/docs/Classes/SDLDisplayCapabilities.html b/docs/Classes/SDLDisplayCapabilities.html index a79a83fb2..6bb57c2fd 100644 --- a/docs/Classes/SDLDisplayCapabilities.html +++ b/docs/Classes/SDLDisplayCapabilities.html @@ -141,7 +141,7 @@var graphicSupported: NSNumber
+ var graphicSupported: NSNumber & SDLBool { get set }
@@ -205,7 +205,7 @@ var numCustomPresetsAvailable: (NSNumber
+ var numCustomPresetsAvailable: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLECallInfo.html b/docs/Classes/SDLECallInfo.html
index f2a1b2405..834cb121c 100644
--- a/docs/Classes/SDLECallInfo.html
+++ b/docs/Classes/SDLECallInfo.html
@@ -22,6 +22,13 @@ @property (strong, nonatomic) SDLVehicleDataNotificationStatus eCallNotificationStatus
+
+
+ var eCallNotificationStatus: SDLVehicleDataNotificationStatus { get set }
+
@@ -33,6 +40,13 @@ @property (strong, nonatomic) SDLVehicleDataNotificationStatus auxECallNotificationStatus
+
+
+ var auxECallNotificationStatus: SDLVehicleDataNotificationStatus { get set }
+
@@ -44,6 +58,13 @@ @property (strong, nonatomic) SDLECallConfirmationStatus eCallConfirmationStatus
+
+
+ var eCallConfirmationStatus: SDLECallConfirmationStatus { get set }
+
diff --git a/docs/Classes/SDLEmergencyEvent.html b/docs/Classes/SDLEmergencyEvent.html
index 4218e7b23..928d28852 100644
--- a/docs/Classes/SDLEmergencyEvent.html
+++ b/docs/Classes/SDLEmergencyEvent.html
@@ -24,6 +24,13 @@ @property (strong, nonatomic) SDLEmergencyEventType emergencyEventType
+
+
+ var emergencyEventType: SDLEmergencyEventType { get set }
+
@@ -35,6 +42,13 @@ @property (strong, nonatomic) SDLFuelCutoffStatus fuelCutoffStatus
+
+
+ var fuelCutoffStatus: SDLFuelCutoffStatus { get set }
+
@@ -46,6 +60,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus rolloverEvent
+
+
+ var rolloverEvent: SDLVehicleDataEventStatus { get set }
+
@@ -57,6 +78,13 @@ @property (strong, nonatomic) NSNumber<SDLInt> *maximumChangeVelocity
+
+
+ var maximumChangeVelocity: NSNumber & SDLInt { get set }
+
@@ -68,6 +96,13 @@ @property (strong, nonatomic) SDLVehicleDataEventStatus multipleEvents
+
+
+ var multipleEvents: SDLVehicleDataEventStatus { get set }
+
diff --git a/docs/Classes/SDLEncodedSyncPData.html b/docs/Classes/SDLEncodedSyncPData.html
index d14e99000..5217f1e05 100644
--- a/docs/Classes/SDLEncodedSyncPData.html
+++ b/docs/Classes/SDLEncodedSyncPData.html
@@ -20,6 +20,13 @@ @property (strong, nonatomic) NSArray<NSString *> *data
+
+
+ var data: [String] { get set }
+
diff --git a/docs/Classes/SDLFile.html b/docs/Classes/SDLFile.html
index c77a5bd74..bd50fb929 100644
--- a/docs/Classes/SDLFile.html
+++ b/docs/Classes/SDLFile.html
@@ -178,6 +178,10 @@ - (instancetype)init NS_UNAVAILABLE;
+
+
diff --git a/docs/Classes/SDLGPSData.html b/docs/Classes/SDLGPSData.html
index 2afb3c951..47e25b850 100644
--- a/docs/Classes/SDLGPSData.html
+++ b/docs/Classes/SDLGPSData.html
@@ -47,7 +47,7 @@ var longitudeDegrees: NSNumber
+ var longitudeDegrees: NSNumber & SDLFloat { get set }
@@ -68,7 +68,7 @@ var latitudeDegrees: NSNumber
+ var latitudeDegrees: NSNumber & SDLFloat { get set }
@@ -88,7 +88,7 @@ var utcYear: NSNumber
+ var utcYear: NSNumber & SDLInt { get set }
@@ -108,7 +108,7 @@ var utcMonth: NSNumber
+ var utcMonth: NSNumber & SDLInt { get set }
@@ -128,7 +128,7 @@ var utcDay: NSNumber
+ var utcDay: NSNumber & SDLInt { get set }
@@ -148,7 +148,7 @@ var utcHours: NSNumber
+ var utcHours: NSNumber & SDLInt { get set }
@@ -168,7 +168,7 @@ var utcMinutes: NSNumber
+ var utcMinutes: NSNumber & SDLInt { get set }
@@ -188,7 +188,7 @@ var utcSeconds: NSNumber
+ var utcSeconds: NSNumber & SDLInt { get set }
@@ -229,7 +229,7 @@ var pdop: NSNumber
+ var pdop: NSNumber & SDLFloat { get set }
@@ -251,7 +251,7 @@ var hdop: NSNumber
+ var hdop: NSNumber & SDLFloat { get set }
@@ -273,7 +273,7 @@ var vdop: NSNumber
+ var vdop: NSNumber & SDLFloat { get set }
@@ -295,7 +295,7 @@ var actual: NSNumber
+ var actual: NSNumber & SDLBool { get set }
@@ -315,7 +315,7 @@ var satellites: NSNumber
+ var satellites: NSNumber & SDLInt { get set }
@@ -355,7 +355,7 @@ var altitude: NSNumber
+ var altitude: NSNumber & SDLFloat { get set }
@@ -377,7 +377,7 @@ var heading: NSNumber
+ var heading: NSNumber & SDLFloat { get set }
@@ -397,7 +397,7 @@ var speed: NSNumber
+ var speed: NSNumber & SDLFloat { get set }
diff --git a/docs/Classes/SDLGetDTCs.html b/docs/Classes/SDLGetDTCs.html
index dc0f63be7..3288d6287 100644
--- a/docs/Classes/SDLGetDTCs.html
+++ b/docs/Classes/SDLGetDTCs.html
@@ -30,9 +30,12 @@ @interface SDLGetDTCs : SDLRPCRequest
+ - (instancetype)initWithECUName:(UInt16)name;
+ init(ecuName name: UInt16)
+
@@ -45,9 +48,12 @@ @interface SDLGetDTCs : SDLRPCRequest
+ - (instancetype)initWithECUName:(UInt16)name mask:(UInt8)mask;
+ init(ecuName name: UInt16, mask: UInt8)
+
@@ -68,7 +74,7 @@ var ecuName: NSNumber
+ var ecuName: NSNumber & SDLInt { get set }
@@ -86,7 +92,7 @@ var dtcMask: (NSNumber
+ var dtcMask: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLGetDTCsResponse.html b/docs/Classes/SDLGetDTCsResponse.html
index f21e93bfc..178b987e8 100644
--- a/docs/Classes/SDLGetDTCsResponse.html
+++ b/docs/Classes/SDLGetDTCsResponse.html
@@ -24,9 +24,12 @@ @interface SDLGetDTCsResponse : SDLRPCResponse
+ @property (strong, nonatomic) NSNumber<SDLInt> *ecuHeader
+ var ecuHeader: NSNumber & SDLInt { get set }
+
@@ -39,9 +42,12 @@ @interface SDLGetDTCsResponse : SDLRPCResponse
+ @property (strong, nonatomic) NSArray<NSString *> *dtc
+ var dtc: [String] { get set }
+
diff --git a/docs/Classes/SDLGetInteriorVehicleData.html b/docs/Classes/SDLGetInteriorVehicleData.html
index 45349f356..04223e9ba 100644
--- a/docs/Classes/SDLGetInteriorVehicleData.html
+++ b/docs/Classes/SDLGetInteriorVehicleData.html
@@ -29,9 +29,12 @@ @interface SDLGetInteriorVehicleData : SDLRPCRequest
+ - (instancetype)initWithModuleType:(SDLModuleType)moduleType;
+ init(moduleType: SDLModuleType)
+
@@ -44,9 +47,12 @@ @interface SDLGetInteriorVehicleData : SDLRPCRequest
+ - (instancetype)initAndSubscribeToModuleType:(SDLModuleType)moduleType;
+ init(andSubscribeToModuleType moduleType: SDLModuleType)
+
@@ -59,9 +65,12 @@ @interface SDLGetInteriorVehicleData : SDLRPCRequest
+ - (instancetype)initAndUnsubscribeToModuleType:(SDLModuleType)moduleType;
+ init(andUnsubscribeToModuleType moduleType: SDLModuleType)
+
@@ -99,7 +108,7 @@ var subscribe: (NSNumber
+ var subscribe: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLGetInteriorVehicleDataResponse.html b/docs/Classes/SDLGetInteriorVehicleDataResponse.html
index 889ac3437..48abdb652 100644
--- a/docs/Classes/SDLGetInteriorVehicleDataResponse.html
+++ b/docs/Classes/SDLGetInteriorVehicleDataResponse.html
@@ -21,6 +21,13 @@ @property (strong, nonatomic) SDLModuleData *moduleData
+
+
+ var moduleData: SDLModuleData { get set }
+
@@ -42,7 +49,7 @@ var isSubscribed: (NSNumber
+ var isSubscribed: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLGetSystemCapability.html b/docs/Classes/SDLGetSystemCapability.html
index 866542a9c..9537b0ef1 100644
--- a/docs/Classes/SDLGetSystemCapability.html
+++ b/docs/Classes/SDLGetSystemCapability.html
@@ -21,6 +21,13 @@ - (instancetype)initWithType:(SDLSystemCapabilityType)type;
+
+
+ init(type: SDLSystemCapabilityType)
+
diff --git a/docs/Classes/SDLGetSystemCapabilityResponse.html b/docs/Classes/SDLGetSystemCapabilityResponse.html
index 51987195f..4f3478316 100644
--- a/docs/Classes/SDLGetSystemCapabilityResponse.html
+++ b/docs/Classes/SDLGetSystemCapabilityResponse.html
@@ -20,6 +20,13 @@ @property (strong, nonatomic) SDLSystemCapability *systemCapability
+
+
+ var systemCapability: SDLSystemCapability { get set }
+
diff --git a/docs/Classes/SDLGetVehicleData.html b/docs/Classes/SDLGetVehicleData.html
index c9e976fae..29455a193 100644
--- a/docs/Classes/SDLGetVehicleData.html
+++ b/docs/Classes/SDLGetVehicleData.html
@@ -54,9 +54,12 @@ @interface SDLGetVehicleData : SDLRPCRequest
+ - (instancetype)initWithAccelerationPedalPosition:(BOOL)accelerationPedalPosition airbagStatus:(BOOL)airbagStatus beltStatus:(BOOL)beltStatus bodyInformation:(BOOL)bodyInformation clusterModeStatus:(BOOL)clusterModeStatus deviceStatus:(BOOL)deviceStatus driverBraking:(BOOL)driverBraking eCallInfo:(BOOL)eCallInfo emergencyEvent:(BOOL)emergencyEvent engineTorque:(BOOL)engineTorque externalTemperature:(BOOL)externalTemperature fuelLevel:(BOOL)fuelLevel fuelLevelState:(BOOL)fuelLevelState gps:(BOOL)gps headLampStatus:(BOOL)headLampStatus instantFuelConsumption:(BOOL)instantFuelConsumption myKey:(BOOL)myKey odometer:(BOOL)odometer prndl:(BOOL)prndl rpm:(BOOL)rpm speed:(BOOL)speed steeringWheelAngle:(BOOL)steeringWheelAngle tirePressure:(BOOL)tirePressure vin:(BOOL)vin wiperStatus:(BOOL)wiperStatus;
+ init(accelerationPedalPosition: Bool, airbagStatus: Bool, beltStatus: Bool, bodyInformation: Bool, clusterModeStatus: Bool, deviceStatus: Bool, driverBraking: Bool, eCallInfo: Bool, emergencyEvent: Bool, engineTorque: Bool, externalTemperature: Bool, fuelLevel: Bool, fuelLevelState: Bool, gps: Bool, headLampStatus: Bool, instantFuelConsumption: Bool, myKey: Bool, odometer: Bool, prndl: Bool, rpm: Bool, speed: Bool, steeringWheelAngle: Bool, tirePressure: Bool, vin: Bool, wiperStatus: Bool)
+
@@ -73,7 +76,7 @@ var gps: (NSNumber
+ var gps: (NSNumber & SDLBool)? { get set }
@@ -91,7 +94,7 @@ var speed: (NSNumber
+ var speed: (NSNumber & SDLBool)? { get set }
@@ -109,7 +112,7 @@ var rpm: (NSNumber
+ var rpm: (NSNumber & SDLBool)? { get set }
@@ -127,7 +130,7 @@ var fuelLevel: (NSNumber
+ var fuelLevel: (NSNumber & SDLBool)? { get set }
@@ -146,7 +149,7 @@ var fuelLevel_State: (NSNumber
+ var fuelLevel_State: (NSNumber & SDLBool)? { get set }
@@ -165,7 +168,7 @@ var instantFuelConsumption: (NSNumber
+ var instantFuelConsumption: (NSNumber & SDLBool)? { get set }
@@ -184,7 +187,7 @@ var externalTemperature: (NSNumber
+ var externalTemperature: (NSNumber & SDLBool)? { get set }
@@ -202,7 +205,7 @@ var vin: (NSNumber
+ var vin: (NSNumber & SDLBool)? { get set }
@@ -220,7 +223,7 @@ var prndl: (NSNumber
+ var prndl: (NSNumber & SDLBool)? { get set }
@@ -239,7 +242,7 @@ var tirePressure: (NSNumber
+ var tirePressure: (NSNumber & SDLBool)? { get set }
@@ -257,7 +260,7 @@ var odometer: (NSNumber
+ var odometer: (NSNumber & SDLBool)? { get set }
@@ -275,7 +278,7 @@ var beltStatus: (NSNumber
+ var beltStatus: (NSNumber & SDLBool)? { get set }
@@ -294,7 +297,7 @@ var bodyInformation: (NSNumber
+ var bodyInformation: (NSNumber & SDLBool)? { get set }
@@ -313,7 +316,7 @@ var deviceStatus: (NSNumber
+ var deviceStatus: (NSNumber & SDLBool)? { get set }
@@ -332,7 +335,7 @@ var driverBraking: (NSNumber
+ var driverBraking: (NSNumber & SDLBool)? { get set }
@@ -351,7 +354,7 @@ var wiperStatus: (NSNumber
+ var wiperStatus: (NSNumber & SDLBool)? { get set }
@@ -370,7 +373,7 @@ var headLampStatus: (NSNumber
+ var headLampStatus: (NSNumber & SDLBool)? { get set }
@@ -389,7 +392,7 @@ var engineTorque: (NSNumber
+ var engineTorque: (NSNumber & SDLBool)? { get set }
@@ -409,7 +412,7 @@ var accPedalPosition: (NSNumber
+ var accPedalPosition: (NSNumber & SDLBool)? { get set }
@@ -429,7 +432,7 @@ var steeringWheelAngle: (NSNumber
+ var steeringWheelAngle: (NSNumber & SDLBool)? { get set }
@@ -443,9 +446,12 @@ @interface SDLGetVehicleData : SDLRPCRequest
+ @property (nullable, strong, nonatomic) NSNumber<SDLBool> *eCallInfo
+ var eCallInfo: (NSNumber & SDLBool)? { get set }
+
@@ -458,9 +464,12 @@ @interface SDLGetVehicleData : SDLRPCRequest
+ @property (nullable, strong, nonatomic) NSNumber<SDLBool> *airbagStatus
+ var airbagStatus: (NSNumber & SDLBool)? { get set }
+
@@ -473,9 +482,12 @@ @interface SDLGetVehicleData : SDLRPCRequest
+ @property (nullable, strong, nonatomic) NSNumber<SDLBool> *emergencyEvent
+ var emergencyEvent: (NSNumber & SDLBool)? { get set }
+
@@ -488,9 +500,12 @@ @interface SDLGetVehicleData : SDLRPCRequest
+ @property (nullable, strong, nonatomic) NSNumber<SDLBool> *clusterModeStatus
+ var clusterModeStatus: (NSNumber & SDLBool)? { get set }
+
@@ -503,9 +518,12 @@ @interface SDLGetVehicleData : SDLRPCRequest
+ @property (nullable, strong, nonatomic) NSNumber<SDLBool> *myKey
+ var myKey: (NSNumber & SDLBool)? { get set }
+
diff --git a/docs/Classes/SDLGetVehicleDataResponse.html b/docs/Classes/SDLGetVehicleDataResponse.html
index af5b59cf3..2d13cd23a 100644
--- a/docs/Classes/SDLGetVehicleDataResponse.html
+++ b/docs/Classes/SDLGetVehicleDataResponse.html
@@ -69,7 +69,7 @@ var speed: (NSNumber
+ var speed: (NSNumber & SDLFloat)? { get set }
@@ -87,7 +87,7 @@ var rpm: (NSNumber
+ var rpm: (NSNumber & SDLInt)? { get set }
@@ -105,7 +105,7 @@ var fuelLevel: (NSNumber
+ var fuelLevel: (NSNumber & SDLFloat)? { get set }
@@ -143,7 +143,7 @@ var instantFuelConsumption: (NSNumber
+ var instantFuelConsumption: (NSNumber & SDLFloat)? { get set }
@@ -162,7 +162,7 @@ var externalTemperature: (NSNumber
+ var externalTemperature: (NSNumber & SDLFloat)? { get set }
@@ -234,7 +234,7 @@ var odometer: (NSNumber
+ var odometer: (NSNumber & SDLInt)? { get set }
@@ -364,7 +364,7 @@ var engineTorque: (NSNumber
+ var engineTorque: (NSNumber & SDLFloat)? { get set }
@@ -383,7 +383,7 @@ var accPedalPosition: (NSNumber
+ var accPedalPosition: (NSNumber & SDLFloat)? { get set }
@@ -402,7 +402,7 @@ var steeringWheelAngle: (NSNumber
+ var steeringWheelAngle: (NSNumber & SDLFloat)? { get set }
@@ -416,9 +416,12 @@ @interface SDLGetVehicleDataResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) SDLECallInfo *eCallInfo
+ var eCallInfo: SDLECallInfo? { get set }
+
@@ -431,9 +434,12 @@ @interface SDLGetVehicleDataResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) SDLAirbagStatus *airbagStatus
+ var airbagStatus: SDLAirbagStatus? { get set }
+
@@ -446,9 +452,12 @@ @interface SDLGetVehicleDataResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) SDLEmergencyEvent *emergencyEvent
+ var emergencyEvent: SDLEmergencyEvent? { get set }
+
@@ -461,9 +470,12 @@ @interface SDLGetVehicleDataResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) SDLClusterModeStatus *clusterModeStatus
+ var clusterModeStatus: SDLClusterModeStatus? { get set }
+
@@ -476,9 +488,12 @@ @interface SDLGetVehicleDataResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) SDLMyKey *myKey
+ var myKey: SDLMyKey? { get set }
+
diff --git a/docs/Classes/SDLGetWaypoints.html b/docs/Classes/SDLGetWaypoints.html
index d57d57f51..96f29ebf8 100644
--- a/docs/Classes/SDLGetWaypoints.html
+++ b/docs/Classes/SDLGetWaypoints.html
@@ -21,6 +21,13 @@ - (instancetype)initWithType:(SDLWayPointType)type;
+
+
+ init(type: SDLWayPointType)
+
diff --git a/docs/Classes/SDLHMICapabilities.html b/docs/Classes/SDLHMICapabilities.html
index 463c683db..e71a00888 100644
--- a/docs/Classes/SDLHMICapabilities.html
+++ b/docs/Classes/SDLHMICapabilities.html
@@ -29,7 +29,7 @@ @NSCopying var navigation: (NSNumber
+ @NSCopying var navigation: (NSNumber & SDLBool)? { get set }
@@ -49,7 +49,7 @@ @NSCopying var phoneCall: (NSNumber
+ @NSCopying var phoneCall: (NSNumber & SDLBool)? { get set }
@@ -70,27 +70,7 @@ @NSCopying var videoStreaming: (NSNumber
-
-
-
-
- Availability of build in video streaming. True: Available, False: Not Available
- -Boolean value. Optional.
- - - -@property (readwrite, copy, nonatomic) NSNumber *videoStreaming;
-
-
- @NSCopying var videoStreaming: NSNumber! { get set }
+ @NSCopying var videoStreaming: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLHapticRect.html b/docs/Classes/SDLHapticRect.html
index fd4c9bcb4..8dd3e6c01 100644
--- a/docs/Classes/SDLHapticRect.html
+++ b/docs/Classes/SDLHapticRect.html
@@ -23,9 +23,12 @@ @interface SDLHapticRect : SDLRPCStruct
+ - (instancetype)initWithId:(UInt32)id rect:(SDLRectangle *)rect;
+ init(id: UInt32, rect: SDLRectangle)
+
@@ -43,7 +46,7 @@ var id: NSNumber
+ var id: NSNumber & SDLUInt { get set }
@@ -57,9 +60,12 @@ @interface SDLHapticRect : SDLRPCStruct
+ @property (strong, nonatomic) SDLRectangle *rect
+ var rect: SDLRectangle { get set }
+
diff --git a/docs/Classes/SDLHeadLampStatus.html b/docs/Classes/SDLHeadLampStatus.html
index 93169f2e6..8adfeee13 100644
--- a/docs/Classes/SDLHeadLampStatus.html
+++ b/docs/Classes/SDLHeadLampStatus.html
@@ -27,7 +27,7 @@ var lowBeamsOn: NSNumber
+ var lowBeamsOn: NSNumber & SDLBool { get set }
@@ -45,7 +45,7 @@ var highBeamsOn: NSNumber
+ var highBeamsOn: NSNumber & SDLBool { get set }
@@ -59,9 +59,12 @@ @interface SDLHeadLampStatus : SDLRPCStruct
+ @property (nullable, strong, nonatomic) SDLAmbientLightStatus ambientLightSensorStatus
+ var ambientLightSensorStatus: SDLAmbientLightStatus? { get set }
+
diff --git a/docs/Classes/SDLIAPTransport.html b/docs/Classes/SDLIAPTransport.html
index c5a3df7a3..6d3d91d8e 100644
--- a/docs/Classes/SDLIAPTransport.html
+++ b/docs/Classes/SDLIAPTransport.html
@@ -21,6 +21,13 @@ @property (nullable, strong, nonatomic) SDLIAPSession *controlSession
+
+
+ var controlSession: SDLIAPSession? { get set }
+
@@ -32,6 +39,13 @@ @property (nullable, strong, nonatomic) SDLIAPSession *session
+
+
+ var session: SDLIAPSession? { get set }
+
diff --git a/docs/Classes/SDLImage.html b/docs/Classes/SDLImage.html
index 10ef8304f..fcbd5678e 100644
--- a/docs/Classes/SDLImage.html
+++ b/docs/Classes/SDLImage.html
@@ -25,9 +25,12 @@ @interface SDLImage : SDLRPCStruct
+ - (instancetype)initWithName:(NSString *)name ofType:(SDLImageType)imageType;
+ init(name: String, ofType imageType: SDLImageType)
+
diff --git a/docs/Classes/SDLImageField.html b/docs/Classes/SDLImageField.html
index 16b195f41..8eb0bb3a1 100644
--- a/docs/Classes/SDLImageField.html
+++ b/docs/Classes/SDLImageField.html
@@ -22,6 +22,13 @@ @property (strong, nonatomic) SDLImageFieldName name
+
+
+ var name: SDLImageFieldName { get set }
+
@@ -33,6 +40,13 @@ @property (strong, nonatomic) NSArray<SDLFileType> *imageTypeSupported
+
+
+ var imageTypeSupported: [SDLFileType] { get set }
+
@@ -44,6 +58,13 @@ @property (nullable, strong, nonatomic) SDLImageResolution *imageResolution
+
+
+ var imageResolution: SDLImageResolution? { get set }
+
diff --git a/docs/Classes/SDLImageResolution.html b/docs/Classes/SDLImageResolution.html
index 014351d2c..8bb258309 100644
--- a/docs/Classes/SDLImageResolution.html
+++ b/docs/Classes/SDLImageResolution.html
@@ -22,6 +22,13 @@ @property (strong, nonatomic) NSNumber<SDLInt> *resolutionWidth
+
+
+ var resolutionWidth: NSNumber & SDLInt { get set }
+
@@ -33,6 +40,13 @@ @property (strong, nonatomic) NSNumber<SDLInt> *resolutionHeight
+
+
+ var resolutionHeight: NSNumber & SDLInt { get set }
+
@@ -44,6 +58,13 @@ - (instancetype)initWithWidth:(uint16_t)width height:(uint16_t)height;
+
+
+ init(width: UInt16, height: UInt16)
+
diff --git a/docs/Classes/SDLKeyboardProperties.html b/docs/Classes/SDLKeyboardProperties.html
index 20b5aa55d..1be323128 100644
--- a/docs/Classes/SDLKeyboardProperties.html
+++ b/docs/Classes/SDLKeyboardProperties.html
@@ -25,6 +25,13 @@ - (instancetype)initWithLanguage:(nullable SDLLanguage)language layout:(nullable SDLKeyboardLayout)layout keypressMode:(nullable SDLKeypressMode)keypressMode limitedCharacterList:(nullable NSArray<NSString *> *)limitedCharacterList autoCompleteText:(nullable NSString *)autoCompleteText;
+
+
+ init(language: SDLLanguage?, layout: SDLKeyboardLayout?, keypressMode: SDLKeypressMode?, limitedCharacterList: [String]?, autoCompleteText: String?)
+
@@ -36,6 +43,13 @@ @property (nullable, strong, nonatomic) SDLLanguage language
+
+
+ var language: SDLLanguage? { get set }
+
@@ -47,6 +61,13 @@ @property (nullable, strong, nonatomic) SDLKeyboardLayout keyboardLayout
+
+
+ var keyboardLayout: SDLKeyboardLayout? { get set }
+
@@ -58,6 +79,13 @@ @property (nullable, strong, nonatomic) SDLKeypressMode keypressMode
+
+
+ var keypressMode: SDLKeypressMode? { get set }
+
@@ -69,6 +97,13 @@ @property (nullable, strong, nonatomic) NSArray<NSString *> *limitedCharacterList
+
+
+ var limitedCharacterList: [String]? { get set }
+
@@ -80,6 +115,13 @@ @property (nullable, strong, nonatomic) NSString *autoCompleteText
+
+
+ var autoCompleteText: String? { get set }
+
diff --git a/docs/Classes/SDLLifecycleConfiguration.html b/docs/Classes/SDLLifecycleConfiguration.html
index 85fe3b465..2b00d74b2 100644
--- a/docs/Classes/SDLLifecycleConfiguration.html
+++ b/docs/Classes/SDLLifecycleConfiguration.html
@@ -37,7 +37,7 @@ @interface SDLLifecycleConfiguration : NSObject <NSCopying>
+ - (instancetype)init NS_UNAVAILABLE;
diff --git a/docs/Classes/SDLListFilesResponse.html b/docs/Classes/SDLListFilesResponse.html
index 44fdfd143..211035d5d 100644
--- a/docs/Classes/SDLListFilesResponse.html
+++ b/docs/Classes/SDLListFilesResponse.html
@@ -24,9 +24,12 @@ @interface SDLListFilesResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) NSArray<NSString *> *filenames
+ var filenames: [String]? { get set }
+
@@ -39,9 +42,12 @@ @interface SDLListFilesResponse : SDLRPCResponse
+ @property (strong, nonatomic) NSNumber<SDLInt> *spaceAvailable
+ var spaceAvailable: NSNumber & SDLInt { get set }
+
diff --git a/docs/Classes/SDLLocationCoordinate.html b/docs/Classes/SDLLocationCoordinate.html
index f55bbc59a..e13bce879 100644
--- a/docs/Classes/SDLLocationCoordinate.html
+++ b/docs/Classes/SDLLocationCoordinate.html
@@ -29,7 +29,7 @@ @NSCopying var latitudeDegrees: NSNumber
+ @NSCopying var latitudeDegrees: NSNumber & SDLFloat { get set }
@@ -50,7 +50,7 @@ @NSCopying var longitudeDegrees: NSNumber
+ @NSCopying var longitudeDegrees: NSNumber & SDLFloat { get set }
diff --git a/docs/Classes/SDLLockScreenConfiguration.html b/docs/Classes/SDLLockScreenConfiguration.html
index 419ea68cb..de86c0616 100644
--- a/docs/Classes/SDLLockScreenConfiguration.html
+++ b/docs/Classes/SDLLockScreenConfiguration.html
@@ -120,6 +120,10 @@ - (instancetype)init NS_UNAVAILABLE;
+
+
diff --git a/docs/Classes/SDLLogFilter.html b/docs/Classes/SDLLogFilter.html
index ed1301fc7..27b89e03b 100644
--- a/docs/Classes/SDLLogFilter.html
+++ b/docs/Classes/SDLLogFilter.html
@@ -30,6 +30,13 @@ @property (strong, nonatomic, readonly) SDLLogFilterBlock filter
+
+
+ var filter: SDLLogFilterBlock { get }
+
@@ -41,6 +48,10 @@ - (instancetype)init NS_UNAVAILABLE;
+
+
diff --git a/docs/Classes/SDLLogManager.html b/docs/Classes/SDLLogManager.html
index afdc013e3..ee4c54b6d 100644
--- a/docs/Classes/SDLLogManager.html
+++ b/docs/Classes/SDLLogManager.html
@@ -38,9 +38,12 @@ @interface SDLLogManager : NSObject
+ @property (copy, nonatomic, readonly) NSSet<SDLLogFileModule *> *modules
+ var modules: Set<AnyHashable> { get }
+
@@ -53,9 +56,12 @@ @interface SDLLogManager : NSObject
+ @property (copy, nonatomic, readonly) NSSet<id<SDLLogTarget>> *targets
+ var targets: Set<AnyHashable> { get }
+
@@ -68,9 +74,12 @@ @interface SDLLogManager : NSObject
+ @property (copy, nonatomic, readonly) NSSet<SDLLogFilter *> *filters
+ var filters: Set<AnyHashable> { get }
+
@@ -101,9 +110,12 @@ @interface SDLLogManager : NSObject
+ @property (assign, nonatomic, readonly) SDLLogFormatType formatType
+ var formatType: SDLLogFormatType { get }
+
@@ -116,9 +128,12 @@ @interface SDLLogManager : NSObject
+ @property (assign, nonatomic, readonly, getter=isAsynchronous) BOOL asynchronous
+ var isAsynchronous: Bool { get }
+
@@ -131,9 +146,12 @@ @interface SDLLogManager : NSObject
+ @property (assign, nonatomic, readonly, getter=areErrorsAsynchronous) BOOL errorsAsynchronous
+ var areErrorsAsynchronous: Bool { get }
+
@@ -146,9 +164,12 @@ @interface SDLLogManager : NSObject
+ @property (class, strong, nonatomic, readonly) NSDateFormatter *dateFormatter
+ class var dateFormatter: DateFormatter { get }
+
@@ -161,9 +182,12 @@ @interface SDLLogManager : NSObject
+ @property (class, assign, nonatomic, readonly) dispatch_queue_t logQueue
+ unowned(unsafe) class var logQueue: DispatchQueue { get }
+
@@ -176,9 +200,12 @@ @interface SDLLogManager : NSObject
+ + (SDLLogManager *)sharedManager;
+ class func shared() -> SDLLogManager
+
diff --git a/docs/Classes/SDLManager.html b/docs/Classes/SDLManager.html
index 2679b734a..cc0f0f061 100644
--- a/docs/Classes/SDLManager.html
+++ b/docs/Classes/SDLManager.html
@@ -197,6 +197,13 @@ @property (strong, nonatomic, readonly, nullable) SDLProxy *proxy
+
+
+ var proxy: SDLProxy? { get }
+
diff --git a/docs/Classes/SDLMenuParams.html b/docs/Classes/SDLMenuParams.html
index cbb93a5d4..1ab4ad9c7 100644
--- a/docs/Classes/SDLMenuParams.html
+++ b/docs/Classes/SDLMenuParams.html
@@ -27,9 +27,12 @@ @interface SDLMenuParams : SDLRPCStruct
+ - (instancetype)initWithMenuName:(NSString *)menuName;
+ init(menuName: String)
+
@@ -42,9 +45,12 @@ @interface SDLMenuParams : SDLRPCStruct
+ - (instancetype)initWithMenuName:(NSString *)menuName parentId:(UInt32)parentId position:(UInt16)position;
+ init(menuName: String, parentId: UInt32, position: UInt16)
+
@@ -64,7 +70,7 @@ var parentID: (NSNumber
+ var parentID: (NSNumber & SDLInt)? { get set }
@@ -92,7 +98,7 @@ var position: (NSNumber
+ var position: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLMetadataTags.html b/docs/Classes/SDLMetadataTags.html
index da1bd1932..0f6f1d2ce 100644
--- a/docs/Classes/SDLMetadataTags.html
+++ b/docs/Classes/SDLMetadataTags.html
@@ -45,6 +45,13 @@ - (instancetype)initWithTextFieldTypes:(nullable NSArray<SDLMetadataType> *)mainField1 mainField2:(nullable NSArray<SDLMetadataType> *)mainField2 mainField3:(nullable NSArray<SDLMetadataType> *)mainField3 mainField4:(nullable NSArray<SDLMetadataType> *)mainField4;
+
+
+ init(textFieldTypes mainField1: [SDLMetadataType]?, mainField2: [SDLMetadataType]?, mainField3: [SDLMetadataType]?, mainField4: [SDLMetadataType]?)
+
diff --git a/docs/Classes/SDLMetadataType.html b/docs/Classes/SDLMetadataType.html
deleted file mode 100644
index c7cd6ec99..000000000
--- a/docs/Classes/SDLMetadataType.html
+++ /dev/null
@@ -1,343 +0,0 @@
-The list of possible metadata for text fields
- -@since SDL 4.7.0
- - -Convert String to SDLTextAlignment
- - - -+ (SDLMetadataType *)valueOf:(NSString *)value;
-
-
- class func value(of value: String!) -> SDLMetadataType!
-
-
-
- The value of the string to get an object for
SDLTextAlignment
-@abstract Store the enumeration of all possible SDLTextFieldType
- - - -+ (NSArray *)values;
-
-
- class func values() -> [Any]!
-
-
-
- an array that store all possible SDLTextFieldType
-@abstract The data in this field contains the title of the currently playing audio track.
- - - -+ (SDLMetadataType *)MEDIA_TITLE;
-
-
- class func media_TITLE() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of MEDIA_TITLE
-@abstract The data in this field contains the artist or creator of the currently playing audio track.
- - - -+ (SDLMetadataType *)MEDIA_ARTIST;
-
-
- class func media_ARTIST() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of MEDIA_ARTIST
-@abstract The data in this field contains the album title of the currently playing audio track.
- - - -+ (SDLMetadataType *)MEDIA_ALBUM;
-
-
- class func media_ALBUM() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of MEDIA_ALBUM
-@abstract The data in this field contains the creation year of the currently playing audio track.
- - - -+ (SDLMetadataType *)MEDIA_YEAR;
-
-
- class func media_YEAR() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of MEDIA_YEAR
-@abstract The data in this field contains the genre of the currently playing audio track.
- - - -+ (SDLMetadataType *)MEDIA_GENRE;
-
-
- class func media_GENRE() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of MEDIA_GENRE
-@abstract The data in this field contains the name of the current source for the media.
- - - -+ (SDLMetadataType *)MEDIA_STATION;
-
-
- class func media_STATION() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of MEDIA_STATION
-@abstract The data in this field is a rating.
- - - -+ (SDLMetadataType *)RATING;
-
-
- class func rating() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of RATING
-@abstract The data in this field is the current temperature.
- - - -+ (SDLMetadataType *)CURRENT_TEMPERATURE;
-
-
- class func current_TEMPERATURE() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of CURRENT_TEMPERATURE
-@abstract The data in this field is the maximum temperature for the day.
- - - -+ (SDLMetadataType *)MAXIMUM_TEMPERATURE;
-
-
- class func maximum_TEMPERATURE() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of MAXIMUM_TEMPERATURE
-@abstract The data in this field is the minimum temperature for the day.
- - - -+ (SDLMetadataType *)MINIMUM_TEMPERATURE;
-
-
- class func minimum_TEMPERATURE() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of MINIMUM_TEMPERATURE
-@abstract The data in this field describes the current weather (ex. cloudy, clear, etc.).
- - - -+ (SDLMetadataType *)WEATHER_TERM;
-
-
- class func weather_TERM() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of WEATHER_TERM
-@abstract The data in this field describes the current humidity value.
- - - -+ (SDLMetadataType *)HUMIDITY;
-
-
- class func humidity() -> SDLMetadataType!
-
-
-
- A SDLTextFieldType object with value of HUMIDITY
-- (instancetype)initWithRadioControlData:(SDLRadioControlData *)radioControlData;
+
+
+ init(radioControlData: SDLRadioControlData)
+
@@ -35,6 +42,13 @@ - (instancetype)initWithClimateControlData:(SDLClimateControlData *)climateControlData;
+
+
+ init(climateControlData: SDLClimateControlData)
+
@@ -66,6 +80,13 @@ @property (nullable, strong, nonatomic) SDLRadioControlData *radioControlData
+
+
+ var radioControlData: SDLRadioControlData? { get set }
+
@@ -77,6 +98,13 @@ @property (nullable, strong, nonatomic) SDLClimateControlData *climateControlData
+
+
+ var climateControlData: SDLClimateControlData? { get set }
+
diff --git a/docs/Classes/SDLMyKey.html b/docs/Classes/SDLMyKey.html
index cc42cd527..0d375343c 100644
--- a/docs/Classes/SDLMyKey.html
+++ b/docs/Classes/SDLMyKey.html
@@ -20,6 +20,13 @@ @property (strong, nonatomic) SDLVehicleDataStatus e911Override
+
+
+ var e911Override: SDLVehicleDataStatus { get set }
+
diff --git a/docs/Classes/SDLNavigationCapability.html b/docs/Classes/SDLNavigationCapability.html
index f699da081..d172246ee 100644
--- a/docs/Classes/SDLNavigationCapability.html
+++ b/docs/Classes/SDLNavigationCapability.html
@@ -22,6 +22,13 @@ - (instancetype)initWithSendLocation:(BOOL)sendLocationEnabled waypoints:(BOOL)waypointsEnabled;
+
+
+ init(sendLocation sendLocationEnabled: Bool, waypoints waypointsEnabled: Bool)
+
diff --git a/docs/Classes/SDLNotificationConstants.html b/docs/Classes/SDLNotificationConstants.html
index a9775207d..d9acafc75 100644
--- a/docs/Classes/SDLNotificationConstants.html
+++ b/docs/Classes/SDLNotificationConstants.html
@@ -21,6 +21,13 @@ + (NSArray<SDLNotificationName> *)allResponseNames;
+
+
+ class func allResponseNames() -> [NSNotification.Name]
+
@@ -32,6 +39,13 @@ + (NSArray<SDLNotificationName> *)allButtonEventNotifications;
+
+
+ class func allButtonEventNotifications() -> [NSNotification.Name]
+
diff --git a/docs/Classes/SDLOasisAddress.html b/docs/Classes/SDLOasisAddress.html
index fd75e532d..484895300 100644
--- a/docs/Classes/SDLOasisAddress.html
+++ b/docs/Classes/SDLOasisAddress.html
@@ -30,6 +30,13 @@ - (instancetype)initWithSubThoroughfare:(nullable NSString *)subThoroughfare thoroughfare:(nullable NSString *)thoroughfare locality:(nullable NSString *)locality administrativeArea:(nullable NSString *)administrativeArea postalCode:(nullable NSString *)postalCode countryCode:(nullable NSString *)countryCode;
+
+
+ init(subThoroughfare: String?, thoroughfare: String?, locality: String?, administrativeArea: String?, postalCode: String?, countryCode: String?)
+
@@ -41,6 +48,13 @@ - (instancetype)initWithSubThoroughfare:(nullable NSString *)subThoroughfare thoroughfare:(nullable NSString *)thoroughfare locality:(nullable NSString *)locality administrativeArea:(nullable NSString *)administrativeArea postalCode:(nullable NSString *)postalCode countryCode:(nullable NSString *)countryCode countryName:(nullable NSString *)countryName subAdministrativeArea:(nullable NSString *)subAdministrativeArea subLocality:(nullable NSString *)subLocality;
+
+
+ init(subThoroughfare: String?, thoroughfare: String?, locality: String?, administrativeArea: String?, postalCode: String?, countryCode: String?, countryName: String?, subAdministrativeArea: String?, subLocality: String?)
+
diff --git a/docs/Classes/SDLOnButtonEvent.html b/docs/Classes/SDLOnButtonEvent.html
index 58f9d9b18..076cc870a 100644
--- a/docs/Classes/SDLOnButtonEvent.html
+++ b/docs/Classes/SDLOnButtonEvent.html
@@ -106,7 +106,7 @@ var customButtonID: (NSNumber
+ var customButtonID: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLOnButtonPress.html b/docs/Classes/SDLOnButtonPress.html
index f96493d4a..a3045a1da 100644
--- a/docs/Classes/SDLOnButtonPress.html
+++ b/docs/Classes/SDLOnButtonPress.html
@@ -129,7 +129,7 @@ var customButtonID: (NSNumber
+ var customButtonID: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLOnCommand.html b/docs/Classes/SDLOnCommand.html
index 44789f0ec..42d0b170b 100644
--- a/docs/Classes/SDLOnCommand.html
+++ b/docs/Classes/SDLOnCommand.html
@@ -36,7 +36,7 @@ var cmdID: NSNumber
+ var cmdID: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLOnEncodedSyncPData.html b/docs/Classes/SDLOnEncodedSyncPData.html
index a27578ff8..b825a8809 100644
--- a/docs/Classes/SDLOnEncodedSyncPData.html
+++ b/docs/Classes/SDLOnEncodedSyncPData.html
@@ -22,6 +22,13 @@ @property (strong, nonatomic) NSArray<NSString *> *data
+
+
+ var data: [String] { get set }
+
@@ -33,6 +40,13 @@ @property (nullable, strong, nonatomic) NSString *URL
+
+
+ var url: String? { get set }
+
@@ -44,6 +58,13 @@ @property (nullable, strong, nonatomic) NSNumber<SDLInt> *Timeout
+
+
+ var timeout: (NSNumber & SDLInt)? { get set }
+
diff --git a/docs/Classes/SDLOnHashChange.html b/docs/Classes/SDLOnHashChange.html
index a5682d414..03c1b3bab 100644
--- a/docs/Classes/SDLOnHashChange.html
+++ b/docs/Classes/SDLOnHashChange.html
@@ -20,6 +20,13 @@ @property (strong, nonatomic) NSString *hashID
+
+
+ var hashID: String { get set }
+
diff --git a/docs/Classes/SDLOnInteriorVehicleData.html b/docs/Classes/SDLOnInteriorVehicleData.html
index 1a66a4e5e..e3718f2af 100644
--- a/docs/Classes/SDLOnInteriorVehicleData.html
+++ b/docs/Classes/SDLOnInteriorVehicleData.html
@@ -20,6 +20,13 @@ @property (strong, nonatomic) SDLModuleData *moduleData
+
+
+ var moduleData: SDLModuleData { get set }
+
diff --git a/docs/Classes/SDLOnKeyboardInput.html b/docs/Classes/SDLOnKeyboardInput.html
index 8a64d5c9d..1034902b7 100644
--- a/docs/Classes/SDLOnKeyboardInput.html
+++ b/docs/Classes/SDLOnKeyboardInput.html
@@ -21,6 +21,13 @@ @property (strong, nonatomic) SDLKeyboardEvent event
+
+
+ var event: SDLKeyboardEvent { get set }
+
@@ -32,6 +39,13 @@ @property (nullable, strong, nonatomic) NSString *data
+
+
+ var data: String? { get set }
+
diff --git a/docs/Classes/SDLOnLockScreenStatus.html b/docs/Classes/SDLOnLockScreenStatus.html
index 96fcfe9a9..3ad625033 100644
--- a/docs/Classes/SDLOnLockScreenStatus.html
+++ b/docs/Classes/SDLOnLockScreenStatus.html
@@ -35,7 +35,7 @@ var driverDistractionStatus: NSNumber
+ var driverDistractionStatus: NSNumber & SDLBool { get set }
@@ -58,7 +58,7 @@ var userSelected: NSNumber
+ var userSelected: NSNumber & SDLBool { get set }
diff --git a/docs/Classes/SDLOnSyncPData.html b/docs/Classes/SDLOnSyncPData.html
index b7a59075e..8fd83ffb0 100644
--- a/docs/Classes/SDLOnSyncPData.html
+++ b/docs/Classes/SDLOnSyncPData.html
@@ -21,6 +21,13 @@ @property (nullable, strong, nonatomic) NSString *URL
+
+
+ var url: String? { get set }
+
@@ -32,6 +39,13 @@ @property (nullable, strong, nonatomic) NSNumber<SDLInt> *Timeout
+
+
+ var timeout: (NSNumber & SDLInt)? { get set }
+
diff --git a/docs/Classes/SDLOnSystemRequest.html b/docs/Classes/SDLOnSystemRequest.html
index 6f4287efd..b2606685c 100644
--- a/docs/Classes/SDLOnSystemRequest.html
+++ b/docs/Classes/SDLOnSystemRequest.html
@@ -25,6 +25,13 @@ @property (strong, nonatomic) SDLRequestType requestType
+
+
+ var requestType: SDLRequestType { get set }
+
@@ -36,6 +43,13 @@ @property (nullable, strong, nonatomic) NSString *url
+
+
+ var url: String? { get set }
+
@@ -47,6 +61,13 @@ @property (nullable, strong, nonatomic) NSNumber<SDLInt> *timeout
+
+
+ var timeout: (NSNumber & SDLInt)? { get set }
+
@@ -58,6 +79,13 @@ @property (nullable, strong, nonatomic) SDLFileType fileType
+
+
+ var fileType: SDLFileType? { get set }
+
@@ -69,6 +97,13 @@ @property (nullable, strong, nonatomic) NSNumber<SDLUInt> *offset
+
+
+ var offset: (NSNumber & SDLUInt)? { get set }
+
@@ -80,6 +115,13 @@ @property (nullable, strong, nonatomic) NSNumber<SDLUInt> *length
+
+
+ var length: (NSNumber & SDLUInt)? { get set }
+
diff --git a/docs/Classes/SDLOnTBTClientState.html b/docs/Classes/SDLOnTBTClientState.html
index 303cc4c8f..e9c409a06 100644
--- a/docs/Classes/SDLOnTBTClientState.html
+++ b/docs/Classes/SDLOnTBTClientState.html
@@ -20,6 +20,13 @@ @property (strong, nonatomic) SDLTBTState state
+
+
+ var state: SDLTBTState { get set }
+
diff --git a/docs/Classes/SDLOnTouchEvent.html b/docs/Classes/SDLOnTouchEvent.html
index 629a1a67e..f6c1b6554 100644
--- a/docs/Classes/SDLOnTouchEvent.html
+++ b/docs/Classes/SDLOnTouchEvent.html
@@ -21,6 +21,13 @@ @property (strong, nonatomic) SDLTouchType type
+
+
+ var type: SDLTouchType { get set }
+
@@ -32,6 +39,13 @@ @property (strong, nonatomic) NSArray<SDLTouchEvent *> *event
+
+
+ var event: [SDLTouchEvent] { get set }
+
diff --git a/docs/Classes/SDLOnVehicleData.html b/docs/Classes/SDLOnVehicleData.html
index 778d44e58..321139974 100644
--- a/docs/Classes/SDLOnVehicleData.html
+++ b/docs/Classes/SDLOnVehicleData.html
@@ -69,7 +69,7 @@ var speed: (NSNumber
+ var speed: (NSNumber & SDLFloat)? { get set }
@@ -87,7 +87,7 @@ var rpm: (NSNumber
+ var rpm: (NSNumber & SDLInt)? { get set }
@@ -105,7 +105,7 @@ var fuelLevel: (NSNumber
+ var fuelLevel: (NSNumber & SDLFloat)? { get set }
@@ -143,7 +143,7 @@ var instantFuelConsumption: (NSNumber
+ var instantFuelConsumption: (NSNumber & SDLFloat)? { get set }
@@ -162,7 +162,7 @@ var externalTemperature: (NSNumber
+ var externalTemperature: (NSNumber & SDLFloat)? { get set }
@@ -234,7 +234,7 @@ var odometer: (NSNumber
+ var odometer: (NSNumber & SDLInt)? { get set }
@@ -364,7 +364,7 @@ var engineTorque: (NSNumber
+ var engineTorque: (NSNumber & SDLFloat)? { get set }
@@ -383,7 +383,7 @@ var accPedalPosition: (NSNumber
+ var accPedalPosition: (NSNumber & SDLFloat)? { get set }
@@ -402,7 +402,7 @@ var steeringWheelAngle: (NSNumber
+ var steeringWheelAngle: (NSNumber & SDLFloat)? { get set }
@@ -416,9 +416,12 @@ @interface SDLOnVehicleData : SDLRPCNotification
+ @property (nullable, strong, nonatomic) SDLECallInfo *eCallInfo
+ var eCallInfo: SDLECallInfo? { get set }
+
@@ -431,9 +434,12 @@ @interface SDLOnVehicleData : SDLRPCNotification
+ @property (nullable, strong, nonatomic) SDLAirbagStatus *airbagStatus
+ var airbagStatus: SDLAirbagStatus? { get set }
+
@@ -446,9 +452,12 @@ @interface SDLOnVehicleData : SDLRPCNotification
+ @property (nullable, strong, nonatomic) SDLEmergencyEvent *emergencyEvent
+ var emergencyEvent: SDLEmergencyEvent? { get set }
+
@@ -461,9 +470,12 @@ @interface SDLOnVehicleData : SDLRPCNotification
+ @property (nullable, strong, nonatomic) SDLClusterModeStatus *clusterModeStatus
+ var clusterModeStatus: SDLClusterModeStatus? { get set }
+
@@ -476,9 +488,12 @@ @interface SDLOnVehicleData : SDLRPCNotification
+ @property (nullable, strong, nonatomic) SDLMyKey *myKey
+ var myKey: SDLMyKey? { get set }
+
diff --git a/docs/Classes/SDLPerformAudioPassThru.html b/docs/Classes/SDLPerformAudioPassThru.html
index 54dfd3bc7..d963cca95 100644
--- a/docs/Classes/SDLPerformAudioPassThru.html
+++ b/docs/Classes/SDLPerformAudioPassThru.html
@@ -42,9 +42,12 @@ @interface SDLPerformAudioPassThru : SDLRPCRequest
+ - (instancetype)initWithSamplingRate:(SDLSamplingRate)samplingRate bitsPerSample:(SDLBitsPerSample)bitsPerSample audioType:(SDLAudioType)audioType maxDuration:(UInt32)maxDuration;
+ init(samplingRate: SDLSamplingRate, bitsPerSample: SDLBitsPerSample, audioType: SDLAudioType, maxDuration: UInt32)
+
@@ -57,9 +60,12 @@ @interface SDLPerformAudioPassThru : SDLRPCRequest
+ - (instancetype)initWithInitialPrompt:(nullable NSString *)initialPrompt audioPassThruDisplayText1:(nullable NSString *)audioPassThruDisplayText1 audioPassThruDisplayText2:(nullable NSString *)audioPassThruDisplayText2 samplingRate:(SDLSamplingRate)samplingRate bitsPerSample:(SDLBitsPerSample)bitsPerSample audioType:(SDLAudioType)audioType maxDuration:(UInt32)maxDuration muteAudio:(BOOL)muteAudio;
+ init(initialPrompt: String?, audioPassThruDisplayText1: String?, audioPassThruDisplayText2: String?, samplingRate: SDLSamplingRate, bitsPerSample: SDLBitsPerSample, audioType: SDLAudioType, maxDuration: UInt32, muteAudio: Bool)
+
@@ -72,9 +78,12 @@ @interface SDLPerformAudioPassThru : SDLRPCRequest
+ - (instancetype)initWithSamplingRate:(SDLSamplingRate)samplingRate bitsPerSample:(SDLBitsPerSample)bitsPerSample audioType:(SDLAudioType)audioType maxDuration:(UInt32)maxDuration audioDataHandler:(nullable SDLAudioPassThruHandler)audioDataHandler;
+ init(samplingRate: SDLSamplingRate, bitsPerSample: SDLBitsPerSample, audioType: SDLAudioType, maxDuration: UInt32, audioDataHandler: SDLAudioPassThruHandler? = nil)
+
@@ -87,9 +96,12 @@ @interface SDLPerformAudioPassThru : SDLRPCRequest
+ - (instancetype)initWithInitialPrompt:(nullable NSString *)initialPrompt audioPassThruDisplayText1:(nullable NSString *)audioPassThruDisplayText1 audioPassThruDisplayText2:(nullable NSString *)audioPassThruDisplayText2 samplingRate:(SDLSamplingRate)samplingRate bitsPerSample:(SDLBitsPerSample)bitsPerSample audioType:(SDLAudioType)audioType maxDuration:(UInt32)maxDuration muteAudio:(BOOL)muteAudio audioDataHandler:(nullable SDLAudioPassThruHandler)audioDataHandler;
+ init(initialPrompt: String?, audioPassThruDisplayText1: String?, audioPassThruDisplayText2: String?, samplingRate: SDLSamplingRate, bitsPerSample: SDLBitsPerSample, audioType: SDLAudioType, maxDuration: UInt32, muteAudio: Bool, audioDataHandler: SDLAudioPassThruHandler? = nil)
+
@@ -213,7 +225,7 @@ var maxDuration: NSNumber
+ var maxDuration: NSNumber & SDLInt { get set }
@@ -270,7 +282,7 @@ var muteAudio: (NSNumber
+ var muteAudio: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLPerformInteraction.html b/docs/Classes/SDLPerformInteraction.html
index 7abfcc7c8..5aa929c10 100644
--- a/docs/Classes/SDLPerformInteraction.html
+++ b/docs/Classes/SDLPerformInteraction.html
@@ -49,9 +49,12 @@ @interface SDLPerformInteraction : SDLRPCRequest
+ - (instancetype)initWithInteractionChoiceSetId:(UInt16)interactionChoiceSetId;
+ init(interactionChoiceSetId: UInt16)
+
@@ -64,9 +67,12 @@ @interface SDLPerformInteraction : SDLRPCRequest
+ - (instancetype)initWithInteractionChoiceSetIdList:(NSArray<NSNumber<SDLUInt> *> *)interactionChoiceSetIdList;
+ init(interactionChoiceSetIdList: [NSNumber & SDLUInt])
+
@@ -79,9 +85,12 @@ @interface SDLPerformInteraction : SDLRPCRequest
+ - (instancetype)initWithInitialPrompt:(nullable NSString *)initialPrompt initialText:(NSString *)initialText interactionChoiceSetID:(UInt16)interactionChoiceSetID;
+ init(initialPrompt: String?, initialText: String, interactionChoiceSetID: UInt16)
+
@@ -94,9 +103,12 @@ @interface SDLPerformInteraction : SDLRPCRequest
+ - (instancetype)initWithInitialPrompt:(nullable NSString *)initialPrompt initialText:(NSString *)initialText interactionChoiceSetID:(UInt16)interactionChoiceSetID vrHelp:(nullable NSArray<SDLVRHelpItem *> *)vrHelp;
+ init(initialPrompt: String?, initialText: String, interactionChoiceSetID: UInt16, vrHelp: [SDLVRHelpItem]?)
+
@@ -109,9 +121,12 @@ @interface SDLPerformInteraction : SDLRPCRequest
+ - (instancetype)initWithInitialPrompt:(nullable NSString *)initialPrompt initialText:(NSString *)initialText interactionChoiceSetIDList:(NSArray<NSNumber<SDLUInt> *> *)interactionChoiceSetIDList helpPrompt:(nullable NSString *)helpPrompt timeoutPrompt:(nullable NSString *)timeoutPrompt interactionMode:(SDLInteractionMode)interactionMode timeout:(UInt32)timeout;
+ init(initialPrompt: String?, initialText: String, interactionChoiceSetIDList: [NSNumber & SDLUInt], helpPrompt: String?, timeoutPrompt: String?, interactionMode: SDLInteractionMode, timeout: UInt32)
+
@@ -124,9 +139,12 @@ @interface SDLPerformInteraction : SDLRPCRequest
+ - (instancetype)initWithInitialPrompt:(nullable NSString *)initialPrompt initialText:(NSString *)initialText interactionChoiceSetIDList:(NSArray<NSNumber<SDLUInt> *> *)interactionChoiceSetIDList helpPrompt:(nullable NSString *)helpPrompt timeoutPrompt:(nullable NSString *)timeoutPrompt interactionMode:(SDLInteractionMode)interactionMode timeout:(UInt32)timeout vrHelp:(nullable NSArray<SDLVRHelpItem *> *)vrHelp;
+ init(initialPrompt: String?, initialText: String, interactionChoiceSetIDList: [NSNumber & SDLUInt], helpPrompt: String?, timeoutPrompt: String?, interactionMode: SDLInteractionMode, timeout: UInt32, vrHelp: [SDLVRHelpItem]?)
+
@@ -139,9 +157,12 @@ @interface SDLPerformInteraction : SDLRPCRequest
+ - (instancetype)initWithInitialChunks:(nullable NSArray<SDLTTSChunk *> *)initialChunks initialText:(NSString *)initialText interactionChoiceSetIDList:(NSArray<NSNumber<SDLUInt> *> *)interactionChoiceSetIDList helpChunks:(nullable NSArray<SDLTTSChunk *> *)helpChunks timeoutChunks:(nullable NSArray<SDLTTSChunk *> *)timeoutChunks interactionMode:(SDLInteractionMode)interactionMode timeout:(UInt32)timeout vrHelp:(nullable NSArray<SDLVRHelpItem *> *)vrHelp;
+ init(initialChunks: [SDLTTSChunk]?, initialText: String, interactionChoiceSetIDList: [NSNumber & SDLUInt], help helpChunks: [SDLTTSChunk]?, timeoutChunks: [SDLTTSChunk]?, interactionMode: SDLInteractionMode, timeout: UInt32, vrHelp: [SDLVRHelpItem]?)
+
@@ -154,9 +175,12 @@ @interface SDLPerformInteraction : SDLRPCRequest
+ - (instancetype)initWithInitialChunks:(nullable NSArray<SDLTTSChunk *> *)initialChunks initialText:(NSString *)initialText interactionChoiceSetIDList:(NSArray<NSNumber<SDLUInt> *> *)interactionChoiceSetIDList helpChunks:(nullable NSArray<SDLTTSChunk *> *)helpChunks timeoutChunks:(nullable NSArray<SDLTTSChunk *> *)timeoutChunks interactionMode:(SDLInteractionMode)interactionMode timeout:(UInt32)timeout vrHelp:(nullable NSArray<SDLVRHelpItem *> *)vrHelp interactionLayout:(nullable SDLLayoutMode)layout;
+ init(initialChunks: [SDLTTSChunk]?, initialText: String, interactionChoiceSetIDList: [NSNumber & SDLUInt], help helpChunks: [SDLTTSChunk]?, timeoutChunks: [SDLTTSChunk]?, interactionMode: SDLInteractionMode, timeout: UInt32, vrHelp: [SDLVRHelpItem]?, interactionLayout layout: SDLLayoutMode?)
+
@@ -237,7 +261,7 @@ var interactionChoiceSetIDList: [NSNumber
+ var interactionChoiceSetIDList: [NSNumber & SDLInt] { get set }
@@ -296,7 +320,7 @@ var timeout: (NSNumber
+ var timeout: (NSNumber & SDLInt)? { get set }
@@ -331,9 +355,12 @@ @interface SDLPerformInteraction : SDLRPCRequest
+ @property (nullable, strong, nonatomic) SDLLayoutMode interactionLayout
+ var interactionLayout: SDLLayoutMode? { get set }
+
diff --git a/docs/Classes/SDLPerformInteractionResponse.html b/docs/Classes/SDLPerformInteractionResponse.html
index bdc164c9e..30dbab92c 100644
--- a/docs/Classes/SDLPerformInteractionResponse.html
+++ b/docs/Classes/SDLPerformInteractionResponse.html
@@ -33,7 +33,7 @@ var choiceID: (NSNumber
+ var choiceID: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLPermissionItem.html b/docs/Classes/SDLPermissionItem.html
index fa14d05b0..4c7d60c6d 100644
--- a/docs/Classes/SDLPermissionItem.html
+++ b/docs/Classes/SDLPermissionItem.html
@@ -22,6 +22,13 @@ @property (strong, nonatomic) NSString *rpcName
+
+
+ var rpcName: String { get set }
+
@@ -33,6 +40,13 @@ @property (strong, nonatomic) SDLHMIPermissions *hmiPermissions
+
+
+ var hmiPermissions: SDLHMIPermissions { get set }
+
@@ -44,6 +58,13 @@ @property (strong, nonatomic) SDLParameterPermissions *parameterPermissions
+
+
+ var parameterPermissions: SDLParameterPermissions { get set }
+
diff --git a/docs/Classes/SDLPermissionManager.html b/docs/Classes/SDLPermissionManager.html
index 516db2a03..e95f0bad0 100644
--- a/docs/Classes/SDLPermissionManager.html
+++ b/docs/Classes/SDLPermissionManager.html
@@ -130,7 +130,7 @@ func status(ofRPCs rpcNames: [String]) -> [String : NSNumber
+ func status(ofRPCs rpcNames: [String]) -> [String : NSNumber & SDLBool]
diff --git a/docs/Classes/SDLPhoneCapability.html b/docs/Classes/SDLPhoneCapability.html
index cccaaaf6c..46846a1cc 100644
--- a/docs/Classes/SDLPhoneCapability.html
+++ b/docs/Classes/SDLPhoneCapability.html
@@ -21,6 +21,13 @@ - (instancetype)initWithDialNumber:(BOOL)dialNumberEnabled;
+
+
+ init(dialNumber dialNumberEnabled: Bool)
+
diff --git a/docs/Classes/SDLPresetBankCapabilities.html b/docs/Classes/SDLPresetBankCapabilities.html
index bff9b7a51..d9e1eefc5 100644
--- a/docs/Classes/SDLPresetBankCapabilities.html
+++ b/docs/Classes/SDLPresetBankCapabilities.html
@@ -30,7 +30,7 @@ var onScreenPresetsAvailable: NSNumber
+ var onScreenPresetsAvailable: NSNumber & SDLBool { get set }
diff --git a/docs/Classes/SDLProtocol.html b/docs/Classes/SDLProtocol.html
index 73d65c866..07e4482ab 100644
--- a/docs/Classes/SDLProtocol.html
+++ b/docs/Classes/SDLProtocol.html
@@ -27,6 +27,13 @@ - (void)startServiceWithType:(SDLServiceType)serviceType payload:(nullable NSData *)payload;
+
+
+ func startService(with serviceType: SDLServiceType, payload: Data?)
+
@@ -38,6 +45,13 @@ - (void)startSecureServiceWithType:(SDLServiceType)serviceType payload:(nullable NSData *)payload completionHandler:(void (^)(BOOL success, NSError *error))completionHandler;
+
+
+ func startSecureService(with serviceType: SDLServiceType, payload: Data?, completionHandler: @escaping (Bool, Error) -> Void)
+
@@ -49,6 +63,13 @@ - (void)endServiceWithType:(SDLServiceType)serviceType;
+
+
+ func endService(with serviceType: SDLServiceType)
+
@@ -60,6 +81,13 @@ - (void)sendRPC:(SDLRPCMessage *)message;
+
+
+ func sendRPC(_ message: SDLRPCMessage)
+
@@ -71,6 +99,13 @@ - (BOOL)sendRPC:(SDLRPCMessage *)message encrypted:(BOOL)encryption error:(NSError **)error;
+
+
+ func sendRPC(_ message: SDLRPCMessage, encrypted encryption: Bool) throws
+
@@ -82,6 +117,13 @@ - (void)sendRawData:(NSData *)data withServiceType:(SDLServiceType)serviceType;
+
+
+ func sendRawData(_ data: Data, with serviceType: SDLServiceType)
+
@@ -93,6 +135,13 @@ - (void)sendEncryptedRawData:(NSData *)data onService:(SDLServiceType)serviceType;
+
+
+ func sendEncryptedRawData(_ data: Data, on serviceType: SDLServiceType)
+
@@ -104,6 +153,13 @@ - (void)handleBytesFromTransport:(NSData *)receivedData;
+
+
+ func handleBytes(fromTransport receivedData: Data)
+
diff --git a/docs/Classes/SDLProtocolHeader.html b/docs/Classes/SDLProtocolHeader.html
index e7156a404..ec300dd0a 100644
--- a/docs/Classes/SDLProtocolHeader.html
+++ b/docs/Classes/SDLProtocolHeader.html
@@ -35,6 +35,10 @@ UInt8 _version
+
+
@@ -46,6 +50,10 @@ NSUInteger _size
+
+
@@ -57,6 +65,13 @@ @property (assign, nonatomic, readonly) UInt8 version
+
+
+ var version: UInt8 { get }
+
@@ -68,6 +83,13 @@ @property (assign, nonatomic, readonly) NSUInteger size
+
+
+ var size: UInt { get }
+
@@ -79,6 +101,13 @@ @property (assign, nonatomic) BOOL encrypted
+
+
+ var encrypted: Bool { get set }
+
@@ -90,6 +119,13 @@ @property (assign, nonatomic) SDLFrameType frameType
+
+
+ var frameType: SDLFrameType { get set }
+
@@ -101,6 +137,13 @@ @property (assign, nonatomic) SDLServiceType serviceType
+
+
+ var serviceType: SDLServiceType { get set }
+
@@ -112,6 +155,13 @@ @property (assign, nonatomic) SDLFrameInfo frameData
+
+
+ var frameData: SDLFrameInfo { get set }
+
@@ -123,6 +173,13 @@ @property (assign, nonatomic) UInt8 sessionID
+
+
+ var sessionID: UInt8 { get set }
+
@@ -134,6 +191,13 @@ @property (assign, nonatomic) UInt32 bytesInPayload
+
+
+ var bytesInPayload: UInt32 { get set }
+
@@ -145,6 +209,13 @@ - (instancetype)init;
+
+
+ init()
+
@@ -156,6 +227,13 @@ - (nullable NSData *)data;
+
+
+ func data() -> Data?
+
@@ -167,6 +245,13 @@ - (void)parse:(NSData *)data;
+
+
+ func parse(_ data: Data)
+
@@ -178,6 +263,13 @@ - (NSString *)description;
+
+
+ func description() -> String
+
@@ -189,6 +281,13 @@ + (__kindof SDLProtocolHeader *)headerForVersion:(UInt8)version;
+
+
+ /*not inherited*/ init(forVersion version: UInt8)
+
@@ -200,6 +299,13 @@ + (UInt8)determineVersion:(NSData *)data;
+
+
+ class func determineVersion(_ data: Data) -> UInt8
+
diff --git a/docs/Classes/SDLProtocolMessage.html b/docs/Classes/SDLProtocolMessage.html
index e279666b2..9b54605bf 100644
--- a/docs/Classes/SDLProtocolMessage.html
+++ b/docs/Classes/SDLProtocolMessage.html
@@ -26,6 +26,13 @@ @property (strong, nonatomic) SDLProtocolHeader *header
+
+
+ var header: SDLProtocolHeader { get set }
+
@@ -37,6 +44,13 @@ @property (nullable, strong, nonatomic) NSData *payload
+
+
+ var payload: Data? { get set }
+
@@ -48,6 +62,13 @@ @property (strong, nonatomic, readonly) NSData *data
+
+
+ var data: Data { get }
+
@@ -59,6 +80,13 @@ + (instancetype)messageWithHeader:(SDLProtocolHeader *)header andPayload:(nullable NSData *)payload;
+
+
+ convenience init(header: SDLProtocolHeader, andPayload payload: Data?)
+
@@ -70,6 +98,13 @@ - (NSUInteger)size;
+
+
+ func size() -> UInt
+
@@ -81,6 +116,13 @@ - (NSString *)description;
+
+
+ func description() -> String
+
@@ -92,6 +134,13 @@ - (nullable NSDictionary<NSString *, id> *)rpcDictionary;
+
+
+ func rpcDictionary() -> [String : Any]?
+
diff --git a/docs/Classes/SDLProxy.html b/docs/Classes/SDLProxy.html
index 182f7681b..2aa8dd754 100644
--- a/docs/Classes/SDLProxy.html
+++ b/docs/Classes/SDLProxy.html
@@ -36,6 +36,10 @@ Byte _version
+
+
@@ -47,6 +51,10 @@ Byte _bulkSessionID
+
+
@@ -58,6 +66,10 @@ BOOL _isConnected
+
+
@@ -69,6 +81,13 @@ @property (nullable, strong, nonatomic) SDLAbstractProtocol *protocol
+
+
+ var `protocol`: SDLAbstractProtocol? { get set }
+
@@ -80,6 +99,13 @@ @property (nullable, strong, nonatomic) SDLAbstractTransport *transport
+
+
+ var transport: SDLAbstractTransport? { get set }
+
@@ -91,6 +117,13 @@ @property (readonly, copy, nonatomic) NSSet<NSObject<SDLProxyListener> *> *proxyListeners
+
+
+ var proxyListeners: Set<AnyHashable> { get }
+
@@ -102,6 +135,13 @@ @property (strong, nonatomic) SDLTimer *startSessionTimer
+
+
+ var startSessionTimer: SDLTimer { get set }
+
@@ -113,6 +153,13 @@ @property (copy, nonatomic) NSString *debugConsoleGroupName
+
+
+ var debugConsoleGroupName: String { get set }
+
@@ -124,6 +171,13 @@ @property (readonly, copy, nonatomic) NSString *proxyVersion
+
+
+ var proxyVersion: String { get }
+
@@ -135,6 +189,15 @@ - (id)initWithTransport:(SDLAbstractTransport *)transport
+ protocol:(SDLAbstractProtocol *)protocol
+ delegate:(NSObject<SDLProxyListener> *)delegate;
+
+
+ init(transport: SDLAbstractTransport, protocol: SDLAbstractProtocol, delegate: SDLProxyListener)
+
@@ -146,6 +209,13 @@ - (void)addDelegate:(NSObject<SDLProxyListener> *)delegate;
+
+
+ func addDelegate(_ delegate: SDLProxyListener)
+
@@ -157,6 +227,13 @@ - (void)removeDelegate:(NSObject<SDLProxyListener> *)delegate;
+
+
+ func removeDelegate(_ delegate: SDLProxyListener)
+
@@ -168,6 +245,13 @@ - (void)sendRPC:(SDLRPCMessage *)message;
+
+
+ func sendRPC(_ message: SDLRPCMessage)
+
@@ -179,6 +263,13 @@ - (void)handleRPCDictionary:(NSDictionary<NSString *, id> *)dictionary;
+
+
+ func handleRPCDictionary(_ dictionary: [String : Any])
+
@@ -190,6 +281,13 @@ - (void)handleProtocolMessage:(SDLProtocolMessage *)msgData;
+
+
+ func handle(_ msgData: SDLProtocolMessage)
+
@@ -201,6 +299,13 @@ - (void)addSecurityManagers:(NSArray<Class> *)securityManagerClasses forAppId:(NSString *)appId;
+
+
+ func addSecurityManagers(_ securityManagerClasses: [AnyClass], forAppId appId: String)
+
diff --git a/docs/Classes/SDLProxyFactory.html b/docs/Classes/SDLProxyFactory.html
index fe6044a1a..cd283f6b9 100644
--- a/docs/Classes/SDLProxyFactory.html
+++ b/docs/Classes/SDLProxyFactory.html
@@ -21,6 +21,13 @@ + (SDLProxy *)buildSDLProxyWithListener:(NSObject<SDLProxyListener> *)listener;
+
+
+ class func buildSDLProxy(with listener: SDLProxyListener) -> SDLProxy
+
@@ -32,6 +39,15 @@ + (SDLProxy *)buildSDLProxyWithListener:(NSObject<SDLProxyListener> *)listener
+ tcpIPAddress:(NSString *)ipaddress
+ tcpPort:(NSString *)port;
+
+
+ class func buildSDLProxy(with listener: SDLProxyListener, tcpIPAddress ipaddress: String, tcpPort port: String) -> SDLProxy
+
diff --git a/docs/Classes/SDLPutFile.html b/docs/Classes/SDLPutFile.html
index 192165952..6c22cf69b 100644
--- a/docs/Classes/SDLPutFile.html
+++ b/docs/Classes/SDLPutFile.html
@@ -42,9 +42,12 @@ @interface SDLPutFile : SDLRPCRequest
+ - (instancetype)initWithFileName:(NSString *)fileName fileType:(SDLFileType)fileType;
+ init(fileName: String, fileType: SDLFileType)
+
@@ -57,9 +60,12 @@ @interface SDLPutFile : SDLRPCRequest
+ - (instancetype)initWithFileName:(NSString *)fileName fileType:(SDLFileType)fileType persistentFile:(BOOL)persistentFile;
+ init(fileName: String, fileType: SDLFileType, persistentFile: Bool)
+
@@ -72,9 +78,12 @@ @interface SDLPutFile : SDLRPCRequest
+ - (instancetype)initWithFileName:(NSString *)fileName fileType:(SDLFileType)fileType persistentFile:(BOOL)persistentFile systemFile:(BOOL)systemFile offset:(UInt32)offset length:(UInt32)length;
+ init(fileName: String, fileType: SDLFileType, persistentFile: Bool, systemFile: Bool, offset: UInt32, length: UInt32)
+
@@ -140,7 +149,7 @@ var persistentFile: (NSNumber
+ var persistentFile: (NSNumber & SDLBool)? { get set }
@@ -160,7 +169,7 @@ var systemFile: (NSNumber
+ var systemFile: (NSNumber & SDLBool)? { get set }
@@ -180,7 +189,7 @@ var offset: (NSNumber
+ var offset: (NSNumber & SDLUInt)? { get set }
@@ -200,7 +209,7 @@ var length: (NSNumber
+ var length: (NSNumber & SDLUInt)? { get set }
diff --git a/docs/Classes/SDLPutFileResponse.html b/docs/Classes/SDLPutFileResponse.html
index 56ce2675c..2920450e3 100644
--- a/docs/Classes/SDLPutFileResponse.html
+++ b/docs/Classes/SDLPutFileResponse.html
@@ -23,9 +23,12 @@ @interface SDLPutFileResponse : SDLRPCResponse
+ @property (strong, nonatomic) NSNumber<SDLInt> *spaceAvailable
+ var spaceAvailable: NSNumber & SDLInt { get set }
+
diff --git a/docs/Classes/SDLRDSData.html b/docs/Classes/SDLRDSData.html
index 4d9d3470f..1bed7770e 100644
--- a/docs/Classes/SDLRDSData.html
+++ b/docs/Classes/SDLRDSData.html
@@ -31,9 +31,12 @@ @interface SDLRDSData : SDLRPCStruct
+ - (instancetype)initWithProgramService:(nullable NSString *)programService radioText:(nullable NSString *)radioText clockText:(nullable NSString *)clockText programIdentification:(nullable NSString *)programIdentification programType:(nullable NSNumber<SDLInt> *)programType trafficProgramIdentification:(nullable NSNumber<SDLBool> *)trafficProgramIdentification trafficAnnouncementIdentification:(nullable NSNumber<SDLBool> *)trafficAnnouncementIdentification region:(nullable NSString *)region;
+ init(programService: String?, radioText: String?, clockText: String?, programIdentification: String?, programType: (NSNumber & SDLInt)?, trafficProgramIdentification: (NSNumber & SDLBool)?, trafficAnnouncementIdentification: (NSNumber & SDLBool)?, region: String?)
+
@@ -134,7 +137,7 @@ var programType: (NSNumber
+ var programType: (NSNumber & SDLInt)? { get set }
@@ -155,7 +158,7 @@ var trafficProgramIdentification: (NSNumber
+ var trafficProgramIdentification: (NSNumber & SDLBool)? { get set }
@@ -176,7 +179,7 @@ var trafficAnnouncementIdentification: (NSNumber
+ var trafficAnnouncementIdentification: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLRPCMessage.html b/docs/Classes/SDLRPCMessage.html
index 8a61868cb..30a02543f 100644
--- a/docs/Classes/SDLRPCMessage.html
+++ b/docs/Classes/SDLRPCMessage.html
@@ -31,6 +31,10 @@ NSMutableDictionary<NSString *, id> *function
+
+
@@ -42,6 +46,10 @@ NSMutableDictionary<NSString *, id> *parameters
+
+
@@ -53,6 +61,10 @@ NSString *messageType
+
+
@@ -64,6 +76,13 @@ - (instancetype)initWithName:(NSString *)name;
+
+
+ init(name: String)
+
@@ -75,6 +94,13 @@ - (instancetype)initWithDictionary:(NSDictionary<NSString *, id> *)dict;
+
+
+ init(dictionary dict: [String : Any])
+
@@ -86,6 +112,13 @@ - (nullable NSString *)getFunctionName;
+
+
+ func getFunctionName() -> String?
+
@@ -97,6 +130,13 @@ - (void)setFunctionName:(nullable NSString *)functionName;
+
+
+ func setFunctionName(_ functionName: String?)
+
@@ -108,6 +148,13 @@ - (nullable NSObject *)getParameters:(NSString *)functionName;
+
+
+ func getParameters(_ functionName: String) -> NSObject?
+
@@ -119,6 +166,13 @@ - (void)setParameters:(NSString *)functionName value:(nullable NSObject *)value;
+
+
+ func setParameters(_ functionName: String, value: NSObject?)
+
@@ -130,6 +184,13 @@ @property (nullable, strong, nonatomic) NSData *bulkData
+
+
+ var bulkData: Data? { get set }
+
@@ -141,6 +202,13 @@ @property (strong, nonatomic, readonly) NSString *name
+
+
+ var name: String { get }
+
@@ -152,6 +220,13 @@ @property (strong, nonatomic, readonly) NSString *messageType
+
+
+ var messageType: String { get }
+
diff --git a/docs/Classes/SDLRPCNotificationNotification.html b/docs/Classes/SDLRPCNotificationNotification.html
index 43b3ae5e3..1a3eed71e 100644
--- a/docs/Classes/SDLRPCNotificationNotification.html
+++ b/docs/Classes/SDLRPCNotificationNotification.html
@@ -23,6 +23,13 @@ @property (copy, nonatomic, readonly) __kindof SDLRPCNotification *notification
+
+
+ @NSCopying var notification: SDLRPCNotification { get }
+
@@ -34,6 +41,13 @@ - (instancetype)initWithName:(NSString *)name object:(nullable id)object rpcNotification:(__kindof SDLRPCNotification *)notification;
+
+
+ init(name: String, object: Any?, rpcNotification notification: SDLRPCNotification)
+
diff --git a/docs/Classes/SDLRPCRequest.html b/docs/Classes/SDLRPCRequest.html
index 427b4cc2b..3c0382a7b 100644
--- a/docs/Classes/SDLRPCRequest.html
+++ b/docs/Classes/SDLRPCRequest.html
@@ -20,6 +20,13 @@ @property (strong, nonatomic) NSNumber<SDLInt> *correlationID
+
+
+ var correlationID: NSNumber & SDLInt { get set }
+
diff --git a/docs/Classes/SDLRPCResponse.html b/docs/Classes/SDLRPCResponse.html
index 6eccdac35..ec468d22d 100644
--- a/docs/Classes/SDLRPCResponse.html
+++ b/docs/Classes/SDLRPCResponse.html
@@ -23,6 +23,13 @@ @property (strong, nonatomic) NSNumber<SDLInt> *correlationID
+
+
+ var correlationID: NSNumber & SDLInt { get set }
+
@@ -34,6 +41,13 @@ @property (strong, nonatomic) NSNumber<SDLBool> *success
+
+
+ var success: NSNumber & SDLBool { get set }
+
@@ -45,6 +59,13 @@ @property (strong, nonatomic) SDLResult resultCode
+
+
+ var resultCode: SDLResult { get set }
+
@@ -56,6 +77,13 @@ @property (nullable, strong, nonatomic) NSString *info
+
+
+ var info: String? { get set }
+
diff --git a/docs/Classes/SDLRPCResponseNotification.html b/docs/Classes/SDLRPCResponseNotification.html
index 7f3b61e2a..6c2afdc6c 100644
--- a/docs/Classes/SDLRPCResponseNotification.html
+++ b/docs/Classes/SDLRPCResponseNotification.html
@@ -23,6 +23,13 @@ @property (copy, nonatomic, readonly) __kindof SDLRPCResponse *response
+
+
+ @NSCopying var response: SDLRPCResponse { get }
+
@@ -34,6 +41,13 @@ - (instancetype)initWithName:(NSString *)name object:(nullable id)object rpcResponse:(__kindof SDLRPCResponse *)response;
+
+
+ init(name: String, object: Any?, rpcResponse response: SDLRPCResponse)
+
diff --git a/docs/Classes/SDLRPCStruct.html b/docs/Classes/SDLRPCStruct.html
index 55ab7cc95..4536565a1 100644
--- a/docs/Classes/SDLRPCStruct.html
+++ b/docs/Classes/SDLRPCStruct.html
@@ -23,6 +23,10 @@ NSMutableDictionary<NSString *, id> *store
+
+
@@ -34,6 +38,13 @@ - (instancetype)initWithDictionary:(NSDictionary<NSString *, id> *)dict;
+
+
+ init(dictionary dict: [String : Any])
+
@@ -45,6 +56,13 @@ - (instancetype)init;
+
+
+ init()
+
@@ -56,6 +74,13 @@ - (NSDictionary<NSString *, id> *)serializeAsDictionary:(Byte)version;
+
+
+ func serialize(asDictionary version: UInt8) -> [String : Any]
+
diff --git a/docs/Classes/SDLRadioControlCapabilities.html b/docs/Classes/SDLRadioControlCapabilities.html
index e4cb66a38..c4455070d 100644
--- a/docs/Classes/SDLRadioControlCapabilities.html
+++ b/docs/Classes/SDLRadioControlCapabilities.html
@@ -31,9 +31,12 @@ @interface SDLRadioControlCapabilities : SDLRPCStruct
+ - (instancetype)initWithModuleName:(NSString *)moduleName radioEnableAvailable:(BOOL)radioEnableAvailable radioBandAvailable:(BOOL)radioBandAvailable radioFrequencyAvailable:(BOOL)radioFrequencyAvailable hdChannelAvailable:(BOOL)hdChannelAvailable rdsDataAvailable:(BOOL)rdsDataAvailable availableHDsAvailable:(BOOL)availableHDsAvailable stateAvailable:(BOOL)stateAvailable signalStrengthAvailable:(BOOL)signalStrengthAvailable signalChangeThresholdAvailable:(BOOL)signalChangeThresholdAvailable;
+ init(moduleName: String, radioEnableAvailable: Bool, radioBandAvailable: Bool, radioFrequencyAvailable: Bool, hdChannelAvailable: Bool, rdsDataAvailable: Bool, availableHDsAvailable: Bool, stateAvailable: Bool, signalStrengthAvailable: Bool, signalChangeThresholdAvailable: Bool)
+
@@ -75,7 +78,7 @@ var radioEnableAvailable: (NSNumber
+ var radioEnableAvailable: (NSNumber & SDLBool)? { get set }
@@ -97,7 +100,7 @@ var radioBandAvailable: (NSNumber
+ var radioBandAvailable: (NSNumber & SDLBool)? { get set }
@@ -119,7 +122,7 @@ var radioFrequencyAvailable: (NSNumber
+ var radioFrequencyAvailable: (NSNumber & SDLBool)? { get set }
@@ -141,7 +144,7 @@ var hdChannelAvailable: (NSNumber
+ var hdChannelAvailable: (NSNumber & SDLBool)? { get set }
@@ -163,7 +166,7 @@ var rdsDataAvailable: (NSNumber
+ var rdsDataAvailable: (NSNumber & SDLBool)? { get set }
@@ -185,7 +188,7 @@ var availableHDsAvailable: (NSNumber
+ var availableHDsAvailable: (NSNumber & SDLBool)? { get set }
@@ -207,7 +210,7 @@ var stateAvailable: (NSNumber
+ var stateAvailable: (NSNumber & SDLBool)? { get set }
@@ -229,7 +232,7 @@ var signalStrengthAvailable: (NSNumber
+ var signalStrengthAvailable: (NSNumber & SDLBool)? { get set }
@@ -251,7 +254,7 @@ var signalChangeThresholdAvailable: (NSNumber
+ var signalChangeThresholdAvailable: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLRadioControlData.html b/docs/Classes/SDLRadioControlData.html
index 6643ba759..fdc309cf8 100644
--- a/docs/Classes/SDLRadioControlData.html
+++ b/docs/Classes/SDLRadioControlData.html
@@ -31,9 +31,12 @@ @interface SDLRadioControlData : SDLRPCStruct
+ - (instancetype)initWithFrequencyInteger:(nullable NSNumber<SDLInt> *)frequencyInteger frequencyFraction:(nullable NSNumber<SDLInt> *)frequencyFraction band:(nullable SDLRadioBand)band hdChannel:(nullable NSNumber<SDLInt> *)hdChannel radioEnable:(nullable NSNumber<SDLBool> *)radioEnable;
+ init(frequencyInteger: (NSNumber & SDLInt)?, frequencyFraction: (NSNumber & SDLInt)?, band: SDLRadioBand?, hdChannel: (NSNumber & SDLInt)?, radioEnable: (NSNumber & SDLBool)?)
+
@@ -53,7 +56,7 @@ var frequencyInteger: (NSNumber
+ var frequencyInteger: (NSNumber & SDLInt)? { get set }
@@ -74,7 +77,7 @@ var frequencyFraction: (NSNumber
+ var frequencyFraction: (NSNumber & SDLInt)? { get set }
@@ -145,7 +148,7 @@ var availableHDs: (NSNumber
+ var availableHDs: (NSNumber & SDLInt)? { get set }
@@ -165,7 +168,7 @@ var hdChannel: (NSNumber
+ var hdChannel: (NSNumber & SDLInt)? { get set }
@@ -191,7 +194,7 @@ var signalStrength: (NSNumber
+ var signalStrength: (NSNumber & SDLInt)? { get set }
@@ -217,7 +220,7 @@ var signalChangeThreshold: (NSNumber
+ var signalChangeThreshold: (NSNumber & SDLInt)? { get set }
@@ -238,7 +241,7 @@ var radioEnable: (NSNumber
+ var radioEnable: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLReadDID.html b/docs/Classes/SDLReadDID.html
index 5a59fb149..7a5bfb879 100644
--- a/docs/Classes/SDLReadDID.html
+++ b/docs/Classes/SDLReadDID.html
@@ -32,9 +32,12 @@ @interface SDLReadDID : SDLRPCRequest
+ - (instancetype)initWithECUName:(UInt16)ecuNumber didLocation:(NSArray<NSNumber<SDLUInt> *> *)didLocation;
+ init(ecuName ecuNumber: UInt16, didLocation: [NSNumber & SDLUInt])
+
@@ -52,7 +55,7 @@ var ecuName: NSNumber
+ var ecuName: NSNumber & SDLInt { get set }
@@ -79,7 +82,7 @@ var didLocation: [NSNumber
+ var didLocation: [NSNumber & SDLInt] { get set }
diff --git a/docs/Classes/SDLReadDIDResponse.html b/docs/Classes/SDLReadDIDResponse.html
index 1222e3ccf..843753718 100644
--- a/docs/Classes/SDLReadDIDResponse.html
+++ b/docs/Classes/SDLReadDIDResponse.html
@@ -23,9 +23,12 @@ @interface SDLReadDIDResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) NSArray<SDLDIDResult *> *didResult
+ var didResult: [SDLDIDResult]? { get set }
+
diff --git a/docs/Classes/SDLRectangle.html b/docs/Classes/SDLRectangle.html
index 40eba6b0d..a8ce4d19f 100644
--- a/docs/Classes/SDLRectangle.html
+++ b/docs/Classes/SDLRectangle.html
@@ -66,7 +66,7 @@ init!(cgRect rect: Any!)
+ init!(cgRect rect: CGRect)
@@ -93,6 +93,9 @@ @property (readwrite, strong, nonatomic) NSNumber<SDLFloat> *x;
+ var x: (NSNumber & SDLFloat)! { get set }
+
@@ -109,6 +112,9 @@ @property (readwrite, strong, nonatomic) NSNumber<SDLFloat> *y;
+ var y: (NSNumber & SDLFloat)! { get set }
+
@@ -125,6 +131,9 @@ @property (readwrite, strong, nonatomic) NSNumber<SDLFloat> *width;
+ var width: (NSNumber & SDLFloat)! { get set }
+
@@ -141,6 +150,9 @@ @property (readwrite, strong, nonatomic) NSNumber<SDLFloat> *height;
+ var height: (NSNumber & SDLFloat)! { get set }
+
diff --git a/docs/Classes/SDLRegisterAppInterface.html b/docs/Classes/SDLRegisterAppInterface.html
index 0abe2e9d2..419d3284d 100644
--- a/docs/Classes/SDLRegisterAppInterface.html
+++ b/docs/Classes/SDLRegisterAppInterface.html
@@ -108,9 +108,12 @@ @interface SDLRegisterAppInterface : SDLRPCRequest
+ - (instancetype)initWithLifecycleConfiguration:(SDLLifecycleConfiguration *)lifecycleConfiguration;
+ init(lifecycleConfiguration: SDLLifecycleConfiguration)
+
@@ -123,9 +126,12 @@ @interface SDLRegisterAppInterface : SDLRPCRequest
+ - (instancetype)initWithAppName:(NSString *)appName appId:(NSString *)appId languageDesired:(SDLLanguage)languageDesired;
+ init(appName: String, appId: String, languageDesired: SDLLanguage)
+
@@ -138,9 +144,12 @@ @interface SDLRegisterAppInterface : SDLRPCRequest
+ - (instancetype)initWithAppName:(NSString *)appName appId:(NSString *)appId languageDesired:(SDLLanguage)languageDesired isMediaApp:(BOOL)isMediaApp appType:(SDLAppHMIType)appType shortAppName:(nullable NSString *)shortAppName;
+ init(appName: String, appId: String, languageDesired: SDLLanguage, isMediaApp: Bool, appType: SDLAppHMIType, shortAppName: String?)
+
@@ -153,9 +162,12 @@ @interface SDLRegisterAppInterface : SDLRPCRequest
+ - (instancetype)initWithAppName:(NSString *)appName appId:(NSString *)appId languageDesired:(SDLLanguage)languageDesired isMediaApp:(BOOL)isMediaApp appType:(SDLAppHMIType)appType shortAppName:(nullable NSString *)shortAppName ttsName:(nullable NSArray<SDLTTSChunk *> *)ttsName vrSynonyms:(nullable NSArray<NSString *> *)vrSynonyms hmiDisplayLanguageDesired:(SDLLanguage)hmiDisplayLanguageDesired resumeHash:(nullable NSString *)resumeHash;
+ init(appName: String, appId: String, languageDesired: SDLLanguage, isMediaApp: Bool, appType: SDLAppHMIType, shortAppName: String?, ttsName: [SDLTTSChunk]?, vrSynonyms: [String]?, hmiDisplayLanguageDesired: SDLLanguage, resumeHash: String?)
+
@@ -304,7 +316,7 @@ var isMediaApplication: NSNumber
+ var isMediaApplication: NSNumber & SDLBool { get set }
diff --git a/docs/Classes/SDLRegisterAppInterfaceResponse.html b/docs/Classes/SDLRegisterAppInterfaceResponse.html
index fc9d9affd..8bb1fbc4f 100644
--- a/docs/Classes/SDLRegisterAppInterfaceResponse.html
+++ b/docs/Classes/SDLRegisterAppInterfaceResponse.html
@@ -399,7 +399,7 @@ var supportedDiagModes: [NSNumber
+ var supportedDiagModes: [NSNumber & SDLInt]? { get set }
diff --git a/docs/Classes/SDLRemoteControlCapabilities.html b/docs/Classes/SDLRemoteControlCapabilities.html
index 182d700d3..d1fb39d03 100644
--- a/docs/Classes/SDLRemoteControlCapabilities.html
+++ b/docs/Classes/SDLRemoteControlCapabilities.html
@@ -23,6 +23,13 @@ - (instancetype)initWithClimateControlCapabilities:(nullable NSArray<SDLClimateControlCapabilities *> *)climateControlCapabilities radioControlCapabilities:(nullable NSArray<SDLRadioControlCapabilities *> *)radioControlCapabilities buttonCapabilities:(nullable NSArray<SDLButtonCapabilities *> *)buttonCapabilities;
+
+
+ init(climateControlCapabilities: [SDLClimateControlCapabilities]?, radioControlCapabilities: [SDLRadioControlCapabilities]?, buttonCapabilities: [SDLButtonCapabilities]?)
+
diff --git a/docs/Classes/SDLResetGlobalProperties.html b/docs/Classes/SDLResetGlobalProperties.html
index 3cb741268..06151af57 100644
--- a/docs/Classes/SDLResetGlobalProperties.html
+++ b/docs/Classes/SDLResetGlobalProperties.html
@@ -35,9 +35,12 @@ @interface SDLResetGlobalProperties : SDLRPCRequest
+ - (instancetype)initWithProperties:(NSArray<SDLGlobalProperty> *)properties;
+ init(properties: [SDLGlobalProperty])
+
diff --git a/docs/Classes/SDLScreenParams.html b/docs/Classes/SDLScreenParams.html
index c38304d36..56e4e7fe1 100644
--- a/docs/Classes/SDLScreenParams.html
+++ b/docs/Classes/SDLScreenParams.html
@@ -21,6 +21,13 @@ @property (strong, nonatomic) SDLImageResolution *resolution
+
+
+ var resolution: SDLImageResolution { get set }
+
@@ -32,6 +39,13 @@ @property (nullable, strong, nonatomic) SDLTouchEventCapabilities *touchEventAvailable
+
+
+ var touchEventAvailable: SDLTouchEventCapabilities? { get set }
+
diff --git a/docs/Classes/SDLScrollableMessage.html b/docs/Classes/SDLScrollableMessage.html
index 7b32549c5..c7491fb55 100644
--- a/docs/Classes/SDLScrollableMessage.html
+++ b/docs/Classes/SDLScrollableMessage.html
@@ -31,9 +31,12 @@ @interface SDLScrollableMessage : SDLRPCRequest
+ - (instancetype)initWithMessage:(NSString *)message;
+ init(message: String)
+
@@ -46,9 +49,12 @@ @interface SDLScrollableMessage : SDLRPCRequest
+ - (instancetype)initWithMessage:(NSString *)message timeout:(UInt16)timeout softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
+ init(message: String, timeout: UInt16, softButtons: [SDLSoftButton]?)
+
@@ -92,7 +98,7 @@ var timeout: (NSNumber
+ var timeout: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLSendHapticDataResponse.html b/docs/Classes/SDLSendHapticDataResponse.html
deleted file mode 100644
index 2b6eb13c5..000000000
--- a/docs/Classes/SDLSendHapticDataResponse.html
+++ /dev/null
@@ -1,38 +0,0 @@
-Undocumented
- - -Undocumented
- - - - - - -Undocumented
- - - - - - -- (instancetype)initWithLongitude:(double)longitude latitude:(double)latitude locationName:(nullable NSString *)locationName locationDescription:(nullable NSString *)locationDescription address:(nullable NSArray<NSString *> *)address phoneNumber:(nullable NSString *)phoneNumber image:(nullable SDLImage *)image;
+
+
+ init(longitude: Double, latitude: Double, locationName: String?, locationDescription: String?, address: [String]?, phoneNumber: String?, image: SDLImage?)
+
@@ -42,6 +49,13 @@ - (instancetype)initWithLongitude:(double)longitude latitude:(double)latitude locationName:(nullable NSString *)locationName locationDescription:(nullable NSString *)locationDescription displayAddressLines:(nullable NSArray<NSString *> *)displayAddressLines phoneNumber:(nullable NSString *)phoneNumber image:(nullable SDLImage *)image deliveryMode:(nullable SDLDeliveryMode)deliveryMode timeStamp:(nullable SDLDateTime *)timeStamp address:(nullable SDLOasisAddress *)address;
+
+
+ init(longitude: Double, latitude: Double, locationName: String?, locationDescription: String?, displayAddressLines: [String]?, phoneNumber: String?, image: SDLImage?, deliveryMode: SDLDeliveryMode?, timeStamp: SDLDateTime?, address: SDLOasisAddress?)
+
@@ -61,7 +75,7 @@ @NSCopying var longitudeDegrees: (NSNumber
+ @NSCopying var longitudeDegrees: (NSNumber & SDLFloat)? { get set }
@@ -82,7 +96,7 @@ @NSCopying var latitudeDegrees: (NSNumber
+ @NSCopying var latitudeDegrees: (NSNumber & SDLFloat)? { get set }
diff --git a/docs/Classes/SDLSetAppIcon.html b/docs/Classes/SDLSetAppIcon.html
index 1efb99767..8506905d8 100644
--- a/docs/Classes/SDLSetAppIcon.html
+++ b/docs/Classes/SDLSetAppIcon.html
@@ -26,9 +26,12 @@ @interface SDLSetAppIcon : SDLRPCRequest
+ - (instancetype)initWithFileName:(NSString *)fileName;
+ init(fileName: String)
+
diff --git a/docs/Classes/SDLSetDisplayLayout.html b/docs/Classes/SDLSetDisplayLayout.html
index ac9effe19..d892027c6 100644
--- a/docs/Classes/SDLSetDisplayLayout.html
+++ b/docs/Classes/SDLSetDisplayLayout.html
@@ -26,9 +26,12 @@ @interface SDLSetDisplayLayout : SDLRPCRequest
+ - (instancetype)initWithPredefinedLayout:(SDLPredefinedLayout)predefinedLayout;
+ init(predefinedLayout: SDLPredefinedLayout)
+
@@ -41,9 +44,12 @@ @interface SDLSetDisplayLayout : SDLRPCRequest
+ - (instancetype)initWithLayout:(NSString *)displayLayout;
+ init(layout displayLayout: String)
+
diff --git a/docs/Classes/SDLSetDisplayLayoutResponse.html b/docs/Classes/SDLSetDisplayLayoutResponse.html
index 85a18e236..adda81a3e 100644
--- a/docs/Classes/SDLSetDisplayLayoutResponse.html
+++ b/docs/Classes/SDLSetDisplayLayoutResponse.html
@@ -26,9 +26,12 @@ @interface SDLSetDisplayLayoutResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) SDLDisplayCapabilities *displayCapabilities
+ var displayCapabilities: SDLDisplayCapabilities? { get set }
+
@@ -41,9 +44,12 @@ @interface SDLSetDisplayLayoutResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) NSArray<SDLButtonCapabilities *> *buttonCapabilities
+ var buttonCapabilities: [SDLButtonCapabilities]? { get set }
+
@@ -56,9 +62,12 @@ @interface SDLSetDisplayLayoutResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) NSArray<SDLSoftButtonCapabilities *> *softButtonCapabilities
+ var softButtonCapabilities: [SDLSoftButtonCapabilities]? { get set }
+
@@ -71,9 +80,12 @@ @interface SDLSetDisplayLayoutResponse : SDLRPCResponse
+ @property (nullable, strong, nonatomic) SDLPresetBankCapabilities *presetBankCapabilities
+ var presetBankCapabilities: SDLPresetBankCapabilities? { get set }
+
diff --git a/docs/Classes/SDLSetGlobalProperties.html b/docs/Classes/SDLSetGlobalProperties.html
index 7dd45a5da..77c02e613 100644
--- a/docs/Classes/SDLSetGlobalProperties.html
+++ b/docs/Classes/SDLSetGlobalProperties.html
@@ -37,9 +37,12 @@ @interface SDLSetGlobalProperties : SDLRPCRequest
+ - (instancetype)initWithHelpText:(nullable NSString *)helpText timeoutText:(nullable NSString *)timeoutText;
+ init(helpText: String?, timeoutText: String?)
+
@@ -52,9 +55,12 @@ @interface SDLSetGlobalProperties : SDLRPCRequest
+ - (instancetype)initWithHelpText:(nullable NSString *)helpText timeoutText:(nullable NSString *)timeoutText vrHelpTitle:(nullable NSString *)vrHelpTitle vrHelp:(nullable NSArray<SDLVRHelpItem *> *)vrHelp;
+ init(helpText: String?, timeoutText: String?, vrHelpTitle: String?, vrHelp: [SDLVRHelpItem]?)
+
@@ -67,9 +73,12 @@ @interface SDLSetGlobalProperties : SDLRPCRequest
+ - (instancetype)initWithHelpText:(nullable NSString *)helpText timeoutText:(nullable NSString *)timeoutText vrHelpTitle:(nullable NSString *)vrHelpTitle vrHelp:(nullable NSArray<SDLVRHelpItem *> *)vrHelp menuTitle:(nullable NSString *)menuTitle menuIcon:(nullable SDLImage *)menuIcon keyboardProperties:(nullable SDLKeyboardProperties *)keyboardProperties;
+ init(helpText: String?, timeoutText: String?, vrHelpTitle: String?, vrHelp: [SDLVRHelpItem]?, menuTitle: String?, menuIcon: SDLImage?, keyboardProperties: SDLKeyboardProperties?)
+
@@ -198,9 +207,12 @@ @interface SDLSetGlobalProperties : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSString *menuTitle
+ var menuTitle: String? { get set }
+
@@ -213,9 +225,12 @@ @interface SDLSetGlobalProperties : SDLRPCRequest
+ @property (strong, nonatomic, nullable) SDLImage *menuIcon
+ var menuIcon: SDLImage? { get set }
+
@@ -228,9 +243,12 @@ @interface SDLSetGlobalProperties : SDLRPCRequest
+ @property (strong, nonatomic, nullable) SDLKeyboardProperties *keyboardProperties
+ var keyboardProperties: SDLKeyboardProperties? { get set }
+
diff --git a/docs/Classes/SDLSetInteriorVehicleData.html b/docs/Classes/SDLSetInteriorVehicleData.html
index 6f970b22e..c702dfb5b 100644
--- a/docs/Classes/SDLSetInteriorVehicleData.html
+++ b/docs/Classes/SDLSetInteriorVehicleData.html
@@ -23,9 +23,12 @@ @interface SDLSetInteriorVehicleData : SDLRPCRequest
+ - (instancetype)initWithModuleData:(SDLModuleData *)moduleData;
+ init(moduleData: SDLModuleData)
+
diff --git a/docs/Classes/SDLSetMediaClockTimer.html b/docs/Classes/SDLSetMediaClockTimer.html
index c3db6c049..d23705001 100644
--- a/docs/Classes/SDLSetMediaClockTimer.html
+++ b/docs/Classes/SDLSetMediaClockTimer.html
@@ -32,9 +32,12 @@ @interface SDLSetMediaClockTimer : SDLRPCRequest
+ - (instancetype)initWithUpdateMode:(SDLUpdateMode)updateMode hours:(UInt8)hours minutes:(UInt8)minutes seconds:(UInt8)seconds;
+ init(updateMode: SDLUpdateMode, hours: UInt8, minutes: UInt8, seconds: UInt8)
+
@@ -47,9 +50,12 @@ @interface SDLSetMediaClockTimer : SDLRPCRequest
+ - (instancetype)initWithUpdateMode:(SDLUpdateMode)updateMode;
+ init(updateMode: SDLUpdateMode)
+
diff --git a/docs/Classes/SDLShow.html b/docs/Classes/SDLShow.html
index 69345b399..f8ebbdc3c 100644
--- a/docs/Classes/SDLShow.html
+++ b/docs/Classes/SDLShow.html
@@ -58,9 +58,12 @@ @interface SDLShow : SDLRPCRequest
+ - (instancetype)initWithMainField1:(nullable NSString *)mainField1 mainField2:(nullable NSString *)mainField2 alignment:(nullable SDLTextAlignment)alignment;
+ init(mainField1: String?, mainField2: String?, alignment: SDLTextAlignment?)
+
@@ -73,9 +76,12 @@ @interface SDLShow : SDLRPCRequest
+ - (instancetype)initWithMainField1:(nullable NSString *)mainField1 mainField1Type:(nullable SDLMetadataType)mainField1Type mainField2:(nullable NSString *)mainField2 mainField2Type:(nullable SDLMetadataType)mainField2Type alignment:(nullable SDLTextAlignment)alignment;
+ init(mainField1: String?, mainField1Type: SDLMetadataType?, mainField2: String?, mainField2Type: SDLMetadataType?, alignment: SDLTextAlignment?)
+
@@ -88,9 +94,12 @@ @interface SDLShow : SDLRPCRequest
+ - (instancetype)initWithMainField1:(nullable NSString *)mainField1 mainField2:(nullable NSString *)mainField2 mainField3:(nullable NSString *)mainField3 mainField4:(nullable NSString *)mainField4 alignment:(nullable SDLTextAlignment)alignment;
+ init(mainField1: String?, mainField2: String?, mainField3: String?, mainField4: String?, alignment: SDLTextAlignment?)
+
@@ -103,9 +112,12 @@ @interface SDLShow : SDLRPCRequest
+ - (instancetype)initWithMainField1:(nullable NSString *)mainField1 mainField1Type:(nullable SDLMetadataType)mainField1Type mainField2:(nullable NSString *)mainField2 mainField2Type:(nullable SDLMetadataType)mainField2Type mainField3:(nullable NSString *)mainField3 mainField3Type:(nullable SDLMetadataType)mainField3Type mainField4:(nullable NSString *)mainField4 mainField4Type:(nullable SDLMetadataType)mainField4Type alignment:(nullable SDLTextAlignment)alignment;
+ init(mainField1: String?, mainField1Type: SDLMetadataType?, mainField2: String?, mainField2Type: SDLMetadataType?, mainField3: String?, mainField3Type: SDLMetadataType?, mainField4: String?, mainField4Type: SDLMetadataType?, alignment: SDLTextAlignment?)
+
@@ -118,9 +130,12 @@ @interface SDLShow : SDLRPCRequest
+ - (instancetype)initWithMainField1:(nullable NSString *)mainField1 mainField2:(nullable NSString *)mainField2 alignment:(nullable SDLTextAlignment)alignment statusBar:(nullable NSString *)statusBar mediaClock:(nullable NSString *)mediaClock mediaTrack:(nullable NSString *)mediaTrack;
+ init(mainField1: String?, mainField2: String?, alignment: SDLTextAlignment?, statusBar: String?, mediaClock: String?, mediaTrack: String?)
+
@@ -133,9 +148,12 @@ @interface SDLShow : SDLRPCRequest
+ - (instancetype)initWithMainField1:(nullable NSString *)mainField1 mainField2:(nullable NSString *)mainField2 mainField3:(nullable NSString *)mainField3 mainField4:(nullable NSString *)mainField4 alignment:(nullable SDLTextAlignment)alignment statusBar:(nullable NSString *)statusBar mediaClock:(nullable NSString *)mediaClock mediaTrack:(nullable NSString *)mediaTrack graphic:(nullable SDLImage *)graphic softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons customPresets:(nullable NSArray<NSString *> *)customPresets textFieldMetadata:(nullable SDLMetadataTags *)metadata;
+ init(mainField1: String?, mainField2: String?, mainField3: String?, mainField4: String?, alignment: SDLTextAlignment?, statusBar: String?, mediaClock: String?, mediaTrack: String?, graphic: SDLImage?, softButtons: [SDLSoftButton]?, customPresets: [String]?, textFieldMetadata metadata: SDLMetadataTags?)
+
diff --git a/docs/Classes/SDLShowConstantTBT.html b/docs/Classes/SDLShowConstantTBT.html
index db614ddb0..37b8c9b6d 100644
--- a/docs/Classes/SDLShowConstantTBT.html
+++ b/docs/Classes/SDLShowConstantTBT.html
@@ -39,9 +39,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ - (instancetype)initWithNavigationText1:(nullable NSString *)navigationText1 navigationText2:(nullable NSString *)navigationText2 eta:(nullable NSString *)eta timeToDestination:(nullable NSString *)timeToDestination totalDistance:(nullable NSString *)totalDistance turnIcon:(nullable SDLImage *)turnIcon nextTurnIcon:(nullable SDLImage *)nextTurnIcon distanceToManeuver:(double)distanceToManeuver distanceToManeuverScale:(double)distanceToManeuverScale maneuverComplete:(BOOL)maneuverComplete softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
+ init(navigationText1: String?, navigationText2: String?, eta: String?, timeToDestination: String?, totalDistance: String?, turnIcon: SDLImage?, nextTurnIcon: SDLImage?, distanceToManeuver: Double, distanceToManeuverScale: Double, maneuverComplete: Bool, softButtons: [SDLSoftButton]?)
+
@@ -54,9 +57,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSString *navigationText1
+ var navigationText1: String? { get set }
+
@@ -69,9 +75,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSString *navigationText2
+ var navigationText2: String? { get set }
+
@@ -84,9 +93,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSString *eta
+ var eta: String? { get set }
+
@@ -99,9 +111,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSString *timeToDestination
+ var timeToDestination: String? { get set }
+
@@ -114,9 +129,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSString *totalDistance
+ var totalDistance: String? { get set }
+
@@ -129,9 +147,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) SDLImage *turnIcon
+ var turnIcon: SDLImage? { get set }
+
@@ -144,9 +165,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) SDLImage *nextTurnIcon
+ var nextTurnIcon: SDLImage? { get set }
+
@@ -159,9 +183,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLFloat> *distanceToManeuver
+ var distanceToManeuver: (NSNumber & SDLFloat)? { get set }
+
@@ -174,9 +201,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLFloat> *distanceToManeuverScale
+ var distanceToManeuverScale: (NSNumber & SDLFloat)? { get set }
+
@@ -189,9 +219,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *maneuverComplete
+ var maneuverComplete: (NSNumber & SDLBool)? { get set }
+
@@ -204,9 +237,12 @@ @interface SDLShowConstantTBT : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSArray<SDLSoftButton *> *softButtons
+ var softButtons: [SDLSoftButton]? { get set }
+
diff --git a/docs/Classes/SDLSlider.html b/docs/Classes/SDLSlider.html
index 7081948b0..8e083c584 100644
--- a/docs/Classes/SDLSlider.html
+++ b/docs/Classes/SDLSlider.html
@@ -32,9 +32,12 @@ @interface SDLSlider : SDLRPCRequest
+ - (instancetype)initWithNumTicks:(UInt8)numTicks position:(UInt8)position;
+ init(numTicks: UInt8, position: UInt8)
+
@@ -47,9 +50,12 @@ @interface SDLSlider : SDLRPCRequest
+ - (instancetype)initWithNumTicks:(UInt8)numTicks position:(UInt8)position sliderHeader:(NSString *)sliderHeader sliderFooter:(nullable NSString *)sliderFooter timeout:(UInt16)timeout;
+ init(numTicks: UInt8, position: UInt8, sliderHeader: String, sliderFooter: String?, timeout: UInt16)
+
@@ -62,9 +68,12 @@ @interface SDLSlider : SDLRPCRequest
+ - (instancetype)initWithNumTicks:(UInt8)numTicks position:(UInt8)position sliderHeader:(NSString *)sliderHeader sliderFooters:(nullable NSArray<NSString *> *)sliderFooters timeout:(UInt16)timeout;
+ init(numTicks: UInt8, position: UInt8, sliderHeader: String, sliderFooters: [String]?, timeout: UInt16)
+
@@ -83,7 +92,7 @@ var numTicks: NSNumber
+ var numTicks: NSNumber & SDLInt { get set }
@@ -103,7 +112,7 @@ var position: NSNumber
+ var position: NSNumber & SDLInt { get set }
@@ -176,7 +185,7 @@ var timeout: (NSNumber
+ var timeout: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLSliderResponse.html b/docs/Classes/SDLSliderResponse.html
index 90a0b1847..9d75ea791 100644
--- a/docs/Classes/SDLSliderResponse.html
+++ b/docs/Classes/SDLSliderResponse.html
@@ -28,7 +28,7 @@ var sliderPosition: (NSNumber
+ var sliderPosition: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLSoftButton.html b/docs/Classes/SDLSoftButton.html
index c8197eeff..76a2b748a 100644
--- a/docs/Classes/SDLSoftButton.html
+++ b/docs/Classes/SDLSoftButton.html
@@ -28,6 +28,13 @@ - (instancetype)initWithHandler:(nullable SDLRPCButtonNotificationHandler)handler;
+
+
+ init(handler: SDLRPCButtonNotificationHandler? = nil)
+
@@ -39,6 +46,13 @@ - (instancetype)initWithType:(SDLSoftButtonType)type text:(nullable NSString *)text image:(nullable SDLImage *)image highlighted:(BOOL)highlighted buttonId:(UInt16)buttonId systemAction:(nullable SDLSystemAction)systemAction handler:(nullable SDLRPCButtonNotificationHandler)handler;
+
+
+ init(type: SDLSoftButtonType, text: String?, image: SDLImage?, highlighted: Bool, buttonId: UInt16, systemAction: SDLSystemAction?, handler: SDLRPCButtonNotificationHandler? = nil)
+
@@ -50,6 +64,13 @@ @property (copy, nonatomic) SDLRPCButtonNotificationHandler handler
+
+
+ var handler: SDLRPCButtonNotificationHandler { get set }
+
@@ -61,6 +82,13 @@ @property (strong, nonatomic) SDLSoftButtonType type
+
+
+ var type: SDLSoftButtonType { get set }
+
@@ -72,6 +100,13 @@ @property (strong, nonatomic, nullable) NSString *text
+
+
+ var text: String? { get set }
+
@@ -83,6 +118,13 @@ @property (strong, nonatomic, nullable) SDLImage *image
+
+
+ var image: SDLImage? { get set }
+
@@ -94,6 +136,13 @@ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *isHighlighted
+
+
+ var isHighlighted: (NSNumber & SDLBool)? { get set }
+
@@ -105,6 +154,13 @@ @property (strong, nonatomic) NSNumber<SDLInt> *softButtonID
+
+
+ var softButtonID: NSNumber & SDLInt { get set }
+
@@ -116,6 +172,13 @@ @property (strong, nonatomic, nullable) SDLSystemAction systemAction
+
+
+ var systemAction: SDLSystemAction? { get set }
+
diff --git a/docs/Classes/SDLSoftButtonCapabilities.html b/docs/Classes/SDLSoftButtonCapabilities.html
index ec25b9809..a626ff663 100644
--- a/docs/Classes/SDLSoftButtonCapabilities.html
+++ b/docs/Classes/SDLSoftButtonCapabilities.html
@@ -35,7 +35,7 @@ var shortPressAvailable: NSNumber
+ var shortPressAvailable: NSNumber & SDLBool { get set }
@@ -58,7 +58,7 @@ var longPressAvailable: NSNumber
+ var longPressAvailable: NSNumber & SDLBool { get set }
@@ -81,7 +81,7 @@ var upDownAvailable: NSNumber
+ var upDownAvailable: NSNumber & SDLBool { get set }
@@ -102,7 +102,7 @@ var imageSupported: NSNumber
+ var imageSupported: NSNumber & SDLBool { get set }
diff --git a/docs/Classes/SDLSpeak.html b/docs/Classes/SDLSpeak.html
index dac4331d9..c0dae9390 100644
--- a/docs/Classes/SDLSpeak.html
+++ b/docs/Classes/SDLSpeak.html
@@ -57,9 +57,12 @@ @interface SDLSpeak : SDLRPCRequest
+ - (instancetype)initWithTTS:(NSString *)ttsText;
+ init(tts ttsText: String)
+
@@ -72,9 +75,12 @@ @interface SDLSpeak : SDLRPCRequest
+ - (instancetype)initWithTTSChunks:(NSArray<SDLTTSChunk *> *)ttsChunks;
+ init(ttsChunks: [SDLTTSChunk])
+
diff --git a/docs/Classes/SDLStartTime.html b/docs/Classes/SDLStartTime.html
index 0a16d843c..403df0aed 100644
--- a/docs/Classes/SDLStartTime.html
+++ b/docs/Classes/SDLStartTime.html
@@ -26,9 +26,12 @@ @interface SDLStartTime : SDLRPCStruct
+ - (instancetype)initWithHours:(UInt8)hours minutes:(UInt8)minutes seconds:(UInt8)seconds;
+ init(hours: UInt8, minutes: UInt8, seconds: UInt8)
+
@@ -49,7 +52,7 @@ var hours: NSNumber
+ var hours: NSNumber & SDLInt { get set }
@@ -69,7 +72,7 @@ var minutes: NSNumber
+ var minutes: NSNumber & SDLInt { get set }
@@ -89,7 +92,7 @@ var seconds: NSNumber
+ var seconds: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLStreamingMediaManager.html b/docs/Classes/SDLStreamingMediaManager.html
index 879455738..34563b3a5 100644
--- a/docs/Classes/SDLStreamingMediaManager.html
+++ b/docs/Classes/SDLStreamingMediaManager.html
@@ -294,6 +294,10 @@ - (instancetype)init NS_UNAVAILABLE;
+
+
@@ -367,7 +371,7 @@ This method receives raw image data and will run iOS8+’s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit.
+This method receives raw image data and will run iOS8+‘s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit.
@@ -394,7 +398,7 @@This method receives raw image data and will run iOS8+’s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit.
+This method receives raw image data and will run iOS8+‘s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit.
diff --git a/docs/Classes/SDLSubscribeButton.html b/docs/Classes/SDLSubscribeButton.html index 1e7151503..b63b3f1e5 100644 --- a/docs/Classes/SDLSubscribeButton.html +++ b/docs/Classes/SDLSubscribeButton.html @@ -99,9 +99,12 @@@interface SDLSubscribeButton : SDLRPCRequest
+ - (instancetype)initWithButtonName:(SDLButtonName)buttonName handler:(nullable SDLRPCButtonNotificationHandler)handler;
+ init(buttonName: SDLButtonName, handler: SDLRPCButtonNotificationHandler? = nil)
+
diff --git a/docs/Classes/SDLSubscribeVehicleData.html b/docs/Classes/SDLSubscribeVehicleData.html
index d8c0d7e13..bb7edbd7b 100644
--- a/docs/Classes/SDLSubscribeVehicleData.html
+++ b/docs/Classes/SDLSubscribeVehicleData.html
@@ -57,9 +57,12 @@ @interface SDLSubscribeVehicleData : SDLRPCRequest
+ - (instancetype)initWithAccelerationPedalPosition:(BOOL)accelerationPedalPosition airbagStatus:(BOOL)airbagStatus beltStatus:(BOOL)beltStatus bodyInformation:(BOOL)bodyInformation clusterModeStatus:(BOOL)clusterModeStatus deviceStatus:(BOOL)deviceStatus driverBraking:(BOOL)driverBraking eCallInfo:(BOOL)eCallInfo emergencyEvent:(BOOL)emergencyEvent engineTorque:(BOOL)engineTorque externalTemperature:(BOOL)externalTemperature fuelLevel:(BOOL)fuelLevel fuelLevelState:(BOOL)fuelLevelState gps:(BOOL)gps headLampStatus:(BOOL)headLampStatus instantFuelConsumption:(BOOL)instantFuelConsumption myKey:(BOOL)myKey odometer:(BOOL)odometer prndl:(BOOL)prndl rpm:(BOOL)rpm speed:(BOOL)speed steeringWheelAngle:(BOOL)steeringWheelAngle tirePressure:(BOOL)tirePressure wiperStatus:(BOOL)wiperStatus;
+ init(accelerationPedalPosition: Bool, airbagStatus: Bool, beltStatus: Bool, bodyInformation: Bool, clusterModeStatus: Bool, deviceStatus: Bool, driverBraking: Bool, eCallInfo: Bool, emergencyEvent: Bool, engineTorque: Bool, externalTemperature: Bool, fuelLevel: Bool, fuelLevelState: Bool, gps: Bool, headLampStatus: Bool, instantFuelConsumption: Bool, myKey: Bool, odometer: Bool, prndl: Bool, rpm: Bool, speed: Bool, steeringWheelAngle: Bool, tirePressure: Bool, wiperStatus: Bool)
+
@@ -76,7 +79,7 @@ var gps: (NSNumber
+ var gps: (NSNumber & SDLBool)? { get set }
@@ -94,7 +97,7 @@ var speed: (NSNumber
+ var speed: (NSNumber & SDLBool)? { get set }
@@ -112,7 +115,7 @@ var rpm: (NSNumber
+ var rpm: (NSNumber & SDLBool)? { get set }
@@ -130,7 +133,7 @@ var fuelLevel: (NSNumber
+ var fuelLevel: (NSNumber & SDLBool)? { get set }
@@ -149,7 +152,7 @@ var fuelLevel_State: (NSNumber
+ var fuelLevel_State: (NSNumber & SDLBool)? { get set }
@@ -168,7 +171,7 @@ var instantFuelConsumption: (NSNumber
+ var instantFuelConsumption: (NSNumber & SDLBool)? { get set }
@@ -187,7 +190,7 @@ var externalTemperature: (NSNumber
+ var externalTemperature: (NSNumber & SDLBool)? { get set }
@@ -205,7 +208,7 @@ var prndl: (NSNumber
+ var prndl: (NSNumber & SDLBool)? { get set }
@@ -224,7 +227,7 @@ var tirePressure: (NSNumber
+ var tirePressure: (NSNumber & SDLBool)? { get set }
@@ -242,7 +245,7 @@ var odometer: (NSNumber
+ var odometer: (NSNumber & SDLBool)? { get set }
@@ -260,7 +263,7 @@ var beltStatus: (NSNumber
+ var beltStatus: (NSNumber & SDLBool)? { get set }
@@ -279,7 +282,7 @@ var bodyInformation: (NSNumber
+ var bodyInformation: (NSNumber & SDLBool)? { get set }
@@ -298,7 +301,7 @@ var deviceStatus: (NSNumber
+ var deviceStatus: (NSNumber & SDLBool)? { get set }
@@ -317,7 +320,7 @@ var driverBraking: (NSNumber
+ var driverBraking: (NSNumber & SDLBool)? { get set }
@@ -336,7 +339,7 @@ var wiperStatus: (NSNumber
+ var wiperStatus: (NSNumber & SDLBool)? { get set }
@@ -355,7 +358,7 @@ var headLampStatus: (NSNumber
+ var headLampStatus: (NSNumber & SDLBool)? { get set }
@@ -374,7 +377,7 @@ var engineTorque: (NSNumber
+ var engineTorque: (NSNumber & SDLBool)? { get set }
@@ -394,7 +397,7 @@ var accPedalPosition: (NSNumber
+ var accPedalPosition: (NSNumber & SDLBool)? { get set }
@@ -414,7 +417,7 @@ var steeringWheelAngle: (NSNumber
+ var steeringWheelAngle: (NSNumber & SDLBool)? { get set }
@@ -428,9 +431,12 @@ @interface SDLSubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *eCallInfo
+ var eCallInfo: (NSNumber & SDLBool)? { get set }
+
@@ -443,9 +449,12 @@ @interface SDLSubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *airbagStatus
+ var airbagStatus: (NSNumber & SDLBool)? { get set }
+
@@ -458,9 +467,12 @@ @interface SDLSubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *emergencyEvent
+ var emergencyEvent: (NSNumber & SDLBool)? { get set }
+
@@ -473,9 +485,12 @@ @interface SDLSubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *clusterModeStatus
+ var clusterModeStatus: (NSNumber & SDLBool)? { get set }
+
@@ -488,9 +503,12 @@ @interface SDLSubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *myKey
+ var myKey: (NSNumber & SDLBool)? { get set }
+
diff --git a/docs/Classes/SDLSubscribeVehicleDataResponse.html b/docs/Classes/SDLSubscribeVehicleDataResponse.html
index a4dca20e2..abb9ba810 100644
--- a/docs/Classes/SDLSubscribeVehicleDataResponse.html
+++ b/docs/Classes/SDLSubscribeVehicleDataResponse.html
@@ -403,9 +403,12 @@ @interface SDLSubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *eCallInfo
+ var eCallInfo: SDLVehicleDataResult? { get set }
+
@@ -418,9 +421,12 @@ @interface SDLSubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *airbagStatus
+ var airbagStatus: SDLVehicleDataResult? { get set }
+
@@ -433,9 +439,12 @@ @interface SDLSubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *emergencyEvent
+ var emergencyEvent: SDLVehicleDataResult? { get set }
+
@@ -448,9 +457,12 @@ @interface SDLSubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *clusterModes
+ var clusterModes: SDLVehicleDataResult? { get set }
+
@@ -463,9 +475,12 @@ @interface SDLSubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *myKey
+ var myKey: SDLVehicleDataResult? { get set }
+
diff --git a/docs/Classes/SDLSyncMsgVersion.html b/docs/Classes/SDLSyncMsgVersion.html
index 5a2a668da..3908b76a7 100644
--- a/docs/Classes/SDLSyncMsgVersion.html
+++ b/docs/Classes/SDLSyncMsgVersion.html
@@ -26,9 +26,12 @@ @interface SDLSyncMsgVersion : SDLRPCStruct
+ - (instancetype)initWithMajorVersion:(UInt8)majorVersion minorVersion:(UInt8)minorVersion patchVersion:(UInt8)patchVersion;
+ init(majorVersion: UInt8, minorVersion: UInt8, patchVersion: UInt8)
+
@@ -47,7 +50,7 @@ var majorVersion: NSNumber
+ var majorVersion: NSNumber & SDLInt { get set }
@@ -67,7 +70,7 @@ var minorVersion: NSNumber
+ var minorVersion: NSNumber & SDLInt { get set }
@@ -86,7 +89,7 @@ var patchVersion: (NSNumber
+ var patchVersion: (NSNumber & SDLInt)? { get set }
diff --git a/docs/Classes/SDLSystemCapability.html b/docs/Classes/SDLSystemCapability.html
index 9d9ba02fb..8663fc463 100644
--- a/docs/Classes/SDLSystemCapability.html
+++ b/docs/Classes/SDLSystemCapability.html
@@ -33,9 +33,12 @@ @interface SDLSystemCapability : SDLRPCStruct
+ - (instancetype)initWithNavigationCapability:(SDLNavigationCapability *)capability;
+ init(navigationCapability capability: SDLNavigationCapability)
+
@@ -48,9 +51,12 @@ @interface SDLSystemCapability : SDLRPCStruct
+ - (instancetype)initWithPhoneCapability:(SDLPhoneCapability *)capability;
+ init(phoneCapability capability: SDLPhoneCapability)
+
@@ -63,9 +69,12 @@ @interface SDLSystemCapability : SDLRPCStruct
+ - (instancetype)initWithVideoStreamingCapability:(SDLVideoStreamingCapability *)capability;
+ init(videoStreamingCapability capability: SDLVideoStreamingCapability)
+
@@ -78,9 +87,12 @@ @interface SDLSystemCapability : SDLRPCStruct
+ - (instancetype)initWithRemoteControlCapability:(SDLRemoteControlCapabilities *)capability;
+ init(remoteControlCapability capability: SDLRemoteControlCapabilities)
+
@@ -93,9 +105,12 @@ @interface SDLSystemCapability : SDLRPCStruct
+ @property (strong, nonatomic) SDLSystemCapabilityType systemCapabilityType
+ var systemCapabilityType: SDLSystemCapabilityType { get set }
+
@@ -108,9 +123,12 @@ @interface SDLSystemCapability : SDLRPCStruct
+ @property (nullable, strong, nonatomic) SDLNavigationCapability *navigationCapability
+ var navigationCapability: SDLNavigationCapability? { get set }
+
@@ -123,9 +141,12 @@ @interface SDLSystemCapability : SDLRPCStruct
+ @property (nullable, strong, nonatomic) SDLPhoneCapability *phoneCapability
+ var phoneCapability: SDLPhoneCapability? { get set }
+
@@ -138,9 +159,12 @@ @interface SDLSystemCapability : SDLRPCStruct
+ @property (nullable, strong, nonatomic) SDLVideoStreamingCapability *videoStreamingCapability
+ var videoStreamingCapability: SDLVideoStreamingCapability? { get set }
+
@@ -153,9 +177,12 @@ @interface SDLSystemCapability : SDLRPCStruct
+ @property (nullable, strong, nonatomic) SDLRemoteControlCapabilities *remoteControlCapability
+ var remoteControlCapability: SDLRemoteControlCapabilities? { get set }
+
diff --git a/docs/Classes/SDLSystemCapabilityType.html b/docs/Classes/SDLSystemCapabilityType.html
deleted file mode 100644
index 704e402bc..000000000
--- a/docs/Classes/SDLSystemCapabilityType.html
+++ /dev/null
@@ -1,122 +0,0 @@
-The type of system capability to get more information on
- - -Convert String to SDLSystemCapabilityType
- - - -+ (SDLSystemCapabilityType *)valueOf:(NSString *)value;
-
-
- class func value(of value: String!) -> SDLSystemCapabilityType!
-
-
-
- String
SDLSystemCapabilityType
-Returns an array of all possible SDLSystemCapabilityType values
- - - -+ (NSArray *)values;
-
-
- class func values() -> [Any]!
-
-
-
- an array that store all possible SDLSystemCapabilityType
-@abstract NAVIGATION
- - - -+ (SDLSystemCapabilityType *)NAVIGATION;
-
-
- class func navigation() -> SDLSystemCapabilityType!
-
-
-
-
- @abstract PHONE_CALL
- - - -+ (SDLSystemCapabilityType *)PHONE_CALL;
-
-
- class func phone_CALL() -> SDLSystemCapabilityType!
-
-
-
-
- @abstract VIDEO_STREAMING
- - - -+ (SDLSystemCapabilityType *)VIDEO_STREAMING;
-
-
- class func video_STREAMING() -> SDLSystemCapabilityType!
-
-
-
-
-_Nullable CFSocketRef socket
+
+
@@ -33,6 +37,13 @@ @property (strong, nonatomic) NSString *hostName
+
+
+ var hostName: String { get set }
+
@@ -44,6 +55,13 @@ @property (strong, nonatomic) NSString *portNumber
+
+
+ var portNumber: String { get set }
+
diff --git a/docs/Classes/SDLTTSChunk.html b/docs/Classes/SDLTTSChunk.html
index ca05f3cd8..259069097 100644
--- a/docs/Classes/SDLTTSChunk.html
+++ b/docs/Classes/SDLTTSChunk.html
@@ -56,9 +56,12 @@ @interface SDLTTSChunk : SDLRPCStruct
+ - (instancetype)initWithText:(NSString *)text type:(SDLSpeechCapabilities)type;
+ init(text: String, type: SDLSpeechCapabilities)
+
@@ -71,9 +74,12 @@ @interface SDLTTSChunk : SDLRPCStruct
+ + (NSArray<SDLTTSChunk *> *)textChunksFromString:(NSString *)string;
+ class func textChunks(from string: String) -> [SDLTTSChunk]
+
@@ -86,9 +92,12 @@ @interface SDLTTSChunk : SDLRPCStruct
+ + (NSArray<SDLTTSChunk *> *)sapiChunksFromString:(NSString *)string;
+ class func sapiChunks(from string: String) -> [SDLTTSChunk]
+
@@ -101,9 +110,12 @@ @interface SDLTTSChunk : SDLRPCStruct
+ + (NSArray<SDLTTSChunk *> *)lhPlusChunksFromString:(NSString *)string;
+ class func lhPlusChunks(from string: String) -> [SDLTTSChunk]
+
@@ -116,9 +128,12 @@ @interface SDLTTSChunk : SDLRPCStruct
+ + (NSArray<SDLTTSChunk *> *)prerecordedChunksFromString:(NSString *)string;
+ class func prerecordedChunks(from string: String) -> [SDLTTSChunk]
+
@@ -131,9 +146,12 @@ @interface SDLTTSChunk : SDLRPCStruct
+ + (NSArray<SDLTTSChunk *> *)silenceChunks;
+ class func silenceChunks() -> [SDLTTSChunk]
+
diff --git a/docs/Classes/SDLTemperature.html b/docs/Classes/SDLTemperature.html
index 5b1cd02e4..d84c3093a 100644
--- a/docs/Classes/SDLTemperature.html
+++ b/docs/Classes/SDLTemperature.html
@@ -22,6 +22,13 @@ - (instancetype)initWithUnit:(SDLTemperatureUnit)unit value:(float)value;
+
+
+ init(unit: SDLTemperatureUnit, value: Float)
+
@@ -58,7 +65,7 @@ var value: NSNumber
+ var value: NSNumber & SDLFloat { get set }
diff --git a/docs/Classes/SDLTextField.html b/docs/Classes/SDLTextField.html
index bc0731b23..1a83fdcec 100644
--- a/docs/Classes/SDLTextField.html
+++ b/docs/Classes/SDLTextField.html
@@ -126,7 +126,7 @@ var width: NSNumber
+ var width: NSNumber & SDLInt { get set }
@@ -146,7 +146,7 @@ var rows: NSNumber
+ var rows: NSNumber & SDLInt { get set }
diff --git a/docs/Classes/SDLTireStatus.html b/docs/Classes/SDLTireStatus.html
index f07b2a1b6..2301f86c7 100644
--- a/docs/Classes/SDLTireStatus.html
+++ b/docs/Classes/SDLTireStatus.html
@@ -26,6 +26,13 @@ @property (strong, nonatomic) SDLWarningLightStatus pressureTelltale
+
+
+ var pressureTelltale: SDLWarningLightStatus { get set }
+
@@ -37,6 +44,13 @@ @property (strong, nonatomic) SDLSingleTireStatus *leftFront
+
+
+ var leftFront: SDLSingleTireStatus { get set }
+
@@ -48,6 +62,13 @@ @property (strong, nonatomic) SDLSingleTireStatus *rightFront
+
+
+ var rightFront: SDLSingleTireStatus { get set }
+
@@ -59,6 +80,13 @@ @property (strong, nonatomic) SDLSingleTireStatus *leftRear
+
+
+ var leftRear: SDLSingleTireStatus { get set }
+
@@ -70,6 +98,13 @@ @property (strong, nonatomic) SDLSingleTireStatus *rightRear
+
+
+ var rightRear: SDLSingleTireStatus { get set }
+
@@ -81,6 +116,13 @@ @property (strong, nonatomic) SDLSingleTireStatus *innerLeftRear
+
+
+ var innerLeftRear: SDLSingleTireStatus { get set }
+
@@ -92,6 +134,13 @@ @property (strong, nonatomic) SDLSingleTireStatus *innerRightRear
+
+
+ var innerRightRear: SDLSingleTireStatus { get set }
+
diff --git a/docs/Classes/SDLTouchCoord.html b/docs/Classes/SDLTouchCoord.html
index 7bb7a86ff..7e3cc1d16 100644
--- a/docs/Classes/SDLTouchCoord.html
+++ b/docs/Classes/SDLTouchCoord.html
@@ -21,6 +21,13 @@ @property (strong, nonatomic) NSNumber<SDLFloat> *x
+
+
+ var x: NSNumber & SDLFloat { get set }
+
@@ -32,6 +39,13 @@ @property (strong, nonatomic) NSNumber<SDLFloat> *y
+
+
+ var y: NSNumber & SDLFloat { get set }
+
diff --git a/docs/Classes/SDLTouchEvent.html b/docs/Classes/SDLTouchEvent.html
index 6e6284586..ba832c6ec 100644
--- a/docs/Classes/SDLTouchEvent.html
+++ b/docs/Classes/SDLTouchEvent.html
@@ -31,7 +31,7 @@ var touchEventId: NSNumber
+ var touchEventId: NSNumber & SDLInt { get set }
@@ -58,7 +58,7 @@ var timeStamp: [NSNumber
+ var timeStamp: [NSNumber & SDLInt] { get set }
diff --git a/docs/Classes/SDLTouchEventCapabilities.html b/docs/Classes/SDLTouchEventCapabilities.html
index b360bd919..162921d0f 100644
--- a/docs/Classes/SDLTouchEventCapabilities.html
+++ b/docs/Classes/SDLTouchEventCapabilities.html
@@ -22,6 +22,13 @@ @property (strong, nonatomic) NSNumber<SDLBool> *pressAvailable
+
+
+ var pressAvailable: NSNumber & SDLBool { get set }
+
@@ -33,6 +40,13 @@ @property (strong, nonatomic) NSNumber<SDLBool> *multiTouchAvailable
+
+
+ var multiTouchAvailable: NSNumber & SDLBool { get set }
+
@@ -44,6 +58,13 @@ @property (strong, nonatomic) NSNumber<SDLBool> *doublePressAvailable
+
+
+ var doublePressAvailable: NSNumber & SDLBool { get set }
+
diff --git a/docs/Classes/SDLTouchManager.html b/docs/Classes/SDLTouchManager.html
index fa9fcc870..2d1d87025 100644
--- a/docs/Classes/SDLTouchManager.html
+++ b/docs/Classes/SDLTouchManager.html
@@ -174,6 +174,10 @@ - (instancetype)init NS_UNAVAILABLE;
+
+
diff --git a/docs/Classes/SDLTurn.html b/docs/Classes/SDLTurn.html
index 81a4f3a0d..b122bb71d 100644
--- a/docs/Classes/SDLTurn.html
+++ b/docs/Classes/SDLTurn.html
@@ -22,6 +22,13 @@ - (instancetype)initWithNavigationText:(nullable NSString *)navigationText turnIcon:(nullable SDLImage *)icon;
+
+
+ init(navigationText: String?, turnIcon icon: SDLImage?)
+
@@ -33,6 +40,13 @@ @property (strong, nonatomic, nullable) NSString *navigationText
+
+
+ var navigationText: String? { get set }
+
@@ -44,6 +58,13 @@ @property (strong, nonatomic, nullable) SDLImage *turnIcon
+
+
+ var turnIcon: SDLImage? { get set }
+
diff --git a/docs/Classes/SDLUnsubscribeButton.html b/docs/Classes/SDLUnsubscribeButton.html
index b4a0abf34..7d0bed6ba 100644
--- a/docs/Classes/SDLUnsubscribeButton.html
+++ b/docs/Classes/SDLUnsubscribeButton.html
@@ -32,9 +32,12 @@ @interface SDLUnsubscribeButton : SDLRPCRequest
+ - (instancetype)initWithButtonName:(SDLButtonName)buttonName;
+ init(buttonName: SDLButtonName)
+
diff --git a/docs/Classes/SDLUnsubscribeVehicleData.html b/docs/Classes/SDLUnsubscribeVehicleData.html
index 11adf368f..87e12b1cf 100644
--- a/docs/Classes/SDLUnsubscribeVehicleData.html
+++ b/docs/Classes/SDLUnsubscribeVehicleData.html
@@ -54,9 +54,12 @@ @interface SDLUnsubscribeVehicleData : SDLRPCRequest
+ - (instancetype)initWithAccelerationPedalPosition:(BOOL)accelerationPedalPosition airbagStatus:(BOOL)airbagStatus beltStatus:(BOOL)beltStatus bodyInformation:(BOOL)bodyInformation clusterModeStatus:(BOOL)clusterModeStatus deviceStatus:(BOOL)deviceStatus driverBraking:(BOOL)driverBraking eCallInfo:(BOOL)eCallInfo emergencyEvent:(BOOL)emergencyEvent engineTorque:(BOOL)engineTorque externalTemperature:(BOOL)externalTemperature fuelLevel:(BOOL)fuelLevel fuelLevelState:(BOOL)fuelLevelState gps:(BOOL)gps headLampStatus:(BOOL)headLampStatus instantFuelConsumption:(BOOL)instantFuelConsumption myKey:(BOOL)myKey odometer:(BOOL)odometer prndl:(BOOL)prndl rpm:(BOOL)rpm speed:(BOOL)speed steeringWheelAngle:(BOOL)steeringWheelAngle tirePressure:(BOOL)tirePressure wiperStatus:(BOOL)wiperStatus;
+ init(accelerationPedalPosition: Bool, airbagStatus: Bool, beltStatus: Bool, bodyInformation: Bool, clusterModeStatus: Bool, deviceStatus: Bool, driverBraking: Bool, eCallInfo: Bool, emergencyEvent: Bool, engineTorque: Bool, externalTemperature: Bool, fuelLevel: Bool, fuelLevelState: Bool, gps: Bool, headLampStatus: Bool, instantFuelConsumption: Bool, myKey: Bool, odometer: Bool, prndl: Bool, rpm: Bool, speed: Bool, steeringWheelAngle: Bool, tirePressure: Bool, wiperStatus: Bool)
+
@@ -73,7 +76,7 @@ var gps: (NSNumber
+ var gps: (NSNumber & SDLBool)? { get set }
@@ -91,7 +94,7 @@ var speed: (NSNumber
+ var speed: (NSNumber & SDLBool)? { get set }
@@ -109,7 +112,7 @@ var rpm: (NSNumber
+ var rpm: (NSNumber & SDLBool)? { get set }
@@ -127,7 +130,7 @@ var fuelLevel: (NSNumber
+ var fuelLevel: (NSNumber & SDLBool)? { get set }
@@ -146,7 +149,7 @@ var fuelLevel_State: (NSNumber
+ var fuelLevel_State: (NSNumber & SDLBool)? { get set }
@@ -165,7 +168,7 @@ var instantFuelConsumption: (NSNumber
+ var instantFuelConsumption: (NSNumber & SDLBool)? { get set }
@@ -184,7 +187,7 @@ var externalTemperature: (NSNumber
+ var externalTemperature: (NSNumber & SDLBool)? { get set }
@@ -202,7 +205,7 @@ var prndl: (NSNumber
+ var prndl: (NSNumber & SDLBool)? { get set }
@@ -221,7 +224,7 @@ var tirePressure: (NSNumber
+ var tirePressure: (NSNumber & SDLBool)? { get set }
@@ -239,7 +242,7 @@ var odometer: (NSNumber
+ var odometer: (NSNumber & SDLBool)? { get set }
@@ -257,7 +260,7 @@ var beltStatus: (NSNumber
+ var beltStatus: (NSNumber & SDLBool)? { get set }
@@ -276,7 +279,7 @@ var bodyInformation: (NSNumber
+ var bodyInformation: (NSNumber & SDLBool)? { get set }
@@ -295,7 +298,7 @@ var deviceStatus: (NSNumber
+ var deviceStatus: (NSNumber & SDLBool)? { get set }
@@ -314,7 +317,7 @@ var driverBraking: (NSNumber
+ var driverBraking: (NSNumber & SDLBool)? { get set }
@@ -333,7 +336,7 @@ var wiperStatus: (NSNumber
+ var wiperStatus: (NSNumber & SDLBool)? { get set }
@@ -352,7 +355,7 @@ var headLampStatus: (NSNumber
+ var headLampStatus: (NSNumber & SDLBool)? { get set }
@@ -371,7 +374,7 @@ var engineTorque: (NSNumber
+ var engineTorque: (NSNumber & SDLBool)? { get set }
@@ -390,7 +393,7 @@ var accPedalPosition: (NSNumber
+ var accPedalPosition: (NSNumber & SDLBool)? { get set }
@@ -404,9 +407,12 @@ @interface SDLUnsubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *steeringWheelAngle
+ var steeringWheelAngle: (NSNumber & SDLBool)? { get set }
+
@@ -419,9 +425,12 @@ @interface SDLUnsubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *eCallInfo
+ var eCallInfo: (NSNumber & SDLBool)? { get set }
+
@@ -434,9 +443,12 @@ @interface SDLUnsubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *airbagStatus
+ var airbagStatus: (NSNumber & SDLBool)? { get set }
+
@@ -449,9 +461,12 @@ @interface SDLUnsubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *emergencyEvent
+ var emergencyEvent: (NSNumber & SDLBool)? { get set }
+
@@ -464,9 +479,12 @@ @interface SDLUnsubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *clusterModeStatus
+ var clusterModeStatus: (NSNumber & SDLBool)? { get set }
+
@@ -479,9 +497,12 @@ @interface SDLUnsubscribeVehicleData : SDLRPCRequest
+ @property (strong, nonatomic, nullable) NSNumber<SDLBool> *myKey
+ var myKey: (NSNumber & SDLBool)? { get set }
+
diff --git a/docs/Classes/SDLUnsubscribeVehicleDataResponse.html b/docs/Classes/SDLUnsubscribeVehicleDataResponse.html
index f7ba7c3dc..b6d6a5792 100644
--- a/docs/Classes/SDLUnsubscribeVehicleDataResponse.html
+++ b/docs/Classes/SDLUnsubscribeVehicleDataResponse.html
@@ -403,9 +403,12 @@ @interface SDLUnsubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *eCallInfo
+ var eCallInfo: SDLVehicleDataResult? { get set }
+
@@ -418,9 +421,12 @@ @interface SDLUnsubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *airbagStatus
+ var airbagStatus: SDLVehicleDataResult? { get set }
+
@@ -433,9 +439,12 @@ @interface SDLUnsubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *emergencyEvent
+ var emergencyEvent: SDLVehicleDataResult? { get set }
+
@@ -448,9 +457,12 @@ @interface SDLUnsubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *clusterModes
+ var clusterModes: SDLVehicleDataResult? { get set }
+
@@ -463,9 +475,12 @@ @interface SDLUnsubscribeVehicleDataResponse : SDLRPCResponse
+ @property (strong, nonatomic, nullable) SDLVehicleDataResult *myKey
+ var myKey: SDLVehicleDataResult? { get set }
+
diff --git a/docs/Classes/SDLUpdateTurnList.html b/docs/Classes/SDLUpdateTurnList.html
index 7a22b05c4..612e71594 100644
--- a/docs/Classes/SDLUpdateTurnList.html
+++ b/docs/Classes/SDLUpdateTurnList.html
@@ -29,9 +29,12 @@ @interface SDLUpdateTurnList : SDLRPCRequest
+ - (instancetype)initWithTurnList:(nullable NSArray<SDLTurn *> *)turnList softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons;
+ init(turnList: [SDLTurn]?, softButtons: [SDLSoftButton]?)
+
diff --git a/docs/Classes/SDLVRHelpItem.html b/docs/Classes/SDLVRHelpItem.html
index 9dfb11397..1b783a8f5 100644
--- a/docs/Classes/SDLVRHelpItem.html
+++ b/docs/Classes/SDLVRHelpItem.html
@@ -24,6 +24,13 @@ - (instancetype)initWithText:(NSString *)text image:(nullable SDLImage *)image;
+
+
+ init(text: String, image: SDLImage?)
+
@@ -35,6 +42,13 @@ - (instancetype)initWithText:(NSString *)text image:(nullable SDLImage *)image position:(UInt8)position;
+
+
+ init(text: String, image: SDLImage?, position: UInt8)
+
@@ -46,6 +60,13 @@ @property (strong, nonatomic) NSString *text
+
+
+ var text: String { get set }
+
@@ -57,6 +78,13 @@ @property (strong, nonatomic, nullable) SDLImage *image
+
+
+ var image: SDLImage? { get set }
+
@@ -68,6 +96,13 @@ @property (strong, nonatomic) NSNumber<SDLInt> *position
+
+
+ var position: NSNumber & SDLInt { get set }
+
diff --git a/docs/Classes/SDLVehicleDataResult.html b/docs/Classes/SDLVehicleDataResult.html
index 806089fc4..16b0a0a62 100644
--- a/docs/Classes/SDLVehicleDataResult.html
+++ b/docs/Classes/SDLVehicleDataResult.html
@@ -21,6 +21,13 @@ @property (strong, nonatomic) SDLVehicleDataType dataType
+
+
+ var dataType: SDLVehicleDataType { get set }
+
@@ -32,6 +39,13 @@ @property (strong, nonatomic) SDLVehicleDataResultCode resultCode
+
+
+ var resultCode: SDLVehicleDataResultCode { get set }
+
diff --git a/docs/Classes/SDLVideoStreamingCapability.html b/docs/Classes/SDLVideoStreamingCapability.html
index 76086651c..02d319071 100644
--- a/docs/Classes/SDLVideoStreamingCapability.html
+++ b/docs/Classes/SDLVideoStreamingCapability.html
@@ -24,6 +24,13 @@ - (instancetype)initWithPreferredResolution:(nullable SDLImageResolution *)preferredResolution maxBitrate:(int32_t)maxBitrate supportedFormats:(nullable NSArray<SDLVideoStreamingFormat *> *)supportedFormats hapticDataSupported:(BOOL)hapticDataSupported;
+
+
+ init(preferredResolution: SDLImageResolution?, maxBitrate: Int32, supportedFormats: [SDLVideoStreamingFormat]?, hapticDataSupported: Bool)
+
@@ -63,7 +70,7 @@ var maxBitrate: (NSNumber
+ var maxBitrate: (NSNumber & SDLInt)? { get set }
@@ -101,7 +108,7 @@ var hapticSpatialDataSupported: (NSNumber
+ var hapticSpatialDataSupported: (NSNumber & SDLBool)? { get set }
diff --git a/docs/Classes/SDLVideoStreamingCodec.html b/docs/Classes/SDLVideoStreamingCodec.html
deleted file mode 100644
index 698be6d5d..000000000
--- a/docs/Classes/SDLVideoStreamingCodec.html
+++ /dev/null
@@ -1,162 +0,0 @@
-Enum for each type of video streaming codec
- -@since SDL 4.7
- - -Convert String to SDLVideoStreamingCodec
- - - -+ (SDLVideoStreamingCodec *)valueOf:(NSString *)value;
-
-
- class func value(of value: String!) -> SDLVideoStreamingCodec!
-
-
-
- String value to retrieve the object for
SDLVideoStreamingCodec
-@abstract Store the enumeration of all possible SDLVideoStreamingCodec
- - - -+ (NSArray *)values;
-
-
- class func values() -> [Any]!
-
-
-
- an array that store all possible SDLVideoStreamingCodec
-@abstract SDLVideoStreamingCodec : H264
- - - -+ (SDLVideoStreamingCodec *)H264;
-
-
- class func h264() -> SDLVideoStreamingCodec!
-
-
-
-
- @abstract SDLVideoStreamingCodec : H265
- - - -+ (SDLVideoStreamingCodec *)H265;
-
-
- class func h265() -> SDLVideoStreamingCodec!
-
-
-
-
- @abstract SDLVideoStreamingCodec : Theora
- - - -+ (SDLVideoStreamingCodec *)THEORA;
-
-
- class func theora() -> SDLVideoStreamingCodec!
-
-
-
-
- @abstract SDLVideoStreamingCodec : VP8
- - - -+ (SDLVideoStreamingCodec *)VP8;
-
-
- class func vp8() -> SDLVideoStreamingCodec!
-
-
-
-
- @abstract SDLVideoStreamingCodec : VP9
- - - -+ (SDLVideoStreamingCodec *)VP9;
-
-
- class func vp9() -> SDLVideoStreamingCodec!
-
-
-
-
-- (instancetype)initWithCodec:(SDLVideoStreamingCodec)codec protocol:(SDLVideoStreamingProtocol)protocol;
+
+
+ init(codec: SDLVideoStreamingCodec, protocol: SDLVideoStreamingProtocol)
+
diff --git a/docs/Classes/SDLVideoStreamingProtocol.html b/docs/Classes/SDLVideoStreamingProtocol.html
deleted file mode 100644
index a4634647a..000000000
--- a/docs/Classes/SDLVideoStreamingProtocol.html
+++ /dev/null
@@ -1,162 +0,0 @@
-Enum for each type of video streaming protocol
- -@since SDL 4.7
- - -Convert String to SDLVideoStreamingProtocol
- - - -+ (SDLVideoStreamingProtocol *)valueOf:(NSString *)value;
-
-
- class func value(of value: String!) -> SDLVideoStreamingProtocol!
-
-
-
- String value to retrieve the object for
SDLVideoStreamingProtocol
-@abstract Store the enumeration of all possible SDLVideoStreamingProtocol
- - - -+ (NSArray *)values;
-
-
- class func values() -> [Any]!
-
-
-
- an array that store all possible SDLVideoStreamingProtocol
-@abstract SDLVideoStreamingProtocol : RAW
- - - -+ (SDLVideoStreamingProtocol *)RAW;
-
-
- class func raw() -> SDLVideoStreamingProtocol!
-
-
-
-
- @abstract SDLVideoStreamingProtocol : RTP
- - - -+ (SDLVideoStreamingProtocol *)RTP;
-
-
- class func rtp() -> SDLVideoStreamingProtocol!
-
-
-
-
- @abstract SDLVideoStreamingProtocol : RTSP
- - - -+ (SDLVideoStreamingProtocol *)RTSP;
-
-
- class func rtsp() -> SDLVideoStreamingProtocol!
-
-
-
-
- @abstract SDLVideoStreamingProtocol : RTMP
- - - -+ (SDLVideoStreamingProtocol *)RTMP;
-
-
- class func rtmp() -> SDLVideoStreamingProtocol!
-
-
-
-
- @abstract SDLVideoStreamingProtocol : WEBM
- - - -+ (SDLVideoStreamingProtocol *)WEBM;
-
-
- class func webm() -> SDLVideoStreamingProtocol!
-
-
-
-
-extern SDLAmbientLightStatus const SDLAmbientLightStatusNight
+
+
+ static let night: SDLAmbientLightStatus
+
@@ -684,6 +691,13 @@ extern SDLAmbientLightStatus const SDLAmbientLightStatusTwilight1
+
+
+ static let twilight1: SDLAmbientLightStatus
+
@@ -695,6 +709,13 @@ extern SDLAmbientLightStatus const SDLAmbientLightStatusTwilight2
+
+
+ static let twilight2: SDLAmbientLightStatus
+
@@ -706,6 +727,13 @@ extern SDLAmbientLightStatus const SDLAmbientLightStatusTwilight3
+
+
+ static let twilight3: SDLAmbientLightStatus
+
@@ -717,6 +745,13 @@ extern SDLAmbientLightStatus const SDLAmbientLightStatusTwilight4
+
+
+ static let twilight4: SDLAmbientLightStatus
+
@@ -728,6 +763,13 @@ extern SDLAmbientLightStatus const SDLAmbientLightStatusDay
+
+
+ static let day: SDLAmbientLightStatus
+
@@ -739,6 +781,13 @@ extern SDLAmbientLightStatus const SDLAmbientLightStatusUnknown
+
+
+ static let unknown: SDLAmbientLightStatus
+
@@ -750,6 +799,13 @@ extern SDLAmbientLightStatus const SDLAmbientLightStatusInvalid
+
+
+ static let invalid: SDLAmbientLightStatus
+
@@ -905,6 +961,13 @@ extern SDLAppHMIType const SDLAppHMITypeBackgroundProcess
+
+
+ static let backgroundProcess: SDLAppHMIType
+
@@ -2048,6 +2111,13 @@ extern SDLCharacterSet const SDLCharacterSetType2
+
+
+ static let type2: SDLCharacterSet
+
@@ -2059,6 +2129,13 @@ extern SDLCharacterSet const SDLCharacterSetType5
+
+
+ static let type5: SDLCharacterSet
+
@@ -2070,6 +2147,13 @@ extern SDLCharacterSet const SDLCharacterSetCID1
+
+
+ static let CID1: SDLCharacterSet
+
@@ -2081,6 +2165,13 @@ extern SDLCharacterSet const SDLCharacterSetCID2
+
+
+ static let CID2: SDLCharacterSet
+
@@ -2650,6 +2741,13 @@ extern SDLDisplayType const SDLDisplayTypeType2
+
+
+ static let type2: SDLDisplayType
+
@@ -2661,6 +2759,13 @@ extern SDLDisplayType const SDLDisplayTypeType5
+
+
+ static let type5: SDLDisplayType
+
@@ -2690,6 +2795,13 @@ extern SDLDisplayType const SDLDisplayTypeGen28DMA
+
+
+ static let gen28DMA: SDLDisplayType
+
@@ -2701,6 +2813,13 @@ extern SDLDisplayType const SDLDisplayTypeGen26DMA
+
+
+ static let gen26DMA: SDLDisplayType
+
@@ -2712,6 +2831,13 @@ extern SDLDisplayType const SDLDisplayTypeMFD3
+
+
+ static let MFD3: SDLDisplayType
+
@@ -2723,6 +2849,13 @@ extern SDLDisplayType const SDLDisplayTypeMFD4
+
+
+ static let MFD4: SDLDisplayType
+
@@ -2734,6 +2867,13 @@ extern SDLDisplayType const SDLDisplayTypeMFD5
+
+
+ static let MFD5: SDLDisplayType
+
@@ -2745,6 +2885,13 @@ extern SDLDisplayType const SDLDisplayTypeGen38Inch
+
+
+ static let gen38Inch: SDLDisplayType
+
@@ -2756,6 +2903,13 @@ extern SDLDisplayType const SDLDisplayTypeGeneric
+
+
+ static let generic: SDLDisplayType
+
@@ -3290,6 +3444,13 @@ extern SDLGlobalProperty const SDLGlobalPropertyVoiceRecognitionHelpTitle
+
+
+ static let voiceRecognitionHelpTitle: SDLGlobalProperty
+
@@ -3301,6 +3462,13 @@ extern SDLGlobalProperty const SDLGlobalPropertyVoiceRecognitionHelpItems
+
+
+ static let voiceRecognitionHelpItems: SDLGlobalProperty
+
@@ -3312,6 +3480,13 @@ extern SDLGlobalProperty const SDLGlobalPropertyMenuName
+
+
+ static let menuName: SDLGlobalProperty
+
@@ -3323,6 +3498,13 @@ extern SDLGlobalProperty const SDLGlobalPropertyMenuIcon
+
+
+ static let menuIcon: SDLGlobalProperty
+
@@ -3334,6 +3516,13 @@ extern SDLGlobalProperty const SDLGlobalPropertyKeyboard
+
+
+ static let keyboard: SDLGlobalProperty
+
@@ -3506,6 +3695,13 @@ extern SDLIgnitionStableStatus const SDLIgnitionStableStatusMissingFromTransmitter
+
+
+ static let missingFromTransmitter: SDLIgnitionStableStatus
+
@@ -4163,6 +4359,13 @@ extern const SDLLanguage SDLLanguageEnSa
+
+
+ static let enSa: SDLLanguage
+
@@ -4174,6 +4377,13 @@ extern const SDLLanguage SDLLanguageHeIl
+
+
+ static let heIl: SDLLanguage
+
@@ -4185,6 +4395,13 @@ extern const SDLLanguage SDLLanguageRoRo
+
+
+ static let roRo: SDLLanguage
+
@@ -4196,6 +4413,13 @@ extern const SDLLanguage SDLLanguageUkUa
+
+
+ static let ukUa: SDLLanguage
+
@@ -4207,6 +4431,13 @@ extern const SDLLanguage SDLLanguageIdId
+
+
+ static let idId: SDLLanguage
+
@@ -4218,6 +4449,13 @@ extern const SDLLanguage SDLLanguageViVn
+
+
+ static let viVn: SDLLanguage
+
@@ -4229,6 +4467,13 @@ extern const SDLLanguage SDLLanguageMsMy
+
+
+ static let msMy: SDLLanguage
+
@@ -4240,6 +4485,13 @@ extern const SDLLanguage SDLLanguageHiIn
+
+
+ static let hiIn: SDLLanguage
+
@@ -4251,6 +4503,13 @@ extern const SDLLanguage SDLLanguageNlBe
+
+
+ static let nlBe: SDLLanguage
+
@@ -4262,6 +4521,13 @@ extern const SDLLanguage SDLLanguageElGr
+
+
+ static let elGr: SDLLanguage
+
@@ -4273,6 +4539,13 @@ extern const SDLLanguage SDLLanguageHuHu
+
+
+ static let huHu: SDLLanguage
+
@@ -4284,6 +4557,13 @@ extern const SDLLanguage SDLLanguageFiFi
+
+
+ static let fiFi: SDLLanguage
+
@@ -4295,6 +4575,13 @@ extern const SDLLanguage SDLLanguageSkSk
+
+
+ static let skSk: SDLLanguage
+
@@ -4306,6 +4593,13 @@ extern const SDLLanguage SDLLanguageEnUs
+
+
+ static let enUs: SDLLanguage
+
@@ -4317,6 +4611,13 @@ extern const SDLLanguage SDLLanguageEnIn
+
+
+ static let enIn: SDLLanguage
+
@@ -4328,6 +4629,13 @@ extern const SDLLanguage SDLLanguageThTh
+
+
+ static let thTh: SDLLanguage
+
@@ -5418,6 +5726,13 @@ extern SDLNotificationUserInfoKey const SDLNotificationUserInfoObject
+
+
+ let SDLNotificationUserInfoObject: String
+
@@ -5429,6 +5744,13 @@ extern SDLNotificationName const SDLTransportDidDisconnect
+
+
+ let SDLTransportDidDisconnect: NSNotification.Name
+
@@ -5440,6 +5762,13 @@ extern SDLNotificationName const SDLTransportDidConnect
+
+
+ let SDLTransportDidConnect: NSNotification.Name
+
@@ -5451,6 +5780,13 @@ extern SDLNotificationName const SDLDidReceiveError
+
+
+ let SDLDidReceiveError: NSNotification.Name
+
@@ -5462,6 +5798,13 @@ extern SDLNotificationName const SDLDidReceiveLockScreenIcon
+
+
+ let SDLDidReceiveLockScreenIcon: NSNotification.Name
+
@@ -5473,6 +5816,13 @@ extern SDLNotificationName const SDLDidBecomeReady
+
+
+ let SDLDidBecomeReady: NSNotification.Name
+
@@ -5484,6 +5834,13 @@ extern SDLNotificationName const SDLDidUpdateProjectionView
+
+
+ let SDLDidUpdateProjectionView: NSNotification.Name
+
@@ -5495,9 +5852,16 @@ extern SDLNotificationName const SDLDidReceiveAddCommandResponse
+
+
+ let SDLDidReceiveAddCommandResponse: NSNotification.Name
+
+
-
extern SDLNotificationName const SDLDidReceiveAddSubMenuResponse
+
+
+ let SDLDidReceiveAddSubMenuResponse: NSNotification.Name
+
@@ -5517,6 +5888,13 @@ extern SDLNotificationName const SDLDidReceiveAlertResponse
+
+
+ let SDLDidReceiveAlertResponse: NSNotification.Name
+
@@ -5528,6 +5906,13 @@ extern SDLNotificationName const SDLDidReceiveAlertManeuverResponse
+
+
+ let SDLDidReceiveAlertManeuverResponse: NSNotification.Name
+
@@ -5539,6 +5924,13 @@ extern SDLNotificationName const SDLDidReceiveButtonPressResponse
+
+
+ let SDLDidReceiveButtonPressResponse: NSNotification.Name
+
@@ -5550,6 +5942,13 @@ extern SDLNotificationName const SDLDidReceiveChangeRegistrationResponse
+
+
+ let SDLDidReceiveChangeRegistrationResponse: NSNotification.Name
+
@@ -5561,6 +5960,13 @@ extern SDLNotificationName const SDLDidReceiveCreateInteractionChoiceSetResponse
+
+
+ let SDLDidReceiveCreateInteractionChoiceSetResponse: NSNotification.Name
+
@@ -5572,6 +5978,13 @@ extern SDLNotificationName const SDLDidReceiveDeleteCommandResponse
+
+
+ let SDLDidReceiveDeleteCommandResponse: NSNotification.Name
+
@@ -5583,6 +5996,13 @@ extern SDLNotificationName const SDLDidReceiveDeleteFileResponse
+
+
+ let SDLDidReceiveDeleteFileResponse: NSNotification.Name
+
@@ -5594,6 +6014,13 @@ extern SDLNotificationName const SDLDidReceiveDeleteInteractionChoiceSetResponse
+
+
+ let SDLDidReceiveDeleteInteractionChoiceSetResponse: NSNotification.Name
+
@@ -5605,6 +6032,13 @@ extern SDLNotificationName const SDLDidReceiveDeleteSubmenuResponse
+
+
+ let SDLDidReceiveDeleteSubmenuResponse: NSNotification.Name
+
@@ -5616,6 +6050,13 @@ extern SDLNotificationName const SDLDidReceiveDiagnosticMessageResponse
+
+
+ let SDLDidReceiveDiagnosticMessageResponse: NSNotification.Name
+
@@ -5627,6 +6068,13 @@ extern SDLNotificationName const SDLDidReceiveDialNumberResponse
+
+
+ let SDLDidReceiveDialNumberResponse: NSNotification.Name
+
@@ -5638,6 +6086,13 @@ extern SDLNotificationName const SDLDidReceiveEncodedSyncPDataResponse
+
+
+ let SDLDidReceiveEncodedSyncPDataResponse: NSNotification.Name
+
@@ -5649,6 +6104,13 @@ extern SDLNotificationName const SDLDidReceiveEndAudioPassThruResponse
+
+
+ let SDLDidReceiveEndAudioPassThruResponse: NSNotification.Name
+
@@ -5660,6 +6122,13 @@ extern SDLNotificationName const SDLDidReceiveGenericResponse
+
+
+ let SDLDidReceiveGenericResponse: NSNotification.Name
+
@@ -5671,6 +6140,13 @@ extern SDLNotificationName const SDLDidReceiveGetDTCsResponse
+
+
+ let SDLDidReceiveGetDTCsResponse: NSNotification.Name
+
@@ -5682,6 +6158,13 @@ extern SDLNotificationName const SDLDidReceiveGetInteriorVehicleDataResponse
+
+
+ let SDLDidReceiveGetInteriorVehicleDataResponse: NSNotification.Name
+
@@ -5693,6 +6176,13 @@ extern SDLNotificationName const SDLDidReceiveGetSystemCapabilitiesResponse
+
+
+ let SDLDidReceiveGetSystemCapabilitiesResponse: NSNotification.Name
+
@@ -5704,6 +6194,13 @@ extern SDLNotificationName const SDLDidReceiveGetVehicleDataResponse
+
+
+ let SDLDidReceiveGetVehicleDataResponse: NSNotification.Name
+
@@ -5715,6 +6212,13 @@ extern SDLNotificationName const SDLDidReceiveGetWaypointsResponse
+
+
+ let SDLDidReceiveGetWaypointsResponse: NSNotification.Name
+
@@ -5726,6 +6230,13 @@ extern SDLNotificationName const SDLDidReceiveListFilesResponse
+
+
+ let SDLDidReceiveListFilesResponse: NSNotification.Name
+
@@ -5737,6 +6248,13 @@ extern SDLNotificationName const SDLDidReceivePerformAudioPassThruResponse
+
+
+ let SDLDidReceivePerformAudioPassThruResponse: NSNotification.Name
+
@@ -5748,6 +6266,13 @@ extern SDLNotificationName const SDLDidReceivePerformInteractionResponse
+
+
+ let SDLDidReceivePerformInteractionResponse: NSNotification.Name
+
@@ -5759,6 +6284,13 @@ extern SDLNotificationName const SDLDidReceivePutFileResponse
+
+
+ let SDLDidReceivePutFileResponse: NSNotification.Name
+
@@ -5770,6 +6302,13 @@ extern SDLNotificationName const SDLDidReceiveReadDIDResponse
+
+
+ let SDLDidReceiveReadDIDResponse: NSNotification.Name
+
@@ -5781,6 +6320,13 @@ extern SDLNotificationName const SDLDidReceiveRegisterAppInterfaceResponse
+
+
+ let SDLDidReceiveRegisterAppInterfaceResponse: NSNotification.Name
+
@@ -5792,6 +6338,13 @@ extern SDLNotificationName const SDLDidReceiveResetGlobalPropertiesResponse
+
+
+ let SDLDidReceiveResetGlobalPropertiesResponse: NSNotification.Name
+
@@ -5803,6 +6356,13 @@ extern SDLNotificationName const SDLDidReceiveScrollableMessageResponse
+
+
+ let SDLDidReceiveScrollableMessageResponse: NSNotification.Name
+
@@ -5814,6 +6374,13 @@ extern SDLNotificationName const SDLDidReceiveSendHapticDataResponse
+
+
+ let SDLDidReceiveSendHapticDataResponse: NSNotification.Name
+
@@ -5825,6 +6392,13 @@ extern SDLNotificationName const SDLDidReceiveSendLocationResponse
+
+
+ let SDLDidReceiveSendLocationResponse: NSNotification.Name
+
@@ -5836,6 +6410,13 @@ extern SDLNotificationName const SDLDidReceiveSetAppIconResponse
+
+
+ let SDLDidReceiveSetAppIconResponse: NSNotification.Name
+
@@ -5847,6 +6428,13 @@ extern SDLNotificationName const SDLDidReceiveSetDisplayLayoutResponse
+
+
+ let SDLDidReceiveSetDisplayLayoutResponse: NSNotification.Name
+
@@ -5858,6 +6446,13 @@ extern SDLNotificationName const SDLDidReceiveSetGlobalPropertiesResponse
+
+
+ let SDLDidReceiveSetGlobalPropertiesResponse: NSNotification.Name
+
@@ -5869,6 +6464,13 @@ extern SDLNotificationName const SDLDidReceiveSetInteriorVehicleDataResponse
+
+
+ let SDLDidReceiveSetInteriorVehicleDataResponse: NSNotification.Name
+
@@ -5880,6 +6482,13 @@ extern SDLNotificationName const SDLDidReceiveSetMediaClockTimerResponse
+
+
+ let SDLDidReceiveSetMediaClockTimerResponse: NSNotification.Name
+
@@ -5891,6 +6500,13 @@ extern SDLNotificationName const SDLDidReceiveShowConstantTBTResponse
+
+
+ let SDLDidReceiveShowConstantTBTResponse: NSNotification.Name
+
@@ -5902,6 +6518,13 @@ extern SDLNotificationName const SDLDidReceiveShowResponse
+
+
+ let SDLDidReceiveShowResponse: NSNotification.Name
+
@@ -5913,6 +6536,13 @@ extern SDLNotificationName const SDLDidReceiveSliderResponse
+
+
+ let SDLDidReceiveSliderResponse: NSNotification.Name
+
@@ -5924,6 +6554,13 @@ extern SDLNotificationName const SDLDidReceiveSpeakResponse
+
+
+ let SDLDidReceiveSpeakResponse: NSNotification.Name
+
@@ -5935,6 +6572,13 @@ extern SDLNotificationName const SDLDidReceiveSubscribeButtonResponse
+
+
+ let SDLDidReceiveSubscribeButtonResponse: NSNotification.Name
+
@@ -5946,6 +6590,13 @@ extern SDLNotificationName const SDLDidReceiveSubscribeVehicleDataResponse
+
+
+ let SDLDidReceiveSubscribeVehicleDataResponse: NSNotification.Name
+
@@ -5957,6 +6608,13 @@ extern SDLNotificationName const SDLDidReceiveSubscribeWaypointsResponse
+
+
+ let SDLDidReceiveSubscribeWaypointsResponse: NSNotification.Name
+
@@ -5968,6 +6626,13 @@ extern SDLNotificationName const SDLDidReceiveSyncPDataResponse
+
+
+ let SDLDidReceiveSyncPDataResponse: NSNotification.Name
+
@@ -5979,6 +6644,13 @@ extern SDLNotificationName const SDLDidReceiveUpdateTurnListResponse
+
+
+ let SDLDidReceiveUpdateTurnListResponse: NSNotification.Name
+
@@ -5990,6 +6662,13 @@ extern SDLNotificationName const SDLDidReceiveUnregisterAppInterfaceResponse
+
+
+ let SDLDidReceiveUnregisterAppInterfaceResponse: NSNotification.Name
+
@@ -6001,6 +6680,13 @@ extern SDLNotificationName const SDLDidReceiveUnsubscribeButtonResponse
+
+
+ let SDLDidReceiveUnsubscribeButtonResponse: NSNotification.Name
+
@@ -6012,6 +6698,13 @@ extern SDLNotificationName const SDLDidReceiveUnsubscribeVehicleDataResponse
+
+
+ let SDLDidReceiveUnsubscribeVehicleDataResponse: NSNotification.Name
+
@@ -6023,6 +6716,13 @@ extern SDLNotificationName const SDLDidReceiveUnsubscribeWaypointsResponse
+
+
+ let SDLDidReceiveUnsubscribeWaypointsResponse: NSNotification.Name
+
@@ -6034,6 +6734,13 @@ extern SDLNotificationName const SDLDidChangeDriverDistractionStateNotification
+
+
+ static let SDLDidChangeDriverDistractionState: NSNotification.Name
+
@@ -6045,6 +6752,13 @@ extern SDLNotificationName const SDLDidChangeHMIStatusNotification
+
+
+ static let SDLDidChangeHMIStatus: NSNotification.Name
+
@@ -6056,6 +6770,13 @@ extern SDLNotificationName const SDLDidReceiveAudioPassThruNotification
+
+
+ static let SDLDidReceiveAudioPassThru: NSNotification.Name
+
@@ -6067,6 +6788,13 @@ extern SDLNotificationName const SDLDidReceiveAppUnregisteredNotification
+
+
+ static let SDLDidReceiveAppUnregistered: NSNotification.Name
+
@@ -6078,6 +6806,13 @@ extern SDLNotificationName const SDLDidReceiveButtonEventNotification
+
+
+ static let SDLDidReceiveButtonEvent: NSNotification.Name
+
@@ -6089,6 +6824,13 @@ extern SDLNotificationName const SDLDidReceiveButtonPressNotification
+
+
+ static let SDLDidReceiveButtonPress: NSNotification.Name
+
@@ -6100,6 +6842,13 @@ extern SDLNotificationName const SDLDidReceiveCommandNotification
+
+
+ static let SDLDidReceiveCommand: NSNotification.Name
+
@@ -6111,6 +6860,13 @@ extern SDLNotificationName const SDLDidReceiveEncodedDataNotification
+
+
+ static let SDLDidReceiveEncodedData: NSNotification.Name
+
@@ -6122,6 +6878,13 @@ extern SDLNotificationName const SDLDidReceiveInteriorVehicleDataNotification
+
+
+ static let SDLDidReceiveInteriorVehicleData: NSNotification.Name
+
@@ -6133,6 +6896,13 @@ extern SDLNotificationName const SDLDidReceiveKeyboardInputNotification
+
+
+ static let SDLDidReceiveKeyboardInput: NSNotification.Name
+
@@ -6144,6 +6914,13 @@ extern SDLNotificationName const SDLDidChangeLanguageNotification
+
+
+ static let SDLDidChangeLanguage: NSNotification.Name
+
@@ -6155,6 +6932,13 @@ extern SDLNotificationName const SDLDidChangeLockScreenStatusNotification
+
+
+ static let SDLDidChangeLockScreenStatus: NSNotification.Name
+
@@ -6166,6 +6950,13 @@ extern SDLNotificationName const SDLDidReceiveNewHashNotification
+
+
+ static let SDLDidReceiveNewHash: NSNotification.Name
+
@@ -6177,6 +6968,13 @@ extern SDLNotificationName const SDLDidReceiveVehicleIconNotification
+
+
+ static let SDLDidReceiveVehicleIcon: NSNotification.Name
+
@@ -6188,6 +6986,13 @@ extern SDLNotificationName const SDLDidChangePermissionsNotification
+
+
+ static let SDLDidChangePermissions: NSNotification.Name
+
@@ -6199,6 +7004,13 @@ extern SDLNotificationName const SDLDidReceiveSystemRequestNotification
+
+
+ static let SDLDidReceiveSystemRequest: NSNotification.Name
+
@@ -6210,6 +7022,13 @@ extern SDLNotificationName const SDLDidChangeTurnByTurnStateNotification
+
+
+ static let SDLDidChangeTurnByTurnState: NSNotification.Name
+
@@ -6221,6 +7040,13 @@ extern SDLNotificationName const SDLDidReceiveTouchEventNotification
+
+
+ static let SDLDidReceiveTouchEvent: NSNotification.Name
+
@@ -6232,6 +7058,13 @@ extern SDLNotificationName const SDLDidReceiveVehicleDataNotification
+
+
+ static let SDLDidReceiveVehicleData: NSNotification.Name
+
@@ -6243,6 +7076,13 @@ extern SDLNotificationName const SDLDidReceiveWaypointNotification
+
+
+ static let SDLDidReceiveWaypoint: NSNotification.Name
+
@@ -6614,6 +7454,13 @@ extern SDLPowerModeQualificationStatus const SDLPowerModeQualificationStatusUndefined
+
+
+ static let undefined: SDLPowerModeQualificationStatus
+
@@ -6625,6 +7472,13 @@ extern SDLPowerModeQualificationStatus const SDLPowerModeQualificationStatusEvaluationInProgress
+
+
+ static let evaluationInProgress: SDLPowerModeQualificationStatus
+
@@ -6636,6 +7490,13 @@ extern SDLPowerModeQualificationStatus const SDLPowerModeQualificationStatusNotDefined
+
+
+ static let notDefined: SDLPowerModeQualificationStatus
+
@@ -6647,6 +7508,13 @@ extern SDLPowerModeQualificationStatus const SDLPowerModeQualificationStatusOk
+
+
+ static let ok: SDLPowerModeQualificationStatus
+
@@ -6658,6 +7526,13 @@ extern SDLPowerModeStatus const SDLPowerModeStatusKeyOut
+
+
+ static let keyOut: SDLPowerModeStatus
+
@@ -6669,6 +7544,13 @@ extern SDLPowerModeStatus const SDLPowerModeStatusKeyRecentlyOut
+
+
+ static let keyRecentlyOut: SDLPowerModeStatus
+
@@ -6680,6 +7562,13 @@ extern SDLPowerModeStatus const SDLPowerModeStatusKeyApproved
+
+
+ static let keyApproved: SDLPowerModeStatus
+
@@ -6691,6 +7580,13 @@ extern SDLPowerModeStatus const SDLPowerModeStatusPostAccessory
+
+
+ static let postAccessory: SDLPowerModeStatus
+
@@ -6702,6 +7598,13 @@ extern SDLPowerModeStatus const SDLPowerModeStatusAccessory
+
+
+ static let accessory: SDLPowerModeStatus
+
@@ -6713,6 +7616,13 @@ extern SDLPowerModeStatus const SDLPowerModeStatusPostIgnition
+
+
+ static let postIgnition: SDLPowerModeStatus
+
@@ -6724,6 +7634,13 @@ extern SDLPowerModeStatus const SDLPowerModeStatusIgnitionOn
+
+
+ static let ignitionOn: SDLPowerModeStatus
+
@@ -6735,6 +7652,13 @@ extern SDLPowerModeStatus const SDLPowerModeStatusRunning
+
+
+ static let running: SDLPowerModeStatus
+
@@ -6746,6 +7670,13 @@ extern SDLPowerModeStatus const SDLPowerModeStatusCrank
+
+
+ static let crank: SDLPowerModeStatus
+
@@ -6757,6 +7688,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutDefault
+
+
+ static let `default`: SDLPredefinedLayout
+
@@ -6768,6 +7706,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutMedia
+
+
+ static let media: SDLPredefinedLayout
+
@@ -6779,6 +7724,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutNonMedia
+
+
+ static let nonMedia: SDLPredefinedLayout
+
@@ -6790,6 +7742,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutOnscreenPresets
+
+
+ static let onscreenPresets: SDLPredefinedLayout
+
@@ -6801,6 +7760,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutNavigationFullscreenMap
+
+
+ static let navigationFullscreenMap: SDLPredefinedLayout
+
@@ -6812,6 +7778,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutNavigationList
+
+
+ static let navigationList: SDLPredefinedLayout
+
@@ -6823,6 +7796,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutNavigationKeyboard
+
+
+ static let navigationKeyboard: SDLPredefinedLayout
+
@@ -6834,6 +7814,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutGraphicWithText
+
+
+ static let graphicWithText: SDLPredefinedLayout
+
@@ -6845,6 +7832,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutTextWithGraphic
+
+
+ static let textWithGraphic: SDLPredefinedLayout
+
@@ -6856,6 +7850,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutTilesOnly
+
+
+ static let tilesOnly: SDLPredefinedLayout
+
@@ -6867,6 +7868,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutTextButtonsOnly
+
+
+ static let textButtonsOnly: SDLPredefinedLayout
+
@@ -6878,6 +7886,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutGraphicWithTiles
+
+
+ static let graphicWithTiles: SDLPredefinedLayout
+
@@ -6889,6 +7904,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutTilesWithGraphic
+
+
+ static let tilesWithGraphic: SDLPredefinedLayout
+
@@ -6900,6 +7922,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutGraphicWithTextAndSoftButtons
+
+
+ static let graphicWithTextAndSoftButtons: SDLPredefinedLayout
+
@@ -6911,6 +7940,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutTextAndSoftButtonsWithGraphic
+
+
+ static let textAndSoftButtonsWithGraphic: SDLPredefinedLayout
+
@@ -6922,6 +7958,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutGraphicWithTextButtons
+
+
+ static let graphicWithTextButtons: SDLPredefinedLayout
+
@@ -6933,6 +7976,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutTextButtonsWithGraphic
+
+
+ static let textButtonsWithGraphic: SDLPredefinedLayout
+
@@ -6944,6 +7994,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutLargeGraphicWithSoftButtons
+
+
+ static let largeGraphicWithSoftButtons: SDLPredefinedLayout
+
@@ -6955,6 +8012,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutDoubleGraphicWithSoftButtons
+
+
+ static let doubleGraphicWithSoftButtons: SDLPredefinedLayout
+
@@ -6966,6 +8030,13 @@ extern SDLPredefinedLayout const SDLPredefinedLayoutLargeGraphicOnly
+
+
+ static let largeGraphicOnly: SDLPredefinedLayout
+
@@ -6977,6 +8048,13 @@ extern SDLPrerecordedSpeech const SDLPrerecordedSpeechHelp
+
+
+ static let help: SDLPrerecordedSpeech
+
@@ -6988,6 +8066,13 @@ extern SDLPrerecordedSpeech const SDLPrerecordedSpeechInitial
+
+
+ static let initial: SDLPrerecordedSpeech
+
@@ -6999,6 +8084,13 @@ extern SDLPrerecordedSpeech const SDLPrerecordedSpeechListen
+
+
+ static let listen: SDLPrerecordedSpeech
+
@@ -7010,6 +8102,13 @@ extern SDLPrerecordedSpeech const SDLPrerecordedSpeechPositive
+
+
+ static let positive: SDLPrerecordedSpeech
+
@@ -7021,6 +8120,13 @@ extern SDLPrerecordedSpeech const SDLPrerecordedSpeechNegative
+
+
+ static let negative: SDLPrerecordedSpeech
+
@@ -7158,6 +8264,13 @@ extern NSString *const SDLProtocolSecurityErrorDomain
+
+
+ let SDLProtocolSecurityErrorDomain: String
+
@@ -7295,6 +8408,13 @@ extern SDLRequestType const SDLRequestTypeHTTP
+
+
+ static let HTTP: SDLRequestType
+
@@ -7306,6 +8426,13 @@ extern SDLRequestType const SDLRequestTypeFileResume
+
+
+ static let fileResume: SDLRequestType
+
@@ -7316,7 +8443,14 @@ Undocumented
- + +extern SDLRequestType const SDLRequestTypeAuthenticationRequest
+
+
+ static let authenticationRequest: SDLRequestType
+
@@ -7328,6 +8462,13 @@ extern SDLRequestType const SDLRequestTypeAuthenticationChallenge
+
+
+ static let authenticationChallenge: SDLRequestType
+
@@ -7339,6 +8480,13 @@ extern SDLRequestType const SDLRequestTypeAuthenticationAck
+
+
+ static let authenticationAck: SDLRequestType
+
@@ -7350,6 +8498,13 @@ extern SDLRequestType const SDLRequestTypeProprietary
+
+
+ static let proprietary: SDLRequestType
+
@@ -7361,6 +8516,13 @@ extern SDLRequestType const SDLRequestTypeQueryApps
+
+
+ static let queryApps: SDLRequestType
+
@@ -7372,6 +8534,13 @@ extern SDLRequestType const SDLRequestTypeLaunchApp
+
+
+ static let launchApp: SDLRequestType
+
@@ -7383,6 +8552,13 @@ extern SDLRequestType const SDLRequestTypeLockScreenIconURL
+
+
+ static let lockScreenIconURL: SDLRequestType
+
@@ -7394,6 +8570,13 @@ extern SDLRequestType const SDLRequestTypeTrafficMessageChannel
+
+
+ static let trafficMessageChannel: SDLRequestType
+
@@ -7405,6 +8588,13 @@ extern SDLRequestType const SDLRequestTypeDriverProfile
+
+
+ static let driverProfile: SDLRequestType
+
@@ -7416,6 +8606,13 @@ extern SDLRequestType const SDLRequestTypeVoiceSearch
+
+
+ static let voiceSearch: SDLRequestType
+
@@ -7427,6 +8624,13 @@ extern SDLRequestType const SDLRequestTypeNavigation
+
+
+ static let navigation: SDLRequestType
+
@@ -7438,6 +8642,13 @@ extern SDLRequestType const SDLRequestTypePhone
+
+
+ static let phone: SDLRequestType
+
@@ -7449,6 +8660,13 @@ extern SDLRequestType const SDLRequestTypeClimate
+
+
+ static let climate: SDLRequestType
+
@@ -7460,6 +8678,13 @@ extern SDLRequestType const SDLRequestTypeSettings
+
+
+ static let settings: SDLRequestType
+
@@ -7471,6 +8696,13 @@ extern SDLRequestType const SDLRequestTypeVehicleDiagnostics
+
+
+ static let vehicleDiagnostics: SDLRequestType
+
@@ -7482,6 +8714,13 @@ extern SDLRequestType const SDLRequestTypeEmergency
+
+
+ static let emergency: SDLRequestType
+
@@ -7493,6 +8732,13 @@ extern SDLRequestType const SDLRequestTypeMedia
+
+
+ static let media: SDLRequestType
+
@@ -7504,6 +8750,13 @@ extern SDLRequestType const SDLRequestTypeFOTA
+
+
+ static let FOTA: SDLRequestType
+
@@ -7559,6 +8812,13 @@ extern SDLResult const SDLResultCharacterLimitExceeded
+
+
+ static let characterLimitExceeded: SDLResult
+
@@ -8296,6 +9556,13 @@ extern SDLSpeechCapabilities const SDLSpeechCapabilitiesSAPIPhonemes
+
+
+ static let sapiPhonemes: SDLSpeechCapabilities
+
@@ -8307,6 +9574,13 @@ extern SDLSpeechCapabilities const SDLSpeechCapabilitiesLHPlusPhonemes
+
+
+ static let lhPlusPhonemes: SDLSpeechCapabilities
+
@@ -8318,6 +9592,13 @@ extern SDLSpeechCapabilities const SDLSpeechCapabilitiesPrerecorded
+
+
+ static let prerecorded: SDLSpeechCapabilities
+
@@ -8329,6 +9610,13 @@ extern SDLSpeechCapabilities const SDLSpeechCapabilitiesSilence
+
+
+ static let silence: SDLSpeechCapabilities
+
@@ -8340,6 +9628,13 @@ extern CGSize const SDLDefaultScreenSize
+
+
+ let SDLDefaultScreenSize: CGSize
+
@@ -8351,6 +9646,13 @@ extern NSString *const SDLVideoStreamDidStartNotification
+
+
+ static let SDLVideoStreamDidStart: NSNotification.Name
+
@@ -8362,6 +9664,13 @@ extern NSString *const SDLVideoStreamDidStopNotification
+
+
+ static let SDLVideoStreamDidStop: NSNotification.Name
+
@@ -8373,6 +9682,13 @@ extern NSString *const SDLAudioStreamDidStartNotification
+
+
+ static let SDLAudioStreamDidStart: NSNotification.Name
+
@@ -8384,6 +9700,13 @@ extern NSString *const SDLAudioStreamDidStopNotification
+
+
+ static let SDLAudioStreamDidStop: NSNotification.Name
+
@@ -8615,6 +9938,13 @@ extern SDLTBTState const SDLTBTStateRouteUpdateRequest
+
+
+ static let routeUpdateRequest: SDLTBTState
+
@@ -8626,6 +9956,13 @@ extern SDLTBTState const SDLTBTStateRouteAccepted
+
+
+ static let routeAccepted: SDLTBTState
+
@@ -8637,6 +9974,13 @@ extern SDLTBTState const SDLTBTStateRouteRefused
+
+
+ static let routeRefused: SDLTBTState
+
@@ -8648,6 +9992,13 @@ extern SDLTBTState const SDLTBTStateRouteCancelled
+
+
+ static let routeCancelled: SDLTBTState
+
@@ -8659,6 +10010,13 @@ extern SDLTBTState const SDLTBTStateETARequest
+
+
+ static let etaRequest: SDLTBTState
+
@@ -8670,6 +10028,13 @@ extern SDLTBTState const SDLTBTStateNextTurnRequest
+
+
+ static let nextTurnRequest: SDLTBTState
+
@@ -8681,6 +10046,13 @@ extern SDLTBTState const SDLTBTStateRouteStatusRequest
+
+
+ static let routeStatusRequest: SDLTBTState
+
@@ -8692,6 +10064,13 @@ extern SDLTBTState const SDLTBTStateRouteSummaryRequest
+
+
+ static let routeSummaryRequest: SDLTBTState
+
@@ -8703,6 +10082,13 @@ extern SDLTBTState const SDLTBTStateTripStatusRequest
+
+
+ static let tripStatusRequest: SDLTBTState
+
@@ -8714,6 +10100,13 @@ extern SDLTBTState const SDLTBTStateRouteUpdateRequestTimeout
+
+
+ static let routeUpdateRequestTimeout: SDLTBTState
+
@@ -9361,6 +10754,13 @@ extern SDLTimerMode const SDLTimerModeUp
+
+
+ static let up: SDLTimerMode
+
@@ -9372,6 +10772,13 @@ extern SDLTimerMode const SDLTimerModeDown
+
+
+ static let down: SDLTimerMode
+
@@ -9383,6 +10790,13 @@ extern SDLTimerMode const SDLTimerModeNone
+
+
+ static let none: SDLTimerMode
+
@@ -9394,6 +10808,13 @@ extern SDLTouchType const SDLTouchTypeBegin
+
+
+ static let begin: SDLTouchType
+
@@ -9405,6 +10826,13 @@ extern SDLTouchType const SDLTouchTypeMove
+
+
+ static let move: SDLTouchType
+
@@ -9416,6 +10844,13 @@ extern SDLTouchType const SDLTouchTypeEnd
+
+
+ static let end: SDLTouchType
+
@@ -9427,6 +10862,13 @@ extern SDLTouchType const SDLTouchTypeCancel
+
+
+ static let cancel: SDLTouchType
+
@@ -9676,6 +11118,13 @@ extern SDLVehicleDataEventStatus const SDLVehicleDataEventStatusNoEvent
+
+
+ static let noEvent: SDLVehicleDataEventStatus
+
@@ -9687,6 +11136,13 @@ extern SDLVehicleDataEventStatus const SDLVehicleDataEventStatusNo
+
+
+ static let no: SDLVehicleDataEventStatus
+
@@ -9698,6 +11154,13 @@ extern SDLVehicleDataEventStatus const SDLVehicleDataEventStatusYes
+
+
+ static let yes: SDLVehicleDataEventStatus
+
@@ -10849,6 +12312,13 @@ extern SDLWayPointType const SDLWayPointTypeAll
+
+
+ static let all: SDLWayPointType
+
@@ -10860,6 +12330,13 @@ extern SDLWayPointType const SDLWayPointTypeDestination
+
+
+ static let destination: SDLWayPointType
+
@@ -11141,6 +12618,13 @@ extern double SmartDeviceLinkVersionNumber
+
+
+ var SmartDeviceLinkVersionNumber: Double
+
@@ -11152,6 +12636,10 @@ extern const unsigned char SmartDeviceLinkVersionString[]
+
+
diff --git a/docs/Enums.html b/docs/Enums.html
index 7d531fabf..cbeff8eee 100644
--- a/docs/Enums.html
+++ b/docs/Enums.html
@@ -1,4 +1,4 @@
-The following enums are available globally.
+The following enumerations are available globally.
NS_ENUM(NSUInteger, SDLArtworkImageFormat) {
+ SDLArtworkImageFormatPNG,
+ SDLArtworkImageFormatJPG
+}
+
+
+ enum SDLArtworkImageFormat : UInt
+
@@ -85,6 +95,16 @@ NS_ENUM(NSUInteger, SDLLogBytesDirection) {
+ SDLLogBytesDirectionTransmit,
+ SDLLogBytesDirectionReceive
+}
+
+
+ enum SDLLogBytesDirection : UInt
+
@@ -214,6 +234,15 @@ NS_ENUM(NSUInteger, SDLProtocolError) {
+ SDLProtocolErrorNoSecurityManager,
+}
+
+
+ enum SDLProtocolError : UInt
+
@@ -226,6 +255,18 @@ NS_ENUM(UInt8, SDLFrameType) {
+ SDLFrameTypeControl = 0x00,
+ SDLFrameTypeSingle = 0x01,
+ SDLFrameTypeFirst = 0x02,
+ SDLFrameTypeConsecutive = 0x03
+}
+
+
+ enum SDLFrameType : UInt8
+
@@ -238,6 +279,19 @@ NS_ENUM(UInt8, SDLServiceType) {
+ SDLServiceTypeControl = 0x00,
+ SDLServiceTypeRPC NS_SWIFT_NAME(rpc) = 0x07,
+ SDLServiceTypeAudio = 0x0A,
+ SDLServiceTypeVideo = 0x0B,
+ SDLServiceTypeBulkData = 0x0F
+}
+
+
+ enum SDLServiceType : UInt8
+
@@ -250,6 +304,29 @@ NS_ENUM(UInt8, SDLFrameInfo) {
+ SDLFrameInfoHeartbeat = 0x00,
+ SDLFrameInfoStartService = 0x01,
+ SDLFrameInfoStartServiceACK = 0x02,
+ SDLFrameInfoStartServiceNACK = 0x03,
+ SDLFrameInfoEndService = 0x04,
+ SDLFrameInfoEndServiceACK = 0x05,
+ SDLFrameInfoEndServiceNACK = 0x06,
+ SDLFrameInfoServiceDataAck = 0xFE,
+ SDLFrameInfoHeartbeatACK = 0xFF,
+ // If frameType == Single (0x01)
+ SDLFrameInfoSingleFrame = 0x00,
+ // If frameType == First (0x02)
+ SDLFrameInfoFirstFrame = 0x00,
+ // If frametype == Consecutive (0x03)
+ SDLFrameInfoConsecutiveLastFrame = 0x00
+}
+
+
+ enum SDLFrameInfo : UInt8
+
@@ -262,6 +339,17 @@ NS_ENUM(Byte, SDLRPCMessageType) {
+ SDLRPCMessageTypeRequest = 0,
+ SDLRPCMessageTypeResponse,
+ SDLRPCMessageTypeNotification
+}
+
+
+ enum SDLRPCMessageType : UInt8
+
@@ -274,6 +362,17 @@ NS_ENUM(NSInteger, SDLStreamingEncryptionFlag) {
+ SDLStreamingEncryptionFlagNone,
+ SDLStreamingEncryptionFlagAuthenticateOnly,
+ SDLStreamingEncryptionFlagAuthenticateAndEncrypt
+}
+
+
+ enum SDLStreamingEncryptionFlag : Int
+
diff --git a/docs/Enums/SDLArtworkImageFormat.html b/docs/Enums/SDLArtworkImageFormat.html
index dde3cee85..4a77b4a8f 100644
--- a/docs/Enums/SDLArtworkImageFormat.html
+++ b/docs/Enums/SDLArtworkImageFormat.html
@@ -1,4 +1,4 @@
-SDLArtworkImageFormatPNG
+
+
+ case PNG = 0
+
@@ -32,6 +39,13 @@ SDLArtworkImageFormatJPG
+
+
+ case JPG = 1
+
diff --git a/docs/Enums/SDLFileManagerError.html b/docs/Enums/SDLFileManagerError.html
index 5ca3227f9..a9989874b 100644
--- a/docs/Enums/SDLFileManagerError.html
+++ b/docs/Enums/SDLFileManagerError.html
@@ -1,4 +1,4 @@
-SDLFrameInfoHeartbeat = 0x00
+
+
+ case heartbeat = 0
+
@@ -42,6 +49,13 @@ SDLFrameInfoStartService = 0x01
+
+
+ case startService = 1
+
@@ -53,6 +67,13 @@ SDLFrameInfoStartServiceACK = 0x02
+
+
+ case startServiceACK = 2
+
@@ -64,6 +85,13 @@ SDLFrameInfoStartServiceNACK = 0x03
+
+
+ case startServiceNACK = 3
+
@@ -75,6 +103,13 @@ SDLFrameInfoEndService = 0x04
+
+
+ case endService = 4
+
@@ -86,6 +121,13 @@ SDLFrameInfoEndServiceACK = 0x05
+
+
+ case endServiceACK = 5
+
@@ -97,6 +139,13 @@ SDLFrameInfoEndServiceNACK = 0x06
+
+
+ case endServiceNACK = 6
+
@@ -108,6 +157,13 @@ SDLFrameInfoServiceDataAck = 0xFE
+
+
+ case serviceDataAck = 254
+
@@ -119,6 +175,13 @@ SDLFrameInfoHeartbeatACK = 0xFF
+
+
+ case heartbeatACK = 255
+
@@ -130,6 +193,13 @@ SDLFrameInfoSingleFrame = 0x00
+
+
+ static var singleFrame: SDLFrameInfo { get }
+
@@ -141,6 +211,13 @@ SDLFrameInfoFirstFrame = 0x00
+
+
+ static var firstFrame: SDLFrameInfo { get }
+
@@ -152,6 +229,13 @@ SDLFrameInfoConsecutiveLastFrame = 0x00
+
+
+ static var consecutiveLastFrame: SDLFrameInfo { get }
+
diff --git a/docs/Enums/SDLFrameType.html b/docs/Enums/SDLFrameType.html
index 18d9e9554..9fb101db2 100644
--- a/docs/Enums/SDLFrameType.html
+++ b/docs/Enums/SDLFrameType.html
@@ -1,4 +1,4 @@
-SDLFrameTypeControl = 0x00
+
+
+ case control = 0
+
@@ -34,6 +41,13 @@ SDLFrameTypeSingle = 0x01
+
+
+ case single = 1
+
@@ -45,6 +59,13 @@ SDLFrameTypeFirst = 0x02
+
+
+ case first = 2
+
@@ -56,6 +77,13 @@ SDLFrameTypeConsecutive = 0x03
+
+
+ case consecutive = 3
+
diff --git a/docs/Enums/SDLLogBytesDirection.html b/docs/Enums/SDLLogBytesDirection.html
index 1a3d550f6..0806e0552 100644
--- a/docs/Enums/SDLLogBytesDirection.html
+++ b/docs/Enums/SDLLogBytesDirection.html
@@ -1,4 +1,4 @@
-SDLLogBytesDirectionTransmit
+
+
+ case transmit = 0
+
@@ -32,6 +39,13 @@ SDLLogBytesDirectionReceive
+
+
+ case receive = 1
+
diff --git a/docs/Enums/SDLLogFlag.html b/docs/Enums/SDLLogFlag.html
index 959febece..c21c3d02f 100644
--- a/docs/Enums/SDLLogFlag.html
+++ b/docs/Enums/SDLLogFlag.html
@@ -1,4 +1,4 @@
-enum SDLLogFlag {}
+ SDLLogFlagError = 1 << 0
+ static var error: SDLLogFlag { get }
+
@@ -46,9 +49,12 @@ enum SDLLogFlag {}
+ SDLLogFlagWarning = 1 << 1
+ static var warning: SDLLogFlag { get }
+
@@ -61,9 +67,12 @@ enum SDLLogFlag {}
+ SDLLogFlagDebug = 1 << 2
+ static var debug: SDLLogFlag { get }
+
@@ -76,9 +85,12 @@ enum SDLLogFlag {}
+ SDLLogFlagVerbose = 1 << 3
+ static var verbose: SDLLogFlag { get }
+
diff --git a/docs/Enums/SDLLogFormatType.html b/docs/Enums/SDLLogFormatType.html
index fdd13e62c..baefa1642 100644
--- a/docs/Enums/SDLLogFormatType.html
+++ b/docs/Enums/SDLLogFormatType.html
@@ -1,4 +1,4 @@
-enum SDLLogFormatType {}
+ SDLLogFormatTypeSimple
+ case simple = 0
+
@@ -44,9 +47,12 @@ enum SDLLogFormatType {}
+ SDLLogFormatTypeDefault
+ case `default` = 1
+
@@ -59,9 +65,12 @@ enum SDLLogFormatType {}
+ SDLLogFormatTypeDetailed
+ case detailed = 2
+
diff --git a/docs/Enums/SDLLogLevel.html b/docs/Enums/SDLLogLevel.html
index f93a6c3df..7052016c4 100644
--- a/docs/Enums/SDLLogLevel.html
+++ b/docs/Enums/SDLLogLevel.html
@@ -1,4 +1,4 @@
-enum SDLLogLevel {}
+ SDLLogLevelDefault = -1
+ case `default` = -1
+
@@ -50,9 +53,12 @@ enum SDLLogLevel {}
+ SDLLogLevelOff = 0
+ case off = 0
+
@@ -65,9 +71,12 @@ enum SDLLogLevel {}
+ SDLLogLevelError = SDLLogFlagError
+ case error = 1
+
@@ -80,9 +89,12 @@ enum SDLLogLevel {}
+ SDLLogLevelWarning = (SDLLogFlagError | SDLLogFlagWarning)
+ case warning = 3
+
@@ -95,9 +107,12 @@ enum SDLLogLevel {}
+ SDLLogLevelDebug = (SDLLogFlagWarning | SDLLogFlagDebug)
+ case debug = 6
+
@@ -110,9 +125,12 @@ enum SDLLogLevel {}
+ SDLLogLevelVerbose = (SDLLogFlagDebug | SDLLogFlagVerbose)
+ case verbose = 12
+
diff --git a/docs/Enums/SDLManagerError.html b/docs/Enums/SDLManagerError.html
index d9c18b73b..f73e8f407 100644
--- a/docs/Enums/SDLManagerError.html
+++ b/docs/Enums/SDLManagerError.html
@@ -1,4 +1,4 @@
-SDLProtocolErrorNoSecurityManager
+
+
+ case noSecurityManager = 0
+
diff --git a/docs/Enums/SDLRPCMessageType.html b/docs/Enums/SDLRPCMessageType.html
index 81198e948..bc170796e 100644
--- a/docs/Enums/SDLRPCMessageType.html
+++ b/docs/Enums/SDLRPCMessageType.html
@@ -1,4 +1,4 @@
-SDLRPCMessageTypeRequest = 0
+
+
+ case request = 0
+
@@ -33,6 +40,13 @@ SDLRPCMessageTypeResponse
+
+
+ case response = 1
+
@@ -44,6 +58,13 @@ SDLRPCMessageTypeNotification
+
+
+ case notification = 2
+
diff --git a/docs/Enums/SDLServiceType.html b/docs/Enums/SDLServiceType.html
index a1dfe5d1d..bbe20d03e 100644
--- a/docs/Enums/SDLServiceType.html
+++ b/docs/Enums/SDLServiceType.html
@@ -1,4 +1,4 @@
-SDLServiceTypeControl = 0x00
+
+
+ case control = 0
+
@@ -35,6 +42,13 @@ SDLServiceTypeRPC NS_SWIFT_NAME(rpc) = 0x07
+
+
+ case rpc = 7
+
@@ -46,6 +60,13 @@ SDLServiceTypeAudio = 0x0A
+
+
+ case audio = 10
+
@@ -57,6 +78,13 @@ SDLServiceTypeVideo = 0x0B
+
+
+ case video = 11
+
@@ -68,6 +96,13 @@ SDLServiceTypeBulkData = 0x0F
+
+
+ case bulkData = 15
+
diff --git a/docs/Enums/SDLStreamingEncryptionFlag.html b/docs/Enums/SDLStreamingEncryptionFlag.html
index 8e01a3f7c..596edc585 100644
--- a/docs/Enums/SDLStreamingEncryptionFlag.html
+++ b/docs/Enums/SDLStreamingEncryptionFlag.html
@@ -1,4 +1,4 @@
-SDLStreamingEncryptionFlagNone
+
+
+ case none = 0
+
@@ -33,6 +40,13 @@ SDLStreamingEncryptionFlagAuthenticateOnly
+
+
+ case authenticateOnly = 1
+
@@ -44,6 +58,13 @@ SDLStreamingEncryptionFlagAuthenticateAndEncrypt
+
+
+ case authenticateAndEncrypt = 2
+
diff --git a/docs/Protocols.html b/docs/Protocols.html
index d7fa96e6b..fa727ee15 100644
--- a/docs/Protocols.html
+++ b/docs/Protocols.html
@@ -104,6 +104,18 @@ @protocol SDLIAPSessionDelegate
+
+- (void)onSessionInitializationCompleteForSession:(SDLIAPSession *)session;
+- (void)onSessionStreamsEnded:(SDLIAPSession *)session;
+
+@end
+
+
+ protocol SDLIAPSessionDelegate
+
@@ -116,6 +128,38 @@ @protocol SDLLogTarget <NSObject>
+
+/**
+ A simple convenience initializer to create the object. This *should not* start up the logger.
+
+ @return An instance of the logger.
+ */
++ (id<SDLLogTarget>)logger;
+
+/**
+ A call to setup the logger in whatever manner it needs to do so.
+
+ @return Whether or not the logger set up correctly.
+ */
+- (BOOL)setupLogger;
+
+/**
+ Log a particular log using the model and the formatted log message to the target.
+
+ @param log The log model, if you can log additional data, such as the log level, use this
+ @param stringLog The formatted message
+ */
+- (void)logWithLog:(SDLLogModel *)log formattedLog:(NSString *)stringLog;
+- (void)teardownLogger;
+
+@end
+
+
+ protocol SDLLogTarget : NSObjectProtocol
+
@@ -128,6 +172,46 @@ @protocol SDLManagerDelegate <NSObject>
+
+/**
+ * Called upon a disconnection from the remote system.
+ */
+- (void)managerDidDisconnect;
+
+/**
+ * Called when the HMI level state of this application changes on the remote system. This is equivalent to the application's state changes in iOS such as foreground, background, or closed.
+ *
+ * @param oldLevel The previous level which has now been left.
+ * @param newLevel The current level.
+ */
+- (void)hmiLevel:(SDLHMILevel)oldLevel didChangeToLevel:(SDLHMILevel)newLevel;
+
+@optional
+/**
+ * Called when the audio streaming state of this application changes on the remote system. This refers to when streaming audio is audible to the user.
+ *
+ * @param oldState The previous state which has now been left.
+ * @param newState The current state.
+ */
+- (void)audioStreamingState:(nullable SDLAudioStreamingState)oldState didChangeToState:(SDLAudioStreamingState)newState;
+
+/**
+ * Called when the system context of this application changes on the remote system. This refers to whether or not a user-initiated interaction is in progress, and if so, what it is.
+ *
+ * @param oldContext The previous context which has now been left.
+ * @param newContext The current context.
+ */
+- (void)systemContext:(nullable SDLSystemContext)oldContext didChangeToContext:(SDLSystemContext)newContext;
+
+
+@end
+
+
+ protocol SDLManagerDelegate : NSObjectProtocol
+
@@ -140,6 +224,30 @@ @protocol SDLProtocolListener <NSObject>
+
+@optional
+// v4.7.0 protocol handlers
+- (void)handleProtocolStartServiceACKMessage:(SDLProtocolMessage *)startServiceACK;
+- (void)handleProtocolStartServiceNAKMessage:(SDLProtocolMessage *)startServiceNAK;
+- (void)handleProtocolEndServiceACKMessage:(SDLProtocolMessage *)endServiceACK;
+- (void)handleProtocolEndServiceNAKMessage:(SDLProtocolMessage *)endServiceNAK;
+
+// Older protocol handlers
+- (void)handleHeartbeatForSession:(Byte)session;
+- (void)handleHeartbeatACK;
+- (void)onProtocolMessageReceived:(SDLProtocolMessage *)msg;
+- (void)onProtocolOpened;
+- (void)onProtocolClosed;
+- (void)onError:(NSString *)info exception:(NSException *)e;
+
+@end
+
+
+ protocol SDLProtocolListener : NSObjectProtocol
+
@@ -152,6 +260,92 @@ @protocol SDLProxyListener <NSObject>
+
+- (void)onOnDriverDistraction:(SDLOnDriverDistraction *)notification;
+- (void)onOnHMIStatus:(SDLOnHMIStatus *)notification;
+- (void)onProxyClosed;
+- (void)onProxyOpened;
+
+@optional
+
+- (void)onAddCommandResponse:(SDLAddCommandResponse *)response;
+- (void)onAddSubMenuResponse:(SDLAddSubMenuResponse *)response;
+- (void)onAlertManeuverResponse:(SDLAlertManeuverResponse *)response;
+- (void)onAlertResponse:(SDLAlertResponse *)response;
+- (void)onButtonPressResponse:(SDLButtonPressResponse *)response;
+- (void)onChangeRegistrationResponse:(SDLChangeRegistrationResponse *)response;
+- (void)onCreateInteractionChoiceSetResponse:(SDLCreateInteractionChoiceSetResponse *)response;
+- (void)onDeleteCommandResponse:(SDLDeleteCommandResponse *)response;
+- (void)onDeleteFileResponse:(SDLDeleteFileResponse *)response;
+- (void)onDeleteInteractionChoiceSetResponse:(SDLDeleteInteractionChoiceSetResponse *)response;
+- (void)onDeleteSubMenuResponse:(SDLDeleteSubMenuResponse *)response;
+- (void)onDiagnosticMessageResponse:(SDLDiagnosticMessageResponse *)response;
+- (void)onDialNumberResponse:(SDLDialNumberResponse *)response;
+- (void)onEncodedSyncPDataResponse:(SDLEncodedSyncPDataResponse *)response;
+- (void)onEndAudioPassThruResponse:(SDLEndAudioPassThruResponse *)response;
+- (void)onError:(NSException *)e;
+- (void)onGenericResponse:(SDLGenericResponse *)response;
+- (void)onGetDTCsResponse:(SDLGetDTCsResponse *)response;
+- (void)onGetInteriorVehicleDataResponse:(SDLGetInteriorVehicleDataResponse *)response;
+- (void)onGetSystemCapabilityResponse:(SDLGetSystemCapabilityResponse *)response;
+- (void)onGetVehicleDataResponse:(SDLGetVehicleDataResponse *)response;
+- (void)onGetWayPointsResponse:(SDLGetWaypointsResponse *)response;
+- (void)onListFilesResponse:(SDLListFilesResponse *)response;
+- (void)onReceivedLockScreenIcon:(UIImage *)icon;
+- (void)onOnAppInterfaceUnregistered:(SDLOnAppInterfaceUnregistered *)notification;
+- (void)onOnAudioPassThru:(SDLOnAudioPassThru *)notification;
+- (void)onOnButtonEvent:(SDLOnButtonEvent *)notification;
+- (void)onOnButtonPress:(SDLOnButtonPress *)notification;
+- (void)onOnCommand:(SDLOnCommand *)notification;
+- (void)onOnEncodedSyncPData:(SDLOnEncodedSyncPData *)notification;
+- (void)onOnHashChange:(SDLOnHashChange *)notification;
+- (void)onOnInteriorVehicleData:(SDLOnInteriorVehicleData *)notification;
+- (void)onOnKeyboardInput:(SDLOnKeyboardInput *)notification;
+- (void)onOnLanguageChange:(SDLOnLanguageChange *)notification;
+- (void)onOnLockScreenNotification:(SDLOnLockScreenStatus *)notification;
+- (void)onOnPermissionsChange:(SDLOnPermissionsChange *)notification;
+- (void)onOnSyncPData:(SDLOnSyncPData *)notification;
+- (void)onOnSystemRequest:(SDLOnSystemRequest *)notification;
+- (void)onOnTBTClientState:(SDLOnTBTClientState *)notification;
+- (void)onOnTouchEvent:(SDLOnTouchEvent *)notification;
+- (void)onOnVehicleData:(SDLOnVehicleData *)notification;
+- (void)onOnWayPointChange:(SDLOnWayPointChange *)notification;
+- (void)onPerformAudioPassThruResponse:(SDLPerformAudioPassThruResponse *)response;
+- (void)onPerformInteractionResponse:(SDLPerformInteractionResponse *)response;
+- (void)onPutFileResponse:(SDLPutFileResponse *)response;
+- (void)onReadDIDResponse:(SDLReadDIDResponse *)response;
+- (void)onRegisterAppInterfaceResponse:(SDLRegisterAppInterfaceResponse *)response;
+- (void)onResetGlobalPropertiesResponse:(SDLResetGlobalPropertiesResponse *)response;
+- (void)onScrollableMessageResponse:(SDLScrollableMessageResponse *)response;
+- (void)onSendHapticDataResponse:(SDLSendHapticDataResponse *)response;
+- (void)onSendLocationResponse:(SDLSendLocationResponse *)response;
+- (void)onSetAppIconResponse:(SDLSetAppIconResponse *)response;
+- (void)onSetDisplayLayoutResponse:(SDLSetDisplayLayoutResponse *)response;
+- (void)onSetGlobalPropertiesResponse:(SDLSetGlobalPropertiesResponse *)response;
+- (void)onSetInteriorVehicleDataResponse:(SDLSetInteriorVehicleDataResponse *)response;
+- (void)onSetMediaClockTimerResponse:(SDLSetMediaClockTimerResponse *)response;
+- (void)onShowConstantTBTResponse:(SDLShowConstantTBTResponse *)response;
+- (void)onShowResponse:(SDLShowResponse *)response;
+- (void)onSliderResponse:(SDLSliderResponse *)response;
+- (void)onSpeakResponse:(SDLSpeakResponse *)response;
+- (void)onSubscribeButtonResponse:(SDLSubscribeButtonResponse *)response;
+- (void)onSubscribeVehicleDataResponse:(SDLSubscribeVehicleDataResponse *)response;
+- (void)onSubscribeWayPointsResponse:(SDLSubscribeWayPointsResponse *)response;
+- (void)onSyncPDataResponse:(SDLSyncPDataResponse *)response;
+- (void)onUpdateTurnListResponse:(SDLUpdateTurnListResponse *)response;
+- (void)onUnregisterAppInterfaceResponse:(SDLUnregisterAppInterfaceResponse *)response;
+- (void)onUnsubscribeButtonResponse:(SDLUnsubscribeButtonResponse *)response;
+- (void)onUnsubscribeVehicleDataResponse:(SDLUnsubscribeVehicleDataResponse *)response;
+- (void)onUnsubscribeWayPointsResponse:(SDLUnsubscribeWayPointsResponse *)response;
+
+@end
+
+
+ protocol SDLProxyListener : NSObjectProtocol
+
@@ -164,6 +358,27 @@ @protocol SDLSecurityType <NSObject>
+
+@property (copy, nonatomic) NSString *appId;
+
+- (void)initializeWithAppId:(NSString *)appId completionHandler:(void (^)(NSError *_Nullable error))completionHandler;
+- (void)stop;
+
+- (nullable NSData *)runHandshakeWithClientData:(NSData *)data error:(NSError **)error;
+
+- (nullable NSData *)encryptData:(NSData *)data withError:(NSError **)error;
+- (nullable NSData *)decryptData:(NSData *)data withError:(NSError **)error;
+
++ (NSSet<NSString *> *)availableMakes;
+
+@end
+
+
+ protocol SDLSecurityType : NSObjectProtocol
+
@@ -176,6 +391,118 @@ @protocol SDLTouchManagerDelegate <NSObject>
+
+@optional
+
+/**
+ A single tap was received
+
+ @param manager The SDLTouchManager issuing the callback
+ @param view The view under the touch if it could be determined
+ @param point The point at which the touch occurred in the head unit's coordinate system
+ */
+- (void)touchManager:(SDLTouchManager *)manager didReceiveSingleTapForView:(UIView *_Nullable)view atPoint:(CGPoint)point;
+
+/**
+ A double tap was received
+
+ @param manager The SDLTouchManager issuing the callback
+ @param view The view under the touch if it could be determined
+ @param point Location of the double tap in the head unit's coordinate system. This is the average of the first and second tap.
+ */
+- (void)touchManager:(SDLTouchManager *)manager didReceiveDoubleTapForView:(UIView *_Nullable)view atPoint:(CGPoint)point;
+
+/**
+ Panning started
+
+ @param manager The SDLTouchManager issuing the callback
+ @param view The view under where the panning started if it could be determined
+ @param point Location of the panning start point in the head unit's coordinate system.
+ */
+- (void)touchManager:(SDLTouchManager *)manager panningDidStartInView:(UIView *_Nullable)view atPoint:(CGPoint)point;
+
+/**
+ Panning moved between points
+
+ @param manager The SDLTouchManager issuing the callback
+ @param fromPoint Location of the panning's previous point in the head unit's coordinate system
+ @param toPoint Location of the panning's new point in the head unit's coordinate system
+ */
+- (void)touchManager:(SDLTouchManager *)manager didReceivePanningFromPoint:(CGPoint)fromPoint toPoint:(CGPoint)toPoint;
+
+/**
+ Panning ended
+
+ @param manager The SDLTouchManager issuing the callback
+ @param view The view under where the panning ended if it could be determined
+ @param point Location of the panning's end point in the head unit's coordinate system
+ */
+- (void)touchManager:(SDLTouchManager *)manager panningDidEndInView:(UIView *_Nullable)view atPoint:(CGPoint)point;
+
+/**
+ Panning canceled
+
+ @param manager The SDLTouchManager issuing the callback
+ @param point Location of the panning's end point in the head unit's coordinate system
+ */
+- (void)touchManager:(SDLTouchManager *)manager panningCanceledAtPoint:(CGPoint)point;
+
+/**
+ Pinch did start
+
+ @param manager The SDLTouchManager issuing the callback
+ @param view The view under the center of the pinch start
+ @param point Center point of the pinch in the head unit's coordinate system
+ */
+- (void)touchManager:(SDLTouchManager *)manager pinchDidStartInView:(UIView *_Nullable)view atCenterPoint:(CGPoint)point;
+
+/**
+ * @abstract
+ * Pinch did move.
+ * @param manager
+ * Current initalized SDLTouchManager issuing the callback.
+ * @param point
+ * Center point of the pinch in the head unit's coordinate system.
+ * @param scale
+ * Scale relative to the distance between touch points.
+ */
+- (void)touchManager:(SDLTouchManager *)manager didReceivePinchAtCenterPoint:(CGPoint)point withScale:(CGFloat)scale;
+
+/**
+ Pinch moved and changed scale
+
+ @param manager The SDLTouchManager issuing the callback
+ @param view The view under the center of the pinch
+ @param point Center point of the pinch in the head unit's coordinate system
+ @param scale Scale relative to the distance between touch points
+ */
+- (void)touchManager:(SDLTouchManager *)manager didReceivePinchInView:(UIView *_Nullable)view atCenterPoint:(CGPoint)point withScale:(CGFloat)scale;
+
+/**
+ Pinch did end
+
+ @param manager The SDLTouchManager issuing the callback
+ @param view The view under the center of the pinch
+ @param point Center point of the pinch in the head unit's coordinate system
+ */
+- (void)touchManager:(SDLTouchManager *)manager pinchDidEndInView:(UIView *_Nullable)view atCenterPoint:(CGPoint)point;
+
+/**
+ Pinch canceled
+
+ @param manager The SDLTouchManager issuing the callback
+ @param point Center point of the pinch in the head unit's coordinate system
+ */
+- (void)touchManager:(SDLTouchManager *)manager pinchCanceledAtCenterPoint:(CGPoint)point;
+
+@end
+
+
+ protocol SDLTouchManagerDelegate : NSObjectProtocol
+
@@ -188,6 +515,19 @@ @protocol SDLTransportDelegate <NSObject>
+
+- (void)onTransportConnected;
+- (void)onTransportDisconnected;
+- (void)onDataReceived:(NSData *)receivedData;
+
+@end
+
+
+ protocol SDLTransportDelegate
+
diff --git a/docs/Protocols/SDLIAPSessionDelegate.html b/docs/Protocols/SDLIAPSessionDelegate.html
index e630bfd8d..ab8daf734 100644
--- a/docs/Protocols/SDLIAPSessionDelegate.html
+++ b/docs/Protocols/SDLIAPSessionDelegate.html
@@ -21,6 +21,13 @@ - (void)onSessionInitializationCompleteForSession:(SDLIAPSession *)session;
+
+
+ func onSessionInitializationComplete(for session: SDLIAPSession)
+
@@ -32,6 +39,13 @@ - (void)onSessionStreamsEnded:(SDLIAPSession *)session;
+
+
+ func onSessionStreamsEnded(_ session: SDLIAPSession)
+
diff --git a/docs/Protocols/SDLLogTarget.html b/docs/Protocols/SDLLogTarget.html
index 39d8813cc..9ae33979f 100644
--- a/docs/Protocols/SDLLogTarget.html
+++ b/docs/Protocols/SDLLogTarget.html
@@ -93,6 +93,13 @@ - (void)teardownLogger;
+
+
+ func teardownLogger()
+
diff --git a/docs/Protocols/SDLProtocolListener.html b/docs/Protocols/SDLProtocolListener.html
index 07cbfcba6..10614105f 100644
--- a/docs/Protocols/SDLProtocolListener.html
+++ b/docs/Protocols/SDLProtocolListener.html
@@ -29,6 +29,13 @@ - (void)handleProtocolStartServiceACKMessage:(SDLProtocolMessage *)startServiceACK;
+
+
+ optional func handleProtocolStartServiceACKMessage(_ startServiceACK: SDLProtocolMessage)
+
@@ -40,6 +47,13 @@ - (void)handleProtocolStartServiceNAKMessage:(SDLProtocolMessage *)startServiceNAK;
+
+
+ optional func handleProtocolStartServiceNAKMessage(_ startServiceNAK: SDLProtocolMessage)
+
@@ -51,6 +65,13 @@ - (void)handleProtocolEndServiceACKMessage:(SDLProtocolMessage *)endServiceACK;
+
+
+ optional func handleProtocolEndServiceACKMessage(_ endServiceACK: SDLProtocolMessage)
+
@@ -62,6 +83,13 @@ - (void)handleProtocolEndServiceNAKMessage:(SDLProtocolMessage *)endServiceNAK;
+
+
+ optional func handleProtocolEndServiceNAKMessage(_ endServiceNAK: SDLProtocolMessage)
+
@@ -73,6 +101,13 @@ - (void)handleHeartbeatForSession:(Byte)session;
+
+
+ optional func handleHeartbeat(forSession session: UInt8)
+
@@ -84,6 +119,13 @@ - (void)handleHeartbeatACK;
+
+
+ optional func handleHeartbeatACK()
+
@@ -95,6 +137,13 @@ - (void)onProtocolMessageReceived:(SDLProtocolMessage *)msg;
+
+
+ optional func onProtocolMessageReceived(_ msg: SDLProtocolMessage)
+
@@ -106,6 +155,13 @@ - (void)onProtocolOpened;
+
+
+ optional func onProtocolOpened()
+
@@ -117,6 +173,13 @@ - (void)onProtocolClosed;
+
+
+ optional func onProtocolClosed()
+
@@ -128,6 +191,13 @@ - (void)onError:(NSString *)info exception:(NSException *)e;
+
+
+ optional func onError(_ info: String, exception e: NSException)
+
diff --git a/docs/Protocols/SDLProxyListener.html b/docs/Protocols/SDLProxyListener.html
index 3fdfc9f2d..e33f69083 100644
--- a/docs/Protocols/SDLProxyListener.html
+++ b/docs/Protocols/SDLProxyListener.html
@@ -92,6 +92,13 @@ - (void)onOnDriverDistraction:(SDLOnDriverDistraction *)notification;
+
+
+ func on(_ notification: SDLOnDriverDistraction)
+
@@ -103,6 +110,13 @@ - (void)onOnHMIStatus:(SDLOnHMIStatus *)notification;
+
+
+ func on(_ notification: SDLOnHMIStatus)
+
@@ -114,6 +128,13 @@ - (void)onProxyClosed;
+
+
+ func onProxyClosed()
+
@@ -125,6 +146,13 @@ - (void)onProxyOpened;
+
+
+ func onProxyOpened()
+
@@ -136,6 +164,13 @@ - (void)onAddCommandResponse:(SDLAddCommandResponse *)response;
+
+
+ optional func onAddCommandResponse(_ response: SDLAddCommandResponse)
+
@@ -147,6 +182,13 @@ - (void)onAddSubMenuResponse:(SDLAddSubMenuResponse *)response;
+
+
+ optional func onAddSubMenuResponse(_ response: SDLAddSubMenuResponse)
+
@@ -158,6 +200,13 @@ - (void)onAlertManeuverResponse:(SDLAlertManeuverResponse *)response;
+
+
+ optional func onAlertManeuverResponse(_ response: SDLAlertManeuverResponse)
+
@@ -169,6 +218,13 @@ - (void)onAlertResponse:(SDLAlertResponse *)response;
+
+
+ optional func onAlertResponse(_ response: SDLAlertResponse)
+
@@ -180,6 +236,13 @@ - (void)onButtonPressResponse:(SDLButtonPressResponse *)response;
+
+
+ optional func onButtonPressResponse(_ response: SDLButtonPressResponse)
+
@@ -191,6 +254,13 @@ - (void)onChangeRegistrationResponse:(SDLChangeRegistrationResponse *)response;
+
+
+ optional func onChangeRegistrationResponse(_ response: SDLChangeRegistrationResponse)
+
@@ -202,6 +272,13 @@ - (void)onCreateInteractionChoiceSetResponse:(SDLCreateInteractionChoiceSetResponse *)response;
+
+
+ optional func onCreateInteractionChoiceSetResponse(_ response: SDLCreateInteractionChoiceSetResponse)
+
@@ -213,6 +290,13 @@ - (void)onDeleteCommandResponse:(SDLDeleteCommandResponse *)response;
+
+
+ optional func onDeleteCommandResponse(_ response: SDLDeleteCommandResponse)
+
@@ -224,6 +308,13 @@ - (void)onDeleteFileResponse:(SDLDeleteFileResponse *)response;
+
+
+ optional func onDeleteFileResponse(_ response: SDLDeleteFileResponse)
+
@@ -235,6 +326,13 @@ - (void)onDeleteInteractionChoiceSetResponse:(SDLDeleteInteractionChoiceSetResponse *)response;
+
+
+ optional func onDeleteInteractionChoiceSetResponse(_ response: SDLDeleteInteractionChoiceSetResponse)
+
@@ -246,6 +344,13 @@ - (void)onDeleteSubMenuResponse:(SDLDeleteSubMenuResponse *)response;
+
+
+ optional func onDeleteSubMenuResponse(_ response: SDLDeleteSubMenuResponse)
+
@@ -257,6 +362,13 @@ - (void)onDiagnosticMessageResponse:(SDLDiagnosticMessageResponse *)response;
+
+
+ optional func onDiagnosticMessageResponse(_ response: SDLDiagnosticMessageResponse)
+
@@ -268,6 +380,13 @@ - (void)onDialNumberResponse:(SDLDialNumberResponse *)response;
+
+
+ optional func onDialNumberResponse(_ response: SDLDialNumberResponse)
+
@@ -279,6 +398,13 @@ - (void)onEncodedSyncPDataResponse:(SDLEncodedSyncPDataResponse *)response;
+
+
+ optional func onEncodedSyncPDataResponse(_ response: SDLEncodedSyncPDataResponse)
+
@@ -290,6 +416,13 @@ - (void)onEndAudioPassThruResponse:(SDLEndAudioPassThruResponse *)response;
+
+
+ optional func onEndAudioPassThruResponse(_ response: SDLEndAudioPassThruResponse)
+
@@ -301,6 +434,13 @@ - (void)onError:(NSException *)e;
+
+
+ optional func onError(_ e: NSException)
+
@@ -312,6 +452,13 @@ - (void)onGenericResponse:(SDLGenericResponse *)response;
+
+
+ optional func onGenericResponse(_ response: SDLGenericResponse)
+
@@ -323,6 +470,13 @@ - (void)onGetDTCsResponse:(SDLGetDTCsResponse *)response;
+
+
+ optional func onGetDTCsResponse(_ response: SDLGetDTCsResponse)
+
@@ -334,6 +488,13 @@ - (void)onGetInteriorVehicleDataResponse:(SDLGetInteriorVehicleDataResponse *)response;
+
+
+ optional func onGetInteriorVehicleDataResponse(_ response: SDLGetInteriorVehicleDataResponse)
+
@@ -345,6 +506,13 @@ - (void)onGetSystemCapabilityResponse:(SDLGetSystemCapabilityResponse *)response;
+
+
+ optional func onGetSystemCapabilityResponse(_ response: SDLGetSystemCapabilityResponse)
+
@@ -356,6 +524,13 @@ - (void)onGetVehicleDataResponse:(SDLGetVehicleDataResponse *)response;
+
+
+ optional func onGetVehicleDataResponse(_ response: SDLGetVehicleDataResponse)
+
@@ -367,6 +542,13 @@ - (void)onGetWayPointsResponse:(SDLGetWaypointsResponse *)response;
+
+
+ optional func onGetWayPointsResponse(_ response: SDLGetWaypointsResponse)
+
@@ -378,6 +560,13 @@ - (void)onListFilesResponse:(SDLListFilesResponse *)response;
+
+
+ optional func onListFilesResponse(_ response: SDLListFilesResponse)
+
@@ -389,6 +578,13 @@ - (void)onReceivedLockScreenIcon:(UIImage *)icon;
+
+
+ optional func onReceivedLockScreenIcon(_ icon: UIImage)
+
@@ -400,6 +596,13 @@ - (void)onOnAppInterfaceUnregistered:(SDLOnAppInterfaceUnregistered *)notification;
+
+
+ optional func on(_ notification: SDLOnAppInterfaceUnregistered)
+
@@ -411,6 +614,13 @@ - (void)onOnAudioPassThru:(SDLOnAudioPassThru *)notification;
+
+
+ optional func on(_ notification: SDLOnAudioPassThru)
+
@@ -422,6 +632,13 @@ - (void)onOnButtonEvent:(SDLOnButtonEvent *)notification;
+
+
+ optional func on(_ notification: SDLOnButtonEvent)
+
@@ -433,6 +650,13 @@ - (void)onOnButtonPress:(SDLOnButtonPress *)notification;
+
+
+ optional func on(_ notification: SDLOnButtonPress)
+
@@ -444,6 +668,13 @@ - (void)onOnCommand:(SDLOnCommand *)notification;
+
+
+ optional func on(_ notification: SDLOnCommand)
+
@@ -455,6 +686,13 @@ - (void)onOnEncodedSyncPData:(SDLOnEncodedSyncPData *)notification;
+
+
+ optional func on(_ notification: SDLOnEncodedSyncPData)
+
@@ -466,6 +704,13 @@ - (void)onOnHashChange:(SDLOnHashChange *)notification;
+
+
+ optional func on(_ notification: SDLOnHashChange)
+
@@ -477,6 +722,13 @@ - (void)onOnInteriorVehicleData:(SDLOnInteriorVehicleData *)notification;
+
+
+ optional func on(_ notification: SDLOnInteriorVehicleData)
+
@@ -488,6 +740,13 @@ - (void)onOnKeyboardInput:(SDLOnKeyboardInput *)notification;
+
+
+ optional func on(_ notification: SDLOnKeyboardInput)
+
@@ -499,6 +758,13 @@ - (void)onOnLanguageChange:(SDLOnLanguageChange *)notification;
+
+
+ optional func on(_ notification: SDLOnLanguageChange)
+
@@ -510,6 +776,13 @@ - (void)onOnLockScreenNotification:(SDLOnLockScreenStatus *)notification;
+
+
+ optional func on(onLockScreenNotification notification: SDLOnLockScreenStatus)
+
@@ -521,6 +794,13 @@ - (void)onOnPermissionsChange:(SDLOnPermissionsChange *)notification;
+
+
+ optional func on(_ notification: SDLOnPermissionsChange)
+
@@ -532,6 +812,13 @@ - (void)onOnSyncPData:(SDLOnSyncPData *)notification;
+
+
+ optional func on(_ notification: SDLOnSyncPData)
+
@@ -543,6 +830,13 @@ - (void)onOnSystemRequest:(SDLOnSystemRequest *)notification;
+
+
+ optional func on(_ notification: SDLOnSystemRequest)
+
@@ -554,6 +848,13 @@ - (void)onOnTBTClientState:(SDLOnTBTClientState *)notification;
+
+
+ optional func on(_ notification: SDLOnTBTClientState)
+
@@ -565,6 +866,13 @@ - (void)onOnTouchEvent:(SDLOnTouchEvent *)notification;
+
+
+ optional func on(_ notification: SDLOnTouchEvent)
+
@@ -576,6 +884,13 @@ - (void)onOnVehicleData:(SDLOnVehicleData *)notification;
+
+
+ optional func on(_ notification: SDLOnVehicleData)
+
@@ -587,6 +902,13 @@ - (void)onOnWayPointChange:(SDLOnWayPointChange *)notification;
+
+
+ optional func on(_ notification: SDLOnWayPointChange)
+
@@ -598,6 +920,13 @@ - (void)onPerformAudioPassThruResponse:(SDLPerformAudioPassThruResponse *)response;
+
+
+ optional func onPerformAudioPassThruResponse(_ response: SDLPerformAudioPassThruResponse)
+
@@ -609,6 +938,13 @@ - (void)onPerformInteractionResponse:(SDLPerformInteractionResponse *)response;
+
+
+ optional func onPerformInteractionResponse(_ response: SDLPerformInteractionResponse)
+
@@ -620,6 +956,13 @@ - (void)onPutFileResponse:(SDLPutFileResponse *)response;
+
+
+ optional func onPutFileResponse(_ response: SDLPutFileResponse)
+
@@ -631,6 +974,13 @@ - (void)onReadDIDResponse:(SDLReadDIDResponse *)response;
+
+
+ optional func onReadDIDResponse(_ response: SDLReadDIDResponse)
+
@@ -642,6 +992,13 @@ - (void)onRegisterAppInterfaceResponse:(SDLRegisterAppInterfaceResponse *)response;
+
+
+ optional func onRegisterAppInterfaceResponse(_ response: SDLRegisterAppInterfaceResponse)
+
@@ -653,6 +1010,13 @@ - (void)onResetGlobalPropertiesResponse:(SDLResetGlobalPropertiesResponse *)response;
+
+
+ optional func onResetGlobalPropertiesResponse(_ response: SDLResetGlobalPropertiesResponse)
+
@@ -664,6 +1028,13 @@ - (void)onScrollableMessageResponse:(SDLScrollableMessageResponse *)response;
+
+
+ optional func onScrollableMessageResponse(_ response: SDLScrollableMessageResponse)
+
@@ -675,6 +1046,13 @@ - (void)onSendHapticDataResponse:(SDLSendHapticDataResponse *)response;
+
+
+ optional func onSendHapticDataResponse(_ response: SDLSendHapticDataResponse)
+
@@ -686,6 +1064,13 @@ - (void)onSendLocationResponse:(SDLSendLocationResponse *)response;
+
+
+ optional func onSendLocationResponse(_ response: SDLSendLocationResponse)
+
@@ -697,6 +1082,13 @@ - (void)onSetAppIconResponse:(SDLSetAppIconResponse *)response;
+
+
+ optional func onSetAppIconResponse(_ response: SDLSetAppIconResponse)
+
@@ -708,6 +1100,13 @@ - (void)onSetDisplayLayoutResponse:(SDLSetDisplayLayoutResponse *)response;
+
+
+ optional func onSetDisplayLayoutResponse(_ response: SDLSetDisplayLayoutResponse)
+
@@ -719,6 +1118,13 @@ - (void)onSetGlobalPropertiesResponse:(SDLSetGlobalPropertiesResponse *)response;
+
+
+ optional func onSetGlobalPropertiesResponse(_ response: SDLSetGlobalPropertiesResponse)
+
@@ -730,6 +1136,13 @@ - (void)onSetInteriorVehicleDataResponse:(SDLSetInteriorVehicleDataResponse *)response;
+
+
+ optional func onSetInteriorVehicleDataResponse(_ response: SDLSetInteriorVehicleDataResponse)
+
@@ -741,6 +1154,13 @@ - (void)onSetMediaClockTimerResponse:(SDLSetMediaClockTimerResponse *)response;
+
+
+ optional func onSetMediaClockTimerResponse(_ response: SDLSetMediaClockTimerResponse)
+
@@ -752,6 +1172,13 @@ - (void)onShowConstantTBTResponse:(SDLShowConstantTBTResponse *)response;
+
+
+ optional func onShowConstantTBTResponse(_ response: SDLShowConstantTBTResponse)
+
@@ -763,6 +1190,13 @@ - (void)onShowResponse:(SDLShowResponse *)response;
+
+
+ optional func onShowResponse(_ response: SDLShowResponse)
+
@@ -774,6 +1208,13 @@ - (void)onSliderResponse:(SDLSliderResponse *)response;
+
+
+ optional func onSliderResponse(_ response: SDLSliderResponse)
+
@@ -785,6 +1226,13 @@ - (void)onSpeakResponse:(SDLSpeakResponse *)response;
+
+
+ optional func onSpeakResponse(_ response: SDLSpeakResponse)
+
@@ -796,6 +1244,13 @@ - (void)onSubscribeButtonResponse:(SDLSubscribeButtonResponse *)response;
+
+
+ optional func onSubscribeButtonResponse(_ response: SDLSubscribeButtonResponse)
+
@@ -807,6 +1262,13 @@ - (void)onSubscribeVehicleDataResponse:(SDLSubscribeVehicleDataResponse *)response;
+
+
+ optional func onSubscribeVehicleDataResponse(_ response: SDLSubscribeVehicleDataResponse)
+
@@ -818,6 +1280,13 @@ - (void)onSubscribeWayPointsResponse:(SDLSubscribeWayPointsResponse *)response;
+
+
+ optional func onSubscribeWayPointsResponse(_ response: SDLSubscribeWayPointsResponse)
+
@@ -829,6 +1298,13 @@ - (void)onSyncPDataResponse:(SDLSyncPDataResponse *)response;
+
+
+ optional func onSyncPDataResponse(_ response: SDLSyncPDataResponse)
+
@@ -840,6 +1316,13 @@ - (void)onUpdateTurnListResponse:(SDLUpdateTurnListResponse *)response;
+
+
+ optional func onUpdateTurnListResponse(_ response: SDLUpdateTurnListResponse)
+
@@ -851,6 +1334,13 @@ - (void)onUnregisterAppInterfaceResponse:(SDLUnregisterAppInterfaceResponse *)response;
+
+
+ optional func onUnregisterAppInterfaceResponse(_ response: SDLUnregisterAppInterfaceResponse)
+
@@ -862,6 +1352,13 @@ - (void)onUnsubscribeButtonResponse:(SDLUnsubscribeButtonResponse *)response;
+
+
+ optional func onUnsubscribeButtonResponse(_ response: SDLUnsubscribeButtonResponse)
+
@@ -873,6 +1370,13 @@ - (void)onUnsubscribeVehicleDataResponse:(SDLUnsubscribeVehicleDataResponse *)response;
+
+
+ optional func onUnsubscribeVehicleDataResponse(_ response: SDLUnsubscribeVehicleDataResponse)
+
@@ -884,6 +1388,13 @@ - (void)onUnsubscribeWayPointsResponse:(SDLUnsubscribeWayPointsResponse *)response;
+
+
+ optional func onUnsubscribeWayPointsResponse(_ response: SDLUnsubscribeWayPointsResponse)
+
diff --git a/docs/Protocols/SDLSecurityType.html b/docs/Protocols/SDLSecurityType.html
index b19263ba7..f06b10d39 100644
--- a/docs/Protocols/SDLSecurityType.html
+++ b/docs/Protocols/SDLSecurityType.html
@@ -26,6 +26,13 @@ @property (copy, nonatomic) NSString *appId
+
+
+ var appId: String { get set }
+
@@ -37,6 +44,13 @@ - (void)initializeWithAppId:(NSString *)appId completionHandler:(void (^)(NSError *_Nullable error))completionHandler;
+
+
+ func initialize(withAppId appId: String, completionHandler: @escaping (Error?) -> Void)
+
@@ -48,6 +62,13 @@ - (void)stop;
+
+
+ func stop()
+
@@ -59,6 +80,13 @@ - (nullable NSData *)runHandshakeWithClientData:(NSData *)data error:(NSError **)error;
+
+
+ func runHandshake(withClientData data: Data) throws -> Data
+
@@ -70,6 +98,13 @@ - (nullable NSData *)encryptData:(NSData *)data withError:(NSError **)error;
+
+
+ func encryptData(_ data: Data) throws -> Data
+
@@ -81,6 +116,13 @@ - (nullable NSData *)decryptData:(NSData *)data withError:(NSError **)error;
+
+
+ func decryptData(_ data: Data) throws -> Data
+
@@ -92,6 +134,13 @@ + (NSSet<NSString *> *)availableMakes;
+
+
+ static func availableMakes() -> Set<String>
+
diff --git a/docs/Protocols/SDLTransportDelegate.html b/docs/Protocols/SDLTransportDelegate.html
index d23c936fb..8c5022e54 100644
--- a/docs/Protocols/SDLTransportDelegate.html
+++ b/docs/Protocols/SDLTransportDelegate.html
@@ -22,6 +22,13 @@ - (void)onTransportConnected;
+
+
+ func onTransportConnected()
+
@@ -33,6 +40,13 @@ - (void)onTransportDisconnected;
+
+
+ func onTransportDisconnected()
+
@@ -44,6 +58,13 @@ - (void)onDataReceived:(NSData *)receivedData;
+
+
+ func onDataReceived(_ receivedData: Any!)
+
diff --git a/docs/Type Definitions.html b/docs/Type Definitions.html
index de66f0281..ce1096d0a 100644
--- a/docs/Type Definitions.html
+++ b/docs/Type Definitions.html
@@ -549,6 +549,13 @@ typedef NSString* SDLEnum
+
+
+ struct SDLEnum : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -560,6 +567,10 @@ typedef NSString SDLFileName
+
+
@@ -571,6 +582,13 @@ typedef void (^SDLFileManagerStartupCompletionHandler)(BOOL success, NSError *__nullable error)
+
+
+ typealias SDLFileManagerStartupCompletionHandler = (Bool, Error?) -> Void
+
@@ -1064,6 +1082,13 @@ typedef SDLEnum SDLLockScreenStatus
+
+
+ struct SDLLockScreenStatus : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1120,6 +1145,13 @@ typedef void (^SDLManagerReadyBlock)(BOOL success, NSError *_Nullable error)
+
+
+ typealias SDLManagerReadyBlock = (Bool, Error?) -> Void
+
@@ -1174,6 +1206,13 @@ typedef SDLEnum SDLModuleType
+
+
+ struct SDLModuleType : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1185,6 +1224,13 @@ typedef NOTIFICATION_TYPEDEF SDLNotificationName
+
+
+ typealias SDLNotificationName = NSString
+
@@ -1196,6 +1242,13 @@ typedef NSString *SDLNotificationUserInfoKey
+
+
+ typealias SDLNotificationUserInfoKey = NSString
+
@@ -1343,6 +1396,13 @@ typedef NSString *SDLPermissionRPCName
+
+
+ typealias SDLPermissionRPCName = NSString
+
@@ -1354,6 +1414,13 @@ typedef NSUUID *SDLPermissionObserverIdentifier
+
+
+ typealias SDLPermissionObserverIdentifier = NSUUID
+
@@ -1372,7 +1439,7 @@ typealias SDLPermissionsChangedHandler = ([String : NSNumber
+ typealias SDLPermissionsChangedHandler = ([String : NSNumber & SDLBool], SDLPermissionGroupStatus) -> Void
@@ -1412,6 +1479,13 @@ typedef SDLEnum SDLPowerModeQualificationStatus
+
+
+ struct SDLPowerModeQualificationStatus : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1423,6 +1497,13 @@ typedef SDLEnum SDLPowerModeStatus
+
+
+ struct SDLPowerModeStatus : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1434,6 +1515,13 @@ typedef SDLEnum SDLPredefinedLayout
+
+
+ struct SDLPredefinedLayout : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1445,6 +1533,13 @@ typedef SDLEnum SDLPrerecordedSpeech
+
+
+ struct SDLPrerecordedSpeech : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1476,6 +1571,13 @@ typedef SDLEnum SDLRadioBand
+
+
+ struct SDLRadioBand : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1505,6 +1607,13 @@ typedef SDLEnum SDLRequestType
+
+
+ struct SDLRequestType : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1574,6 +1683,13 @@ typedef SDLEnum SDLSpeechCapabilities
+
+
+ struct SDLSpeechCapabilities : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1641,6 +1757,13 @@ typedef SDLEnum SDLTBTState
+
+
+ struct SDLTBTState : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1652,6 +1775,13 @@ typedef SDLEnum SDLTemperatureUnit
+
+
+ struct SDLTemperatureUnit : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1703,6 +1833,13 @@ typedef SDLEnum SDLTimerMode
+
+
+ struct SDLTimerMode : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1715,6 +1852,13 @@ typedef enum {
+ SDLTouchIdentifierFirstFinger = 0,
+ SDLTouchIdentifierSecondFinger = 1
+} SDLTouchIdentifier
+
+
@@ -1726,6 +1870,13 @@ typedef void(^SDLTouchEventHandler)(SDLTouch *touch, SDLTouchType type)
+
+
+ typealias SDLTouchEventHandler = (SDLTouch, SDLTouchType) -> Void
+
@@ -1737,6 +1888,13 @@ typedef SDLEnum SDLTouchType
+
+
+ struct SDLTouchType : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1902,6 +2060,13 @@ typedef SDLEnum SDLVentilationMode
+
+
+ struct SDLVentilationMode : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
@@ -1989,6 +2154,13 @@ typedef SDLEnum SDLWayPointType
+
+
+ struct SDLWayPointType : RawRepresentable, _SwiftNewtypeWrapper, Equatable, Hashable, _ObjectiveCBridgeable
+
diff --git a/docs/Type Definitions/SDLTouchIdentifier.html b/docs/Type Definitions/SDLTouchIdentifier.html
index 882696186..1ae5a980d 100644
--- a/docs/Type Definitions/SDLTouchIdentifier.html
+++ b/docs/Type Definitions/SDLTouchIdentifier.html
@@ -21,6 +21,16 @@ enum {
+ SDLTouchIdentifierFirstFinger = 0,
+ SDLTouchIdentifierSecondFinger = 1
+}
+
+
+ struct SDLTouchIdentifier : RawRepresentable, Equatable
+
diff --git a/docs/Type Definitions/SDLTouchIdentifier/.html b/docs/Type Definitions/SDLTouchIdentifier/.html
index 03468a407..7c2f6a6ad 100644
--- a/docs/Type Definitions/SDLTouchIdentifier/.html
+++ b/docs/Type Definitions/SDLTouchIdentifier/.html
@@ -1,4 +1,4 @@
-SDLTouchIdentifierFirstFinger = 0
+
+
@@ -32,6 +36,10 @@ SDLTouchIdentifierSecondFinger = 1
+
+
diff --git a/docs/badge.svg b/docs/badge.svg
index 5cbd336ce..04c210b2c 100644
--- a/docs/badge.svg
+++ b/docs/badge.svg
@@ -1 +1,28 @@
-
\ No newline at end of file
+
diff --git a/docs/index.html b/docs/index.html
index 9a2e49fa8..9921becaf 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -1750,7 +1750,7 @@
url: Constants.html#/c:@SmartDeviceLinkVersionNumber
- name: SmartDeviceLinkVersionString
url: Constants.html#/c:@SmartDeviceLinkVersionString
-- name: Enums
+- name: Enumerations
sub_nav:
- name: SDLArtworkImageFormat
url: Enums/SDLArtworkImageFormat.html
diff --git a/docs/search.json b/docs/search.json
index 1ae6c7fc9..2d11f9b23 100644
--- a/docs/search.json
+++ b/docs/search.json
@@ -1 +1 @@
-{"Type Definitions/SDLTouchIdentifier/.html#/c:@EA@SDLTouchIdentifier@SDLTouchIdentifierFirstFinger":{"name":"SDLTouchIdentifierFirstFinger","abstract":"Undocumented
"},"Type Definitions/SDLTouchIdentifier/.html#/c:@EA@SDLTouchIdentifier@SDLTouchIdentifierSecondFinger":{"name":"SDLTouchIdentifierSecondFinger","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLAmbientLightStatus.h@T@SDLAmbientLightStatus":{"name":"SDLAmbientLightStatus","abstract":"Reflects the status of the ambient light sensor"},"Type Definitions.html#/c:SDLAppHMIType.h@T@SDLAppHMIType":{"name":"SDLAppHMIType","abstract":"
Enumeration listing possible app hmi types.
"},"Type Definitions.html#/c:SDLAppInterfaceUnregisteredReason.h@T@SDLAppInterfaceUnregisteredReason":{"name":"SDLAppInterfaceUnregisteredReason","abstract":"Indicates reason why app interface was unregistered. The application is being disconnected by SDL.
"},"Type Definitions.html#/c:SDLAudioStreamingState.h@T@SDLAudioStreamingState":{"name":"SDLAudioStreamingState","abstract":"Describes whether or not streaming audio is currently audible to the user. Though provided in every OnHMIStatus notification, this information is only relevant for applications that declare themselves as media apps in RegisterAppInterface
"},"Type Definitions.html#/c:SDLAudioType.h@T@SDLAudioType":{"name":"SDLAudioType","abstract":"Describes different audio type options for PerformAudioPassThru
"},"Type Definitions.html#/c:SDLBitsPerSample.h@T@SDLBitsPerSample":{"name":"SDLBitsPerSample","abstract":"Describes different bit depth options for PerformAudioPassThru
"},"Type Definitions.html#/c:SDLButtonEventMode.h@T@SDLButtonEventMode":{"name":"SDLButtonEventMode","abstract":"Indicates whether the button was depressed or released. A BUTTONUP event will always be preceded by a BUTTONDOWN event.
"},"Type Definitions.html#/c:SDLButtonName.h@T@SDLButtonName":{"name":"SDLButtonName","abstract":"Defines logical buttons which, on a given SDL unit, would correspond to"},"Type Definitions.html#/c:SDLButtonPressMode.h@T@SDLButtonPressMode":{"name":"SDLButtonPressMode","abstract":"
Indicates whether this is a LONG or SHORT button press
"},"Type Definitions.html#/c:SDLCarModeStatus.h@T@SDLCarModeStatus":{"name":"SDLCarModeStatus","abstract":"Describes the carmode the vehicle is in.
"},"Type Definitions.html#/c:SDLCharacterSet.h@T@SDLCharacterSet":{"name":"SDLCharacterSet","abstract":"Character sets supported by SDL.
"},"Type Definitions.html#/c:SDLCompassDirection.h@T@SDLCompassDirection":{"name":"SDLCompassDirection","abstract":"The list of potential compass directions.
"},"Type Definitions.html#/c:SDLComponentVolumeStatus.h@T@SDLComponentVolumeStatus":{"name":"SDLComponentVolumeStatus","abstract":"The volume status of a vehicle component.
"},"Type Definitions.html#/c:SDLDefrostZone.h@T@SDLDefrostZone":{"name":"SDLDefrostZone","abstract":"Enumeration listing possible defrost zones.
"},"Type Definitions.html#/c:SDLDeliveryMode.h@T@SDLDeliveryMode":{"name":"SDLDeliveryMode","abstract":"Specifies the mode in which the sendLocation request is sent.
"},"Type Definitions.html#/c:SDLDeviceLevelStatus.h@T@SDLDeviceLevelStatus":{"name":"SDLDeviceLevelStatus","abstract":"Reflects the reported battery status of the connected device, if reported.
"},"Type Definitions.html#/c:SDLDimension.h@T@SDLDimension":{"name":"SDLDimension","abstract":"The supported dimensions of the GPS.
"},"Type Definitions.html#/c:SDLDisplayType.h@T@SDLDisplayType":{"name":"SDLDisplayType","abstract":"Identifies the various display types used by SDL.
"},"Type Definitions.html#/c:SDLDriverDistractionState.h@T@SDLDriverDistractionState":{"name":"SDLDriverDistractionState","abstract":"Enumeration that describes possible states of driver distraction.
"},"Type Definitions.html#/c:SDLECallConfirmationStatus.h@T@SDLECallConfirmationStatus":{"name":"SDLECallConfirmationStatus","abstract":"Reflects the status of the eCall Notification."},"Type Definitions.html#/c:SDLEmergencyEventType.h@T@SDLEmergencyEventType":{"name":"SDLEmergencyEventType","abstract":"
Reflects the emergency event status of the vehicle."},"Type Definitions.html#/c:SDLEnum.h@T@SDLEnum":{"name":"SDLEnum","abstract":"
Undocumented
"},"Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileName":{"name":"SDLFileName","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLFileManager.h@T@SDLFileManagerStartupCompletionHandler":{"name":"SDLFileManagerStartupCompletionHandler","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerUploadCompletionHandler":{"name":"SDLFileManagerUploadCompletionHandler","abstract":"A completion handler called after a response from Core to a upload request.
"},"Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiUploadCompletionHandler":{"name":"SDLFileManagerMultiUploadCompletionHandler","abstract":"A completion handler called after a set of upload requests has completed.
"},"Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiUploadProgressHandler":{"name":"SDLFileManagerMultiUploadProgressHandler","abstract":"In a multiple request send, a handler called after each response from Core to a upload request.
"},"Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerDeleteCompletionHandler":{"name":"SDLFileManagerDeleteCompletionHandler","abstract":"A completion handler called after a response from Core to a delete request.
"},"Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiDeleteCompletionHandler":{"name":"SDLFileManagerMultiDeleteCompletionHandler","abstract":"A completion handler called after a set of delete requests has completed.
"},"Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerListFilesCompletionHandler":{"name":"SDLFileManagerListFilesCompletionHandler","abstract":"A completion handler called after response from Core to a list files request.
"},"Type Definitions.html#/c:SDLFileType.h@T@SDLFileType":{"name":"SDLFileType","abstract":"Enumeration listing possible file types.
"},"Type Definitions.html#/c:SDLFuelCutoffStatus.h@T@SDLFuelCutoffStatus":{"name":"SDLFuelCutoffStatus","abstract":"Reflects the status of the Restraints Control Module fuel pump cutoff."},"Type Definitions.html#/c:SDLGlobalProperty.h@T@SDLGlobalProperty":{"name":"SDLGlobalProperty","abstract":"
Properties of a user-initiated VR interaction (i.e. interactions started by the user pressing the PTT button).
"},"Type Definitions.html#/c:SDLHMILevel.h@T@SDLHMILevel":{"name":"SDLHMILevel","abstract":"Specifies current level of the HMI. An HMI level indicates the degree of user interaction possible through the HMI (e.g. TTS only, display only, VR, etc.). The HMI level varies for an application based on the type of display (i.e. Nav or non-Nav) and the user directing focus
to other applications (e.g. phone, other mobile applications, etc.)
Specifies HMI Zones in the vehicle.
"},"Type Definitions.html#/c:SDLIgnitionStableStatus.h@T@SDLIgnitionStableStatus":{"name":"SDLIgnitionStableStatus","abstract":"Reflects the ignition switch stability.
"},"Type Definitions.html#/c:SDLIgnitionStatus.h@T@SDLIgnitionStatus":{"name":"SDLIgnitionStatus","abstract":"Reflects the status of ignition..
"},"Type Definitions.html#/c:SDLImageFieldName.h@T@SDLImageFieldName":{"name":"SDLImageFieldName","abstract":"The name that identifies the filed."},"Type Definitions.html#/c:SDLImageType.h@T@SDLImageType":{"name":"SDLImageType","abstract":"
Contains information about the type of image.
"},"Type Definitions.html#/c:SDLInteractionMode.h@T@SDLInteractionMode":{"name":"SDLInteractionMode","abstract":"For application-initiated interactions (SDLPerformInteraction), this specifies the mode by which the user is prompted and by which the user’s selection is indicated
"},"Type Definitions.html#/c:SDLKeyboardEvent.h@T@SDLKeyboardEvent":{"name":"SDLKeyboardEvent","abstract":"Enumeration listing possible keyboard events."},"Type Definitions.html#/c:SDLKeyboardLayout.h@T@SDLKeyboardLayout":{"name":"SDLKeyboardLayout","abstract":"
Enumeration listing possible keyboard layouts"},"Type Definitions.html#/c:SDLKeypressMode.h@T@SDLKeypressMode":{"name":"SDLKeypressMode","abstract":"
Enumeration listing possible keyboard events.
"},"Type Definitions.html#/c:SDLLanguage.h@T@SDLLanguage":{"name":"SDLLanguage","abstract":"Specifies the language to be used for TTS, VR, displayed messages/menus
"},"Type Definitions.html#/c:SDLLayoutMode.h@T@SDLLayoutMode":{"name":"SDLLayoutMode","abstract":"For touchscreen interactions, the mode of how the choices are presented.
"},"Type Definitions.html#/c:SDLLockScreenStatus.h@T@SDLLockScreenStatus":{"name":"SDLLockScreenStatus","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLLogConstants.h@T@SDLLogFilterBlock":{"name":"SDLLogFilterBlock","abstract":"A block that takes in a log model and returns whether or not the log passes the filter and should therefore be logged.
"},"Type Definitions.html#/c:SDLMaintenanceModeStatus.h@T@SDLMaintenanceModeStatus":{"name":"SDLMaintenanceModeStatus","abstract":"The SDLMaintenanceModeStatus class.
"},"Type Definitions.html#/c:SDLManager.h@T@SDLManagerReadyBlock":{"name":"SDLManagerReadyBlock","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLMediaClockFormat.h@T@SDLMediaClockFormat":{"name":"SDLMediaClockFormat","abstract":"Indicates the format of the time displayed on the connected SDL unit.
"},"Type Definitions.html#/c:SDLMetadataType.h@T@SDLMetadataType":{"name":"SDLMetadataType","abstract":"Text Field Types
"},"Type Definitions.html#/c:SDLModuleType.h@T@SDLModuleType":{"name":"SDLModuleType","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLNotificationName":{"name":"SDLNotificationName","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLNotificationUserInfoKey":{"name":"SDLNotificationUserInfoKey","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLAudioPassThruHandler":{"name":"SDLAudioPassThruHandler","abstract":"A handler used on SDLPerformAudioPassThru.
"},"Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLResponseHandler":{"name":"SDLResponseHandler","abstract":"A handler used on all RPC requests which fires when the response is received.
"},"Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLRPCButtonNotificationHandler":{"name":"SDLRPCButtonNotificationHandler","abstract":"A handler that may optionally be run when an SDLSubscribeButton or SDLSoftButton has a corresponding notification occur.
"},"Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLRPCCommandNotificationHandler":{"name":"SDLRPCCommandNotificationHandler","abstract":"A handler that may optionally be run when an SDLAddCommand has a corresponding notification occur.
"},"Type Definitions.html#/c:SDLPRNDL.h@T@SDLPRNDL":{"name":"SDLPRNDL","abstract":"The selected gear the car is in.
"},"Type Definitions.html#/c:SDLPermissionConstants.h@T@SDLPermissionRPCName":{"name":"SDLPermissionRPCName","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLPermissionConstants.h@T@SDLPermissionObserverIdentifier":{"name":"SDLPermissionObserverIdentifier","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLPermissionConstants.h@T@SDLPermissionsChangedHandler":{"name":"SDLPermissionsChangedHandler","abstract":"The PermissionObserver is a block that is passed in to some methods that will be stored and called when specified permissions change.
"},"Type Definitions.html#/c:SDLPermissionStatus.h@T@SDLPermissionStatus":{"name":"SDLPermissionStatus","abstract":"Enumeration that describes possible permission states of a policy table entry.
"},"Type Definitions.html#/c:SDLPowerModeQualificationStatus.h@T@SDLPowerModeQualificationStatus":{"name":"SDLPowerModeQualificationStatus","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLPowerModeStatus.h@T@SDLPowerModeStatus":{"name":"SDLPowerModeStatus","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLPredefinedLayout.h@T@SDLPredefinedLayout":{"name":"SDLPredefinedLayout","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLPrerecordedSpeech.h@T@SDLPrerecordedSpeech":{"name":"SDLPrerecordedSpeech","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLPrimaryAudioSource.h@T@SDLPrimaryAudioSource":{"name":"SDLPrimaryAudioSource","abstract":"Reflects the current primary audio source of SDL (if selected).
"},"Type Definitions.html#/c:SDLRadioBand.h@T@SDLRadioBand":{"name":"SDLRadioBand","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLRadioState.h@T@SDLRadioState":{"name":"SDLRadioState","abstract":"List possible states of a remote control radio module.
"},"Type Definitions.html#/c:SDLRequestType.h@T@SDLRequestType":{"name":"SDLRequestType","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLResult.h@T@SDLResult":{"name":"SDLResult","abstract":"Defines the possible result codes returned by SDL to the application in a response to a requested operation
"},"Type Definitions.html#/c:SDLSamplingRate.h@T@SDLSamplingRate":{"name":"SDLSamplingRate","abstract":"Describes different sampling rates for PerformAudioPassThru
"},"Type Definitions.html#/c:SDLSoftButtonType.h@T@SDLSoftButtonType":{"name":"SDLSoftButtonType","abstract":"SoftButtonType (TEXT / IMAGE / BOTH)
"},"Type Definitions.html#/c:SDLSpeechCapabilities.h@T@SDLSpeechCapabilities":{"name":"SDLSpeechCapabilities","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLSystemAction.h@T@SDLSystemAction":{"name":"SDLSystemAction","abstract":"Enumeration that describes system actions that can be triggered.
"},"Type Definitions.html#/c:SDLSystemCapabilityType.h@T@SDLSystemCapabilityType":{"name":"SDLSystemCapabilityType","abstract":"The type of system capability to get more information on
"},"Type Definitions.html#/c:SDLSystemContext.h@T@SDLSystemContext":{"name":"SDLSystemContext","abstract":"Indicates whether or not a user-initiated interaction is in progress, and if so, in what mode (i.e. MENU or VR).
"},"Type Definitions.html#/c:SDLTBTState.h@T@SDLTBTState":{"name":"SDLTBTState","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLTemperatureUnit.h@T@SDLTemperatureUnit":{"name":"SDLTemperatureUnit","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLTextAlignment.h@T@SDLTextAlignment":{"name":"SDLTextAlignment","abstract":"The list of possible alignments of text in a field. May only work on some display types.
"},"Type Definitions.html#/c:SDLTextFieldName.h@T@SDLTextFieldName":{"name":"SDLTextFieldName","abstract":"Names of the text fields that can appear on a SDL display.
"},"Type Definitions.html#/c:SDLTimerMode.h@T@SDLTimerMode":{"name":"SDLTimerMode","abstract":"Undocumented
"},"Type Definitions/SDLTouchIdentifier.html":{"name":"SDLTouchIdentifier","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLTouchManager.h@T@SDLTouchEventHandler":{"name":"SDLTouchEventHandler","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLTouchType.h@T@SDLTouchType":{"name":"SDLTouchType","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLTriggerSource.h@T@SDLTriggerSource":{"name":"SDLTriggerSource","abstract":"Indicates whether choice/command was selected via VR or via a menu selection (using SEEKRIGHT/SEEKLEFT, TUNEUP, TUNEDOWN, OK buttons)
"},"Type Definitions.html#/c:SDLUpdateMode.h@T@SDLUpdateMode":{"name":"SDLUpdateMode","abstract":"Specifies what function should be performed on the media clock/counter
"},"Type Definitions.html#/c:SDLVehicleDataActiveStatus.h@T@SDLVehicleDataActiveStatus":{"name":"SDLVehicleDataActiveStatus","abstract":"Vehicle Data Activity Status
"},"Type Definitions.html#/c:SDLVehicleDataEventStatus.h@T@SDLVehicleDataEventStatus":{"name":"SDLVehicleDataEventStatus","abstract":"Reflects the status of a vehicle data event; e.g. a seat belt event status.
"},"Type Definitions.html#/c:SDLVehicleDataNotificationStatus.h@T@SDLVehicleDataNotificationStatus":{"name":"SDLVehicleDataNotificationStatus","abstract":"Reflects the status of a vehicle data notification.
"},"Type Definitions.html#/c:SDLVehicleDataResultCode.h@T@SDLVehicleDataResultCode":{"name":"SDLVehicleDataResultCode","abstract":"Vehicle Data Result Code
"},"Type Definitions.html#/c:SDLVehicleDataStatus.h@T@SDLVehicleDataStatus":{"name":"SDLVehicleDataStatus","abstract":"Reflects the status of a binary vehicle data item.
"},"Type Definitions.html#/c:SDLVehicleDataType.h@T@SDLVehicleDataType":{"name":"SDLVehicleDataType","abstract":"Defines the vehicle data types that can be published and/or subscribed to using SDLSubscribeVehicleData
"},"Type Definitions.html#/c:SDLVentilationMode.h@T@SDLVentilationMode":{"name":"SDLVentilationMode","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLVideoStreamingCodec.h@T@SDLVideoStreamingCodec":{"name":"SDLVideoStreamingCodec","abstract":"Enum for each type of video streaming codec
"},"Type Definitions.html#/c:SDLVideoStreamingProtocol.h@T@SDLVideoStreamingProtocol":{"name":"SDLVideoStreamingProtocol","abstract":"Enum for each type of video streaming protocol
"},"Type Definitions.html#/c:SDLVrCapabilities.h@T@SDLVRCapabilities":{"name":"SDLVRCapabilities","abstract":"The VR capabilities of the connected SDL platform.
"},"Type Definitions.html#/c:SDLWarningLightStatus.h@T@SDLWarningLightStatus":{"name":"SDLWarningLightStatus","abstract":"Reflects the status of a cluster instrument warning light.
"},"Type Definitions.html#/c:SDLWayPointType.h@T@SDLWayPointType":{"name":"SDLWayPointType","abstract":"Undocumented
"},"Type Definitions.html#/c:SDLWiperStatus.h@T@SDLWiperStatus":{"name":"SDLWiperStatus","abstract":"Wiper Status
"},"Protocols/SDLTransportDelegate.html#/c:objc(pl)SDLTransportDelegate(im)onTransportConnected":{"name":"-onTransportConnected","abstract":"Undocumented
","parent_name":"SDLTransportDelegate"},"Protocols/SDLTransportDelegate.html#/c:objc(pl)SDLTransportDelegate(im)onTransportDisconnected":{"name":"-onTransportDisconnected","abstract":"Undocumented
","parent_name":"SDLTransportDelegate"},"Protocols/SDLTransportDelegate.html#/c:objc(pl)SDLTransportDelegate(im)onDataReceived:":{"name":"-onDataReceived:","abstract":"Undocumented
","parent_name":"SDLTransportDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:didReceiveSingleTapForView:atPoint:":{"name":"-touchManager:didReceiveSingleTapForView:atPoint:","abstract":"A single tap was received
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:didReceiveDoubleTapForView:atPoint:":{"name":"-touchManager:didReceiveDoubleTapForView:atPoint:","abstract":"A double tap was received
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:panningDidStartInView:atPoint:":{"name":"-touchManager:panningDidStartInView:atPoint:","abstract":"Panning started
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:didReceivePanningFromPoint:toPoint:":{"name":"-touchManager:didReceivePanningFromPoint:toPoint:","abstract":"Panning moved between points
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:panningDidEndInView:atPoint:":{"name":"-touchManager:panningDidEndInView:atPoint:","abstract":"Panning ended
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:panningCanceledAtPoint:":{"name":"-touchManager:panningCanceledAtPoint:","abstract":"Panning canceled
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:pinchDidStartInView:atCenterPoint:":{"name":"-touchManager:pinchDidStartInView:atCenterPoint:","abstract":"Pinch did start
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:didReceivePinchAtCenterPoint:withScale:":{"name":"-touchManager:didReceivePinchAtCenterPoint:withScale:","abstract":"@abstract","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:didReceivePinchInView:atCenterPoint:withScale:":{"name":"-touchManager:didReceivePinchInView:atCenterPoint:withScale:","abstract":"
Pinch moved and changed scale
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:pinchDidEndInView:atCenterPoint:":{"name":"-touchManager:pinchDidEndInView:atCenterPoint:","abstract":"Pinch did end
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:pinchCanceledAtCenterPoint:":{"name":"-touchManager:pinchCanceledAtCenterPoint:","abstract":"Pinch canceled
","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLSecurityType.html#/c:objc(pl)SDLSecurityType(py)appId":{"name":"appId","abstract":"Undocumented
","parent_name":"SDLSecurityType"},"Protocols/SDLSecurityType.html#/c:objc(pl)SDLSecurityType(im)initializeWithAppId:completionHandler:":{"name":"-initializeWithAppId:completionHandler:","abstract":"Undocumented
","parent_name":"SDLSecurityType"},"Protocols/SDLSecurityType.html#/c:objc(pl)SDLSecurityType(im)stop":{"name":"-stop","abstract":"Undocumented
","parent_name":"SDLSecurityType"},"Protocols/SDLSecurityType.html#/c:objc(pl)SDLSecurityType(im)runHandshakeWithClientData:error:":{"name":"-runHandshakeWithClientData:error:","abstract":"Undocumented
","parent_name":"SDLSecurityType"},"Protocols/SDLSecurityType.html#/c:objc(pl)SDLSecurityType(im)encryptData:withError:":{"name":"-encryptData:withError:","abstract":"Undocumented
","parent_name":"SDLSecurityType"},"Protocols/SDLSecurityType.html#/c:objc(pl)SDLSecurityType(im)decryptData:withError:":{"name":"-decryptData:withError:","abstract":"Undocumented
","parent_name":"SDLSecurityType"},"Protocols/SDLSecurityType.html#/c:objc(pl)SDLSecurityType(cm)availableMakes":{"name":"+availableMakes","abstract":"Undocumented
","parent_name":"SDLSecurityType"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnDriverDistraction:":{"name":"-onOnDriverDistraction:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnHMIStatus:":{"name":"-onOnHMIStatus:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onProxyClosed":{"name":"-onProxyClosed","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onProxyOpened":{"name":"-onProxyOpened","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onAddCommandResponse:":{"name":"-onAddCommandResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onAddSubMenuResponse:":{"name":"-onAddSubMenuResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onAlertManeuverResponse:":{"name":"-onAlertManeuverResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onAlertResponse:":{"name":"-onAlertResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onButtonPressResponse:":{"name":"-onButtonPressResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onChangeRegistrationResponse:":{"name":"-onChangeRegistrationResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onCreateInteractionChoiceSetResponse:":{"name":"-onCreateInteractionChoiceSetResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onDeleteCommandResponse:":{"name":"-onDeleteCommandResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onDeleteFileResponse:":{"name":"-onDeleteFileResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onDeleteInteractionChoiceSetResponse:":{"name":"-onDeleteInteractionChoiceSetResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onDeleteSubMenuResponse:":{"name":"-onDeleteSubMenuResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onDiagnosticMessageResponse:":{"name":"-onDiagnosticMessageResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onDialNumberResponse:":{"name":"-onDialNumberResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onEncodedSyncPDataResponse:":{"name":"-onEncodedSyncPDataResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onEndAudioPassThruResponse:":{"name":"-onEndAudioPassThruResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onError:":{"name":"-onError:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onGenericResponse:":{"name":"-onGenericResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onGetDTCsResponse:":{"name":"-onGetDTCsResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onGetInteriorVehicleDataResponse:":{"name":"-onGetInteriorVehicleDataResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onGetSystemCapabilityResponse:":{"name":"-onGetSystemCapabilityResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onGetVehicleDataResponse:":{"name":"-onGetVehicleDataResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onGetWayPointsResponse:":{"name":"-onGetWayPointsResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onListFilesResponse:":{"name":"-onListFilesResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onReceivedLockScreenIcon:":{"name":"-onReceivedLockScreenIcon:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnAppInterfaceUnregistered:":{"name":"-onOnAppInterfaceUnregistered:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnAudioPassThru:":{"name":"-onOnAudioPassThru:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnButtonEvent:":{"name":"-onOnButtonEvent:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnButtonPress:":{"name":"-onOnButtonPress:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnCommand:":{"name":"-onOnCommand:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnEncodedSyncPData:":{"name":"-onOnEncodedSyncPData:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnHashChange:":{"name":"-onOnHashChange:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnInteriorVehicleData:":{"name":"-onOnInteriorVehicleData:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnKeyboardInput:":{"name":"-onOnKeyboardInput:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnLanguageChange:":{"name":"-onOnLanguageChange:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnLockScreenNotification:":{"name":"-onOnLockScreenNotification:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnPermissionsChange:":{"name":"-onOnPermissionsChange:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnSyncPData:":{"name":"-onOnSyncPData:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnSystemRequest:":{"name":"-onOnSystemRequest:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnTBTClientState:":{"name":"-onOnTBTClientState:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnTouchEvent:":{"name":"-onOnTouchEvent:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnVehicleData:":{"name":"-onOnVehicleData:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onOnWayPointChange:":{"name":"-onOnWayPointChange:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onPerformAudioPassThruResponse:":{"name":"-onPerformAudioPassThruResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onPerformInteractionResponse:":{"name":"-onPerformInteractionResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onPutFileResponse:":{"name":"-onPutFileResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onReadDIDResponse:":{"name":"-onReadDIDResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onRegisterAppInterfaceResponse:":{"name":"-onRegisterAppInterfaceResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onResetGlobalPropertiesResponse:":{"name":"-onResetGlobalPropertiesResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onScrollableMessageResponse:":{"name":"-onScrollableMessageResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSendHapticDataResponse:":{"name":"-onSendHapticDataResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSendLocationResponse:":{"name":"-onSendLocationResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSetAppIconResponse:":{"name":"-onSetAppIconResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSetDisplayLayoutResponse:":{"name":"-onSetDisplayLayoutResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSetGlobalPropertiesResponse:":{"name":"-onSetGlobalPropertiesResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSetInteriorVehicleDataResponse:":{"name":"-onSetInteriorVehicleDataResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSetMediaClockTimerResponse:":{"name":"-onSetMediaClockTimerResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onShowConstantTBTResponse:":{"name":"-onShowConstantTBTResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onShowResponse:":{"name":"-onShowResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSliderResponse:":{"name":"-onSliderResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSpeakResponse:":{"name":"-onSpeakResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSubscribeButtonResponse:":{"name":"-onSubscribeButtonResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSubscribeVehicleDataResponse:":{"name":"-onSubscribeVehicleDataResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSubscribeWayPointsResponse:":{"name":"-onSubscribeWayPointsResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onSyncPDataResponse:":{"name":"-onSyncPDataResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onUpdateTurnListResponse:":{"name":"-onUpdateTurnListResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onUnregisterAppInterfaceResponse:":{"name":"-onUnregisterAppInterfaceResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onUnsubscribeButtonResponse:":{"name":"-onUnsubscribeButtonResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onUnsubscribeVehicleDataResponse:":{"name":"-onUnsubscribeVehicleDataResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProxyListener.html#/c:objc(pl)SDLProxyListener(im)onUnsubscribeWayPointsResponse:":{"name":"-onUnsubscribeWayPointsResponse:","abstract":"Undocumented
","parent_name":"SDLProxyListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)handleProtocolStartServiceACKMessage:":{"name":"-handleProtocolStartServiceACKMessage:","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)handleProtocolStartServiceNAKMessage:":{"name":"-handleProtocolStartServiceNAKMessage:","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)handleProtocolEndServiceACKMessage:":{"name":"-handleProtocolEndServiceACKMessage:","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)handleProtocolEndServiceNAKMessage:":{"name":"-handleProtocolEndServiceNAKMessage:","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)handleHeartbeatForSession:":{"name":"-handleHeartbeatForSession:","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)handleHeartbeatACK":{"name":"-handleHeartbeatACK","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)onProtocolMessageReceived:":{"name":"-onProtocolMessageReceived:","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)onProtocolOpened":{"name":"-onProtocolOpened","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)onProtocolClosed":{"name":"-onProtocolClosed","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLProtocolListener.html#/c:objc(pl)SDLProtocolListener(im)onError:exception:":{"name":"-onError:exception:","abstract":"Undocumented
","parent_name":"SDLProtocolListener"},"Protocols/SDLManagerDelegate.html#/c:objc(pl)SDLManagerDelegate(im)managerDidDisconnect":{"name":"-managerDidDisconnect","abstract":"Called upon a disconnection from the remote system.
","parent_name":"SDLManagerDelegate"},"Protocols/SDLManagerDelegate.html#/c:objc(pl)SDLManagerDelegate(im)hmiLevel:didChangeToLevel:":{"name":"-hmiLevel:didChangeToLevel:","abstract":"Called when the HMI level state of this application changes on the remote system. This is equivalent to the application’s state changes in iOS such as foreground, background, or closed.
","parent_name":"SDLManagerDelegate"},"Protocols/SDLManagerDelegate.html#/c:objc(pl)SDLManagerDelegate(im)audioStreamingState:didChangeToState:":{"name":"-audioStreamingState:didChangeToState:","abstract":"Called when the audio streaming state of this application changes on the remote system. This refers to when streaming audio is audible to the user.
","parent_name":"SDLManagerDelegate"},"Protocols/SDLManagerDelegate.html#/c:objc(pl)SDLManagerDelegate(im)systemContext:didChangeToContext:":{"name":"-systemContext:didChangeToContext:","abstract":"Called when the system context of this application changes on the remote system. This refers to whether or not a user-initiated interaction is in progress, and if so, what it is.
","parent_name":"SDLManagerDelegate"},"Protocols/SDLLogTarget.html#/c:objc(pl)SDLLogTarget(cm)logger":{"name":"+logger","abstract":"A simple convenience initializer to create the object. This should not start up the logger.
","parent_name":"SDLLogTarget"},"Protocols/SDLLogTarget.html#/c:objc(pl)SDLLogTarget(im)setupLogger":{"name":"-setupLogger","abstract":"A call to setup the logger in whatever manner it needs to do so.
","parent_name":"SDLLogTarget"},"Protocols/SDLLogTarget.html#/c:objc(pl)SDLLogTarget(im)logWithLog:formattedLog:":{"name":"-logWithLog:formattedLog:","abstract":"Log a particular log using the model and the formatted log message to the target.
","parent_name":"SDLLogTarget"},"Protocols/SDLLogTarget.html#/c:objc(pl)SDLLogTarget(im)teardownLogger":{"name":"-teardownLogger","abstract":"Undocumented
","parent_name":"SDLLogTarget"},"Protocols/SDLIAPSessionDelegate.html#/c:objc(pl)SDLIAPSessionDelegate(im)onSessionInitializationCompleteForSession:":{"name":"-onSessionInitializationCompleteForSession:","abstract":"Undocumented
","parent_name":"SDLIAPSessionDelegate"},"Protocols/SDLIAPSessionDelegate.html#/c:objc(pl)SDLIAPSessionDelegate(im)onSessionStreamsEnded:":{"name":"-onSessionStreamsEnded:","abstract":"Undocumented
","parent_name":"SDLIAPSessionDelegate"},"Protocols.html#/c:objc(pl)SDLInt":{"name":"SDLInt","abstract":"A decleration that this NSNumber contains an NSInteger.
"},"Protocols.html#/c:objc(pl)SDLUInt":{"name":"SDLUInt","abstract":"A declaration that this NSNumber contains an NSUInteger.
"},"Protocols.html#/c:objc(pl)SDLBool":{"name":"SDLBool","abstract":"A declaration that this NSNumber contains a BOOL.
"},"Protocols.html#/c:objc(pl)SDLFloat":{"name":"SDLFloat","abstract":"A declaration that this NSNumber contains a float.
"},"Protocols/SDLIAPSessionDelegate.html":{"name":"SDLIAPSessionDelegate","abstract":"Undocumented
"},"Protocols/SDLLogTarget.html":{"name":"SDLLogTarget","abstract":"Undocumented
"},"Protocols/SDLManagerDelegate.html":{"name":"SDLManagerDelegate","abstract":"Undocumented
"},"Protocols/SDLProtocolListener.html":{"name":"SDLProtocolListener","abstract":"Undocumented
"},"Protocols/SDLProxyListener.html":{"name":"SDLProxyListener","abstract":"Undocumented
"},"Protocols/SDLSecurityType.html":{"name":"SDLSecurityType","abstract":"Undocumented
"},"Protocols/SDLTouchManagerDelegate.html":{"name":"SDLTouchManagerDelegate","abstract":"Undocumented
"},"Protocols/SDLTransportDelegate.html":{"name":"SDLTransportDelegate","abstract":"Undocumented
"},"Enums/SDLStreamingEncryptionFlag.html#/c:@E@SDLStreamingEncryptionFlag@SDLStreamingEncryptionFlagNone":{"name":"SDLStreamingEncryptionFlagNone","abstract":"Undocumented
","parent_name":"SDLStreamingEncryptionFlag"},"Enums/SDLStreamingEncryptionFlag.html#/c:@E@SDLStreamingEncryptionFlag@SDLStreamingEncryptionFlagAuthenticateOnly":{"name":"SDLStreamingEncryptionFlagAuthenticateOnly","abstract":"Undocumented
","parent_name":"SDLStreamingEncryptionFlag"},"Enums/SDLStreamingEncryptionFlag.html#/c:@E@SDLStreamingEncryptionFlag@SDLStreamingEncryptionFlagAuthenticateAndEncrypt":{"name":"SDLStreamingEncryptionFlagAuthenticateAndEncrypt","abstract":"Undocumented
","parent_name":"SDLStreamingEncryptionFlag"},"Enums/SDLRPCMessageType.html#/c:@E@SDLRPCMessageType@SDLRPCMessageTypeRequest":{"name":"SDLRPCMessageTypeRequest","abstract":"Undocumented
","parent_name":"SDLRPCMessageType"},"Enums/SDLRPCMessageType.html#/c:@E@SDLRPCMessageType@SDLRPCMessageTypeResponse":{"name":"SDLRPCMessageTypeResponse","abstract":"Undocumented
","parent_name":"SDLRPCMessageType"},"Enums/SDLRPCMessageType.html#/c:@E@SDLRPCMessageType@SDLRPCMessageTypeNotification":{"name":"SDLRPCMessageTypeNotification","abstract":"Undocumented
","parent_name":"SDLRPCMessageType"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoHeartbeat":{"name":"SDLFrameInfoHeartbeat","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoStartService":{"name":"SDLFrameInfoStartService","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoStartServiceACK":{"name":"SDLFrameInfoStartServiceACK","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoStartServiceNACK":{"name":"SDLFrameInfoStartServiceNACK","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoEndService":{"name":"SDLFrameInfoEndService","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoEndServiceACK":{"name":"SDLFrameInfoEndServiceACK","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoEndServiceNACK":{"name":"SDLFrameInfoEndServiceNACK","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoServiceDataAck":{"name":"SDLFrameInfoServiceDataAck","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoHeartbeatACK":{"name":"SDLFrameInfoHeartbeatACK","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoSingleFrame":{"name":"SDLFrameInfoSingleFrame","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoFirstFrame":{"name":"SDLFrameInfoFirstFrame","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLFrameInfo.html#/c:@E@SDLFrameInfo@SDLFrameInfoConsecutiveLastFrame":{"name":"SDLFrameInfoConsecutiveLastFrame","abstract":"Undocumented
","parent_name":"SDLFrameInfo"},"Enums/SDLServiceType.html#/c:@E@SDLServiceType@SDLServiceTypeControl":{"name":"SDLServiceTypeControl","abstract":"Undocumented
","parent_name":"SDLServiceType"},"Enums/SDLServiceType.html#/c:@E@SDLServiceType@SDLServiceTypeRPC":{"name":"SDLServiceTypeRPC","abstract":"Undocumented
","parent_name":"SDLServiceType"},"Enums/SDLServiceType.html#/c:@E@SDLServiceType@SDLServiceTypeAudio":{"name":"SDLServiceTypeAudio","abstract":"Undocumented
","parent_name":"SDLServiceType"},"Enums/SDLServiceType.html#/c:@E@SDLServiceType@SDLServiceTypeVideo":{"name":"SDLServiceTypeVideo","abstract":"Undocumented
","parent_name":"SDLServiceType"},"Enums/SDLServiceType.html#/c:@E@SDLServiceType@SDLServiceTypeBulkData":{"name":"SDLServiceTypeBulkData","abstract":"Undocumented
","parent_name":"SDLServiceType"},"Enums/SDLFrameType.html#/c:@E@SDLFrameType@SDLFrameTypeControl":{"name":"SDLFrameTypeControl","abstract":"Undocumented
","parent_name":"SDLFrameType"},"Enums/SDLFrameType.html#/c:@E@SDLFrameType@SDLFrameTypeSingle":{"name":"SDLFrameTypeSingle","abstract":"Undocumented
","parent_name":"SDLFrameType"},"Enums/SDLFrameType.html#/c:@E@SDLFrameType@SDLFrameTypeFirst":{"name":"SDLFrameTypeFirst","abstract":"Undocumented
","parent_name":"SDLFrameType"},"Enums/SDLFrameType.html#/c:@E@SDLFrameType@SDLFrameTypeConsecutive":{"name":"SDLFrameTypeConsecutive","abstract":"Undocumented
","parent_name":"SDLFrameType"},"Enums/SDLProtocolError.html#/c:@E@SDLProtocolError@SDLProtocolErrorNoSecurityManager":{"name":"SDLProtocolErrorNoSecurityManager","abstract":"Undocumented
","parent_name":"SDLProtocolError"},"Enums/SDLPermissionGroupStatus.html#/c:@E@SDLPermissionGroupStatus@SDLPermissionGroupStatusAllowed":{"name":"SDLPermissionGroupStatusAllowed","abstract":"Every RPC in the group is currently allowed.
","parent_name":"SDLPermissionGroupStatus"},"Enums/SDLPermissionGroupStatus.html#/c:@E@SDLPermissionGroupStatus@SDLPermissionGroupStatusDisallowed":{"name":"SDLPermissionGroupStatusDisallowed","abstract":"Every RPC in the group is currently disallowed.
","parent_name":"SDLPermissionGroupStatus"},"Enums/SDLPermissionGroupStatus.html#/c:@E@SDLPermissionGroupStatus@SDLPermissionGroupStatusMixed":{"name":"SDLPermissionGroupStatusMixed","abstract":"Some RPCs in the group are allowed and some disallowed.
","parent_name":"SDLPermissionGroupStatus"},"Enums/SDLPermissionGroupStatus.html#/c:@E@SDLPermissionGroupStatus@SDLPermissionGroupStatusUnknown":{"name":"SDLPermissionGroupStatusUnknown","abstract":"The current status of the group is unknown.
","parent_name":"SDLPermissionGroupStatus"},"Enums/SDLPermissionGroupType.html#/c:@E@SDLPermissionGroupType@SDLPermissionGroupTypeAllAllowed":{"name":"SDLPermissionGroupTypeAllAllowed","abstract":"Be notified when all of the RPC in the group are allowed, or, when they all stop being allowed in some sense, that is, when they were all allowed, and now they are not.
","parent_name":"SDLPermissionGroupType"},"Enums/SDLPermissionGroupType.html#/c:@E@SDLPermissionGroupType@SDLPermissionGroupTypeAny":{"name":"SDLPermissionGroupTypeAny","abstract":"Be notified when any change in availability occurs among the group.
","parent_name":"SDLPermissionGroupType"},"Enums/SDLLogFormatType.html#/c:@E@SDLLogFormatType@SDLLogFormatTypeSimple":{"name":"SDLLogFormatTypeSimple","abstract":"Undocumented
","parent_name":"SDLLogFormatType"},"Enums/SDLLogFormatType.html#/c:@E@SDLLogFormatType@SDLLogFormatTypeDefault":{"name":"SDLLogFormatTypeDefault","abstract":"Undocumented
","parent_name":"SDLLogFormatType"},"Enums/SDLLogFormatType.html#/c:@E@SDLLogFormatType@SDLLogFormatTypeDetailed":{"name":"SDLLogFormatTypeDetailed","abstract":"Undocumented
","parent_name":"SDLLogFormatType"},"Enums/SDLLogLevel.html#/c:@E@SDLLogLevel@SDLLogLevelDefault":{"name":"SDLLogLevelDefault","abstract":"Undocumented
","parent_name":"SDLLogLevel"},"Enums/SDLLogLevel.html#/c:@E@SDLLogLevel@SDLLogLevelOff":{"name":"SDLLogLevelOff","abstract":"Undocumented
","parent_name":"SDLLogLevel"},"Enums/SDLLogLevel.html#/c:@E@SDLLogLevel@SDLLogLevelError":{"name":"SDLLogLevelError","abstract":"Undocumented
","parent_name":"SDLLogLevel"},"Enums/SDLLogLevel.html#/c:@E@SDLLogLevel@SDLLogLevelWarning":{"name":"SDLLogLevelWarning","abstract":"Undocumented
","parent_name":"SDLLogLevel"},"Enums/SDLLogLevel.html#/c:@E@SDLLogLevel@SDLLogLevelDebug":{"name":"SDLLogLevelDebug","abstract":"Undocumented
","parent_name":"SDLLogLevel"},"Enums/SDLLogLevel.html#/c:@E@SDLLogLevel@SDLLogLevelVerbose":{"name":"SDLLogLevelVerbose","abstract":"Undocumented
","parent_name":"SDLLogLevel"},"Enums/SDLLogFlag.html#/c:@E@SDLLogFlag@SDLLogFlagError":{"name":"SDLLogFlagError","abstract":"Undocumented
","parent_name":"SDLLogFlag"},"Enums/SDLLogFlag.html#/c:@E@SDLLogFlag@SDLLogFlagWarning":{"name":"SDLLogFlagWarning","abstract":"Undocumented
","parent_name":"SDLLogFlag"},"Enums/SDLLogFlag.html#/c:@E@SDLLogFlag@SDLLogFlagDebug":{"name":"SDLLogFlagDebug","abstract":"Undocumented
","parent_name":"SDLLogFlag"},"Enums/SDLLogFlag.html#/c:@E@SDLLogFlag@SDLLogFlagVerbose":{"name":"SDLLogFlagVerbose","abstract":"Undocumented
","parent_name":"SDLLogFlag"},"Enums/SDLLogBytesDirection.html#/c:@E@SDLLogBytesDirection@SDLLogBytesDirectionTransmit":{"name":"SDLLogBytesDirectionTransmit","abstract":"Undocumented
","parent_name":"SDLLogBytesDirection"},"Enums/SDLLogBytesDirection.html#/c:@E@SDLLogBytesDirection@SDLLogBytesDirectionReceive":{"name":"SDLLogBytesDirectionReceive","abstract":"Undocumented
","parent_name":"SDLLogBytesDirection"},"Enums/SDLFileManagerError.html#/c:@E@SDLFileManagerError@SDLFileManagerErrorCannotOverwrite":{"name":"SDLFileManagerErrorCannotOverwrite","abstract":"A file attempted to send, but a file with that name already exists on the remote head unit, and the file was not configured to overwrite.
","parent_name":"SDLFileManagerError"},"Enums/SDLFileManagerError.html#/c:@E@SDLFileManagerError@SDLFileManagerErrorNoKnownFile":{"name":"SDLFileManagerErrorNoKnownFile","abstract":"A file was attempted to be accessed but it does not exist.
","parent_name":"SDLFileManagerError"},"Enums/SDLFileManagerError.html#/c:@E@SDLFileManagerError@SDLFileManagerErrorUnableToStart":{"name":"SDLFileManagerErrorUnableToStart","abstract":"The file manager attempted to start but encountered an error.
","parent_name":"SDLFileManagerError"},"Enums/SDLFileManagerError.html#/c:@E@SDLFileManagerError@SDLFileManagerErrorUnableToUpload":{"name":"SDLFileManagerErrorUnableToUpload","abstract":"The file manager was unable to send this file.
","parent_name":"SDLFileManagerError"},"Enums/SDLFileManagerError.html#/c:@E@SDLFileManagerError@SDLFileManagerErrorFileDoesNotExist":{"name":"SDLFileManagerErrorFileDoesNotExist","abstract":"The file manager could not find the local file.
","parent_name":"SDLFileManagerError"},"Enums/SDLFileManagerError.html#/c:@E@SDLFileManagerError@SDLFileManagerUploadCanceled":{"name":"SDLFileManagerUploadCanceled","abstract":"The file manager could not find the local file.
","parent_name":"SDLFileManagerError"},"Enums/SDLFileManagerError.html#/c:@E@SDLFileManagerError@SDLFileManagerMultipleFileUploadTasksFailed":{"name":"SDLFileManagerMultipleFileUploadTasksFailed","abstract":"The file manager could not find the local file.
","parent_name":"SDLFileManagerError"},"Enums/SDLFileManagerError.html#/c:@E@SDLFileManagerError@SDLFileManagerMultipleFileDeleteTasksFailed":{"name":"SDLFileManagerMultipleFileDeleteTasksFailed","abstract":"The file manager could not find the local file.
","parent_name":"SDLFileManagerError"},"Enums/SDLManagerError.html#/c:@E@SDLManagerError@SDLManagerErrorRPCRequestFailed":{"name":"SDLManagerErrorRPCRequestFailed","abstract":"An RPC request failed to send.
","parent_name":"SDLManagerError"},"Enums/SDLManagerError.html#/c:@E@SDLManagerError@SDLManagerErrorNotConnected":{"name":"SDLManagerErrorNotConnected","abstract":"Some action was attempted that requires a connection to the remote head unit.
","parent_name":"SDLManagerError"},"Enums/SDLManagerError.html#/c:@E@SDLManagerError@SDLManagerErrorNotReady":{"name":"SDLManagerErrorNotReady","abstract":"Some action was attempted before the ready state was reached.
","parent_name":"SDLManagerError"},"Enums/SDLManagerError.html#/c:@E@SDLManagerError@SDLManagerErrorUnknownRemoteError":{"name":"SDLManagerErrorUnknownRemoteError","abstract":"The remote system encountered an unknown error.
","parent_name":"SDLManagerError"},"Enums/SDLManagerError.html#/c:@E@SDLManagerError@SDLManagerErrorManagersFailedToStart":{"name":"SDLManagerErrorManagersFailedToStart","abstract":"One or more of the sub-managers failed to start.
","parent_name":"SDLManagerError"},"Enums/SDLManagerError.html#/c:@E@SDLManagerError@SDLManagerErrorRegistrationFailed":{"name":"SDLManagerErrorRegistrationFailed","abstract":"Registering with the remote system failed.
","parent_name":"SDLManagerError"},"Enums/SDLManagerError.html#/c:@E@SDLManagerError@SDLManagerErrorRegistrationSuccessWithWarning":{"name":"SDLManagerErrorRegistrationSuccessWithWarning","abstract":"Registering with the remote system was successful, but had a warning.
","parent_name":"SDLManagerError"},"Enums/SDLArtworkImageFormat.html#/c:@E@SDLArtworkImageFormat@SDLArtworkImageFormatPNG":{"name":"SDLArtworkImageFormatPNG","abstract":"Undocumented
","parent_name":"SDLArtworkImageFormat"},"Enums/SDLArtworkImageFormat.html#/c:@E@SDLArtworkImageFormat@SDLArtworkImageFormatJPG":{"name":"SDLArtworkImageFormatJPG","abstract":"Undocumented
","parent_name":"SDLArtworkImageFormat"},"Enums/SDLArtworkImageFormat.html":{"name":"SDLArtworkImageFormat","abstract":"Undocumented
"},"Enums/SDLManagerError.html":{"name":"SDLManagerError","abstract":"Errors associated with the SDLManager class.
"},"Enums/SDLFileManagerError.html":{"name":"SDLFileManagerError","abstract":"Errors associated with the SDLFileManager class.
"},"Enums/SDLLogBytesDirection.html":{"name":"SDLLogBytesDirection","abstract":"Undocumented
"},"Enums/SDLLogFlag.html":{"name":"SDLLogFlag","abstract":"Flags used for SDLLogLevel to provide correct enum values. This is purely for internal use.
"},"Enums/SDLLogLevel.html":{"name":"SDLLogLevel","abstract":"An enum describing a level of logging.
"},"Enums/SDLLogFormatType.html":{"name":"SDLLogFormatType","abstract":"The output format of logs; how they will appear when printed out into a string.
"},"Enums/SDLPermissionGroupType.html":{"name":"SDLPermissionGroupType","abstract":"A permission group type which will be used to tell the system what type of changes you want to be notified about for the group.
"},"Enums/SDLPermissionGroupStatus.html":{"name":"SDLPermissionGroupStatus","abstract":"The status of the group of RPCs permissions.
"},"Enums/SDLProtocolError.html":{"name":"SDLProtocolError","abstract":"Undocumented
"},"Enums/SDLFrameType.html":{"name":"SDLFrameType","abstract":"Undocumented
"},"Enums/SDLServiceType.html":{"name":"SDLServiceType","abstract":"Undocumented
"},"Enums/SDLFrameInfo.html":{"name":"SDLFrameInfo","abstract":"Undocumented
"},"Enums/SDLRPCMessageType.html":{"name":"SDLRPCMessageType","abstract":"Undocumented
"},"Enums/SDLStreamingEncryptionFlag.html":{"name":"SDLStreamingEncryptionFlag","abstract":"Undocumented
"},"Constants.html#/c:@SDLAmbientLightStatusNight":{"name":"SDLAmbientLightStatusNight","abstract":"Undocumented
"},"Constants.html#/c:@SDLAmbientLightStatusTwilight1":{"name":"SDLAmbientLightStatusTwilight1","abstract":"Undocumented
"},"Constants.html#/c:@SDLAmbientLightStatusTwilight2":{"name":"SDLAmbientLightStatusTwilight2","abstract":"Undocumented
"},"Constants.html#/c:@SDLAmbientLightStatusTwilight3":{"name":"SDLAmbientLightStatusTwilight3","abstract":"Undocumented
"},"Constants.html#/c:@SDLAmbientLightStatusTwilight4":{"name":"SDLAmbientLightStatusTwilight4","abstract":"Undocumented
"},"Constants.html#/c:@SDLAmbientLightStatusDay":{"name":"SDLAmbientLightStatusDay","abstract":"Undocumented
"},"Constants.html#/c:@SDLAmbientLightStatusUnknown":{"name":"SDLAmbientLightStatusUnknown","abstract":"Undocumented
"},"Constants.html#/c:@SDLAmbientLightStatusInvalid":{"name":"SDLAmbientLightStatusInvalid","abstract":"Undocumented
"},"Constants.html#/c:@SDLAppHMITypeDefault":{"name":"SDLAppHMITypeDefault","abstract":"@abstract The App will have default rights.
"},"Constants.html#/c:@SDLAppHMITypeCommunication":{"name":"SDLAppHMITypeCommunication","abstract":"@abstract Communication type of App
"},"Constants.html#/c:@SDLAppHMITypeMedia":{"name":"SDLAppHMITypeMedia","abstract":"@abstract App dealing with Media
"},"Constants.html#/c:@SDLAppHMITypeMessaging":{"name":"SDLAppHMITypeMessaging","abstract":"@abstract Messaging App
"},"Constants.html#/c:@SDLAppHMITypeNavigation":{"name":"SDLAppHMITypeNavigation","abstract":"@abstract Navigation App
"},"Constants.html#/c:@SDLAppHMITypeInformation":{"name":"SDLAppHMITypeInformation","abstract":"@abstract Information App
"},"Constants.html#/c:@SDLAppHMITypeSocial":{"name":"SDLAppHMITypeSocial","abstract":"@abstract App dealing with social media
"},"Constants.html#/c:@SDLAppHMITypeProjection":{"name":"SDLAppHMITypeProjection","abstract":"@abstract App dealing with Mobile Projection applications
"},"Constants.html#/c:@SDLAppHMITypeBackgroundProcess":{"name":"SDLAppHMITypeBackgroundProcess","abstract":"Undocumented
"},"Constants.html#/c:@SDLAppHMITypeTesting":{"name":"SDLAppHMITypeTesting","abstract":"@abstract App only for Testing purposes
"},"Constants.html#/c:@SDLAppHMITypeSystem":{"name":"SDLAppHMITypeSystem","abstract":"@abstract System App
"},"Constants.html#/c:@SDLAppHMITypeRemoteControl":{"name":"SDLAppHMITypeRemoteControl","abstract":"@abstract Remote control
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonIgnitionOff":{"name":"SDLAppInterfaceUnregisteredReasonIgnitionOff","abstract":"@abstract Vehicle ignition turned off.
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonBluetoothOff":{"name":"SDLAppInterfaceUnregisteredReasonBluetoothOff","abstract":"@abstract Bluetooth was turned off, causing termination of a necessary Bluetooth connection.
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonUSBDisconnected":{"name":"SDLAppInterfaceUnregisteredReasonUSBDisconnected","abstract":"@abstract USB was disconnected, causing termination of a necessary iAP connection.
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonRequestWhileInNoneHMILevel":{"name":"SDLAppInterfaceUnregisteredReasonRequestWhileInNoneHMILevel","abstract":"@abstract Application attempted SmartDeviceLink RPC request while HMILevel = NONE. App must have HMILevel other than NONE to issue RPC requests or get notifications or RPC responses.
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonTooManyRequests":{"name":"SDLAppInterfaceUnregisteredReasonTooManyRequests","abstract":"@abstract Either too many – or too many per unit of time – requests were made by the application.
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonDriverDistractionViolation":{"name":"SDLAppInterfaceUnregisteredReasonDriverDistractionViolation","abstract":"@abstract The application has issued requests which cause driver distraction rules to be violated.
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonLanguageChange":{"name":"SDLAppInterfaceUnregisteredReasonLanguageChange","abstract":"@abstract The user performed a language change on the SDL platform, causing the application to need to be reregistered for the new language.
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonMasterReset":{"name":"SDLAppInterfaceUnregisteredReasonMasterReset","abstract":"@abstract The user performed a MASTER RESET on the SDL platform, causing removal of a necessary Bluetooth pairing.
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonFactoryDefaults":{"name":"SDLAppInterfaceUnregisteredReasonFactoryDefaults","abstract":"@abstract The user restored settings to FACTORY DEFAULTS on the SDL platform.
"},"Constants.html#/c:@SDLAppInterfaceUnregisteredReasonAppUnauthorized":{"name":"SDLAppInterfaceUnregisteredReasonAppUnauthorized","abstract":"@abstract The app is not being authorized to be connected to SDL.
"},"Constants.html#/c:@SDLAudioStreamingStateAudible":{"name":"SDLAudioStreamingStateAudible","abstract":"@abstract Currently streaming audio, if any, is audible to user.
"},"Constants.html#/c:@SDLAudioStreamingStateAttenuated":{"name":"SDLAudioStreamingStateAttenuated","abstract":"@abstract Some kind of audio mixing is taking place. Currently streaming audio, if any, is audible to the user at a lowered volume.
"},"Constants.html#/c:@SDLAudioStreamingStateNotAudible":{"name":"SDLAudioStreamingStateNotAudible","abstract":"@abstract Currently streaming audio, if any, is not audible to user. made via VR session.
"},"Constants.html#/c:@SDLAudioTypePCM":{"name":"SDLAudioTypePCM","abstract":"@abstract PCM raw audio
"},"Constants.html#/c:@SDLBitsPerSample8Bit":{"name":"SDLBitsPerSample8Bit","abstract":"@abstract 8 bits per sample
"},"Constants.html#/c:@SDLBitsPerSample16Bit":{"name":"SDLBitsPerSample16Bit","abstract":"@abstract 16 bits per sample
"},"Constants.html#/c:@SDLButtonEventModeButtonUp":{"name":"SDLButtonEventModeButtonUp","abstract":"@abstract The button was released
"},"Constants.html#/c:@SDLButtonEventModeButtonDown":{"name":"SDLButtonEventModeButtonDown","abstract":"@abstract The button was depressed
"},"Constants.html#/c:@SDLButtonNameOk":{"name":"SDLButtonNameOk","abstract":"@abstract Represents the button usually labeled OK
. A typical use of this button is for the user to press it to make a selection.
@abstract Represents the seek-left button. A typical use of this button is for the user to scroll to the left through menu choices one menu item per press.
"},"Constants.html#/c:@SDLButtonNameSeekRight":{"name":"SDLButtonNameSeekRight","abstract":"@abstract Represents the seek-right button. A typical use of this button is for the user to scroll to the right through menu choices one menu item per press.
"},"Constants.html#/c:@SDLButtonNameTuneUp":{"name":"SDLButtonNameTuneUp","abstract":"@abstract Represents a turn of the tuner knob in the clockwise direction one tick.
"},"Constants.html#/c:@SDLButtonNameTuneDown":{"name":"SDLButtonNameTuneDown","abstract":"@abstract Represents a turn of the tuner knob in the counter-clockwise direction one tick.
"},"Constants.html#/c:@SDLButtonNamePreset0":{"name":"SDLButtonNamePreset0","abstract":"@abstract Represents the preset 0 button.
"},"Constants.html#/c:@SDLButtonNamePreset1":{"name":"SDLButtonNamePreset1","abstract":"@abstract Represents the preset 1 button.
"},"Constants.html#/c:@SDLButtonNamePreset2":{"name":"SDLButtonNamePreset2","abstract":"@abstract Represents the preset 2 button.
"},"Constants.html#/c:@SDLButtonNamePreset3":{"name":"SDLButtonNamePreset3","abstract":"@abstract Represents the preset 3 button.
"},"Constants.html#/c:@SDLButtonNamePreset4":{"name":"SDLButtonNamePreset4","abstract":"@abstract Represents the preset 4 button.
"},"Constants.html#/c:@SDLButtonNamePreset5":{"name":"SDLButtonNamePreset5","abstract":"@abstract Represents the preset 5 button.
"},"Constants.html#/c:@SDLButtonNamePreset6":{"name":"SDLButtonNamePreset6","abstract":"@abstract Represents the preset 6 button.
"},"Constants.html#/c:@SDLButtonNamePreset7":{"name":"SDLButtonNamePreset7","abstract":"@abstract Represents the preset 7 button.
"},"Constants.html#/c:@SDLButtonNamePreset8":{"name":"SDLButtonNamePreset8","abstract":"@abstract Represents the preset 8 button.
"},"Constants.html#/c:@SDLButtonNamePreset9":{"name":"SDLButtonNamePreset9","abstract":"@abstract Represents the preset 9 button.
"},"Constants.html#/c:@SDLButtonNameCustomButton":{"name":"SDLButtonNameCustomButton","abstract":"@abstract Represents the Custom button.
"},"Constants.html#/c:@SDLButtonNameSearch":{"name":"SDLButtonNameSearch","abstract":"@abstract Represents the SEARCH button.
"},"Constants.html#/c:@SDLButtonNameACMax":{"name":"SDLButtonNameACMax","abstract":"@abstract Represents AC max button *
"},"Constants.html#/c:@SDLButtonNameAC":{"name":"SDLButtonNameAC","abstract":"@abstract Represents AC button *
"},"Constants.html#/c:@SDLButtonNameRecirculate":{"name":"SDLButtonNameRecirculate","abstract":"@abstract Represents a Recirculate button
"},"Constants.html#/c:@SDLButtonNameFanUp":{"name":"SDLButtonNameFanUp","abstract":"@abstract Represents a Fan up button
"},"Constants.html#/c:@SDLButtonNameFanDown":{"name":"SDLButtonNameFanDown","abstract":"@abstract Represents a fan down button
"},"Constants.html#/c:@SDLButtonNameTempUp":{"name":"SDLButtonNameTempUp","abstract":"@abstract Represents a temperature up button
"},"Constants.html#/c:@SDLButtonNameTempDown":{"name":"SDLButtonNameTempDown","abstract":"@abstract Represents a temperature down button
"},"Constants.html#/c:@SDLButtonNameDefrostMax":{"name":"SDLButtonNameDefrostMax","abstract":"@abstract Represents a Defrost max button.
"},"Constants.html#/c:@SDLButtonNameDefrost":{"name":"SDLButtonNameDefrost","abstract":"@abstract Represents a Defrost button.
"},"Constants.html#/c:@SDLButtonNameDefrostRear":{"name":"SDLButtonNameDefrostRear","abstract":"@abstract Represents a Defrost rear button.
"},"Constants.html#/c:@SDLButtonNameUpperVent":{"name":"SDLButtonNameUpperVent","abstract":"@abstract Represents a Upper Vent button.
"},"Constants.html#/c:@SDLButtonNameLowerVent":{"name":"SDLButtonNameLowerVent","abstract":"@abstract Represents a Lower vent button.
"},"Constants.html#/c:@SDLButtonNameVolumeUp":{"name":"SDLButtonNameVolumeUp","abstract":"@abstract Represents a volume up button.
"},"Constants.html#/c:@SDLButtonNameVolumeDown":{"name":"SDLButtonNameVolumeDown","abstract":"@abstract Represents a volume down button.
"},"Constants.html#/c:@SDLButtonNameEject":{"name":"SDLButtonNameEject","abstract":"@abstract Represents a Eject Button.
"},"Constants.html#/c:@SDLButtonNameSource":{"name":"SDLButtonNameSource","abstract":"@abstract Represents a Source button.
"},"Constants.html#/c:@SDLButtonNameShuffle":{"name":"SDLButtonNameShuffle","abstract":"@abstract Represents a SHUFFLE button.
"},"Constants.html#/c:@SDLButtonNameRepeat":{"name":"SDLButtonNameRepeat","abstract":"@abstract Represents a Repeat button.
"},"Constants.html#/c:@SDLButtonPressModeLong":{"name":"SDLButtonPressModeLong","abstract":"@abstract A button was released, after it was pressed for a long time. Actual timing is defined by the head unit and may vary.
"},"Constants.html#/c:@SDLButtonPressModeShort":{"name":"SDLButtonPressModeShort","abstract":"@abstract A button was released, after it was pressed for a short time. Actual timing is defined by the head unit and may vary.
"},"Constants.html#/c:@SDLCarModeStatusNormal":{"name":"SDLCarModeStatusNormal","abstract":"Provides carmode NORMAL to each module.
"},"Constants.html#/c:@SDLCarModeStatusFactory":{"name":"SDLCarModeStatusFactory","abstract":"Provides carmode FACTORY to each module.
"},"Constants.html#/c:@SDLCarModeStatusTransport":{"name":"SDLCarModeStatusTransport","abstract":"Provides carmode TRANSPORT to each module.
"},"Constants.html#/c:@SDLCarModeStatusCrash":{"name":"SDLCarModeStatusCrash","abstract":"Provides carmode CRASH to each module.
"},"Constants.html#/c:@SDLCharacterSetType2":{"name":"SDLCharacterSetType2","abstract":"Undocumented
"},"Constants.html#/c:@SDLCharacterSetType5":{"name":"SDLCharacterSetType5","abstract":"Undocumented
"},"Constants.html#/c:@SDLCharacterSetCID1":{"name":"SDLCharacterSetCID1","abstract":"Undocumented
"},"Constants.html#/c:@SDLCharacterSetCID2":{"name":"SDLCharacterSetCID2","abstract":"Undocumented
"},"Constants.html#/c:@SDLCompassDirectionNorth":{"name":"SDLCompassDirectionNorth","abstract":"@abstract Direction North
"},"Constants.html#/c:@SDLCompassDirectionNorthwest":{"name":"SDLCompassDirectionNorthwest","abstract":"@abstract Direction Northwest
"},"Constants.html#/c:@SDLCompassDirectionWest":{"name":"SDLCompassDirectionWest","abstract":"@abstract Direction West
"},"Constants.html#/c:@SDLCompassDirectionSouthwest":{"name":"SDLCompassDirectionSouthwest","abstract":"@abstract Direction Southwest
"},"Constants.html#/c:@SDLCompassDirectionSouth":{"name":"SDLCompassDirectionSouth","abstract":"@abstract Direction South
"},"Constants.html#/c:@SDLCompassDirectionSoutheast":{"name":"SDLCompassDirectionSoutheast","abstract":"@abstract Direction Southeast
"},"Constants.html#/c:@SDLCompassDirectionEast":{"name":"SDLCompassDirectionEast","abstract":"@abstract Direction East
"},"Constants.html#/c:@SDLCompassDirectionNortheast":{"name":"SDLCompassDirectionNortheast","abstract":"@abstract Direction Northeast
"},"Constants.html#/c:@SDLComponentVolumeStatusUnknown":{"name":"SDLComponentVolumeStatusUnknown","abstract":"@abstract Unknown SDLComponentVolumeStatus
"},"Constants.html#/c:@SDLComponentVolumeStatusNormal":{"name":"SDLComponentVolumeStatusNormal","abstract":"@abstract Normal SDLComponentVolumeStatus
"},"Constants.html#/c:@SDLComponentVolumeStatusLow":{"name":"SDLComponentVolumeStatusLow","abstract":"@abstract Low SDLComponentVolumeStatus
"},"Constants.html#/c:@SDLComponentVolumeStatusFault":{"name":"SDLComponentVolumeStatusFault","abstract":"@abstract Fault SDLComponentVolumeStatus
"},"Constants.html#/c:@SDLComponentVolumeStatusAlert":{"name":"SDLComponentVolumeStatusAlert","abstract":"@abstract Alert SDLComponentVolumeStatus
"},"Constants.html#/c:@SDLComponentVolumeStatusNotSupported":{"name":"SDLComponentVolumeStatusNotSupported","abstract":"@abstract Not supported SDLComponentVolumeStatus
"},"Constants.html#/c:@SDLDefrostZoneFront":{"name":"SDLDefrostZoneFront","abstract":"@abstract A SDLDefrostZone with the value of FRONT
"},"Constants.html#/c:@SDLDefrostZoneRear":{"name":"SDLDefrostZoneRear","abstract":"@abstract A SDLDefrostZone with the value of REAR
"},"Constants.html#/c:@SDLDefrostZoneAll":{"name":"SDLDefrostZoneAll","abstract":"@abstract A SDLDefrostZone with the value of All
"},"Constants.html#/c:@SDLDefrostZoneNone":{"name":"SDLDefrostZoneNone","abstract":"@abstract A SDLDefrostZone with the value of None
"},"Constants.html#/c:@SDLDeliveryModePrompt":{"name":"SDLDeliveryModePrompt","abstract":"@abstract User is prompted on HMI
"},"Constants.html#/c:@SDLDeliveryModeDestination":{"name":"SDLDeliveryModeDestination","abstract":"@abstract Set the location as destination without prompting the user
"},"Constants.html#/c:@SDLDeliveryModeQueue":{"name":"SDLDeliveryModeQueue","abstract":"@abstract Adds the current location to navigation queue
"},"Constants.html#/c:@SDLDeviceLevelStatusZeroBars":{"name":"SDLDeviceLevelStatusZeroBars","abstract":"@abstract Device battery level is zero bars
"},"Constants.html#/c:@SDLDeviceLevelStatusOneBar":{"name":"SDLDeviceLevelStatusOneBar","abstract":"@abstract Device battery level is one bar
"},"Constants.html#/c:@SDLDeviceLevelStatusTwoBars":{"name":"SDLDeviceLevelStatusTwoBars","abstract":"@abstract Device battery level is two bars
"},"Constants.html#/c:@SDLDeviceLevelStatusThreeBars":{"name":"SDLDeviceLevelStatusThreeBars","abstract":"@abstract Device battery level is three bars
"},"Constants.html#/c:@SDLDeviceLevelStatusFourBars":{"name":"SDLDeviceLevelStatusFourBars","abstract":"@abstract Device battery level is four bars
"},"Constants.html#/c:@SDLDeviceLevelStatusNotProvided":{"name":"SDLDeviceLevelStatusNotProvided","abstract":"@abstract Device battery level is unknown
"},"Constants.html#/c:@SDLDimensionNoFix":{"name":"SDLDimensionNoFix","abstract":"@abstract No GPS at all
"},"Constants.html#/c:@SDLDimension2D":{"name":"SDLDimension2D","abstract":"@abstract Longitude and latitude of the GPS
"},"Constants.html#/c:@SDLDimension3D":{"name":"SDLDimension3D","abstract":"@abstract Longitude and latitude and altitude of the GPS
"},"Constants.html#/c:@SDLDisplayTypeCID":{"name":"SDLDisplayTypeCID","abstract":"@abstract This display type provides a 2-line x 20 character dot matrix
display.
Undocumented
"},"Constants.html#/c:@SDLDisplayTypeType5":{"name":"SDLDisplayTypeType5","abstract":"Undocumented
"},"Constants.html#/c:@SDLDisplayTypeNGN":{"name":"SDLDisplayTypeNGN","abstract":"@abstract This display type provides an 8 inch touchscreen display.
"},"Constants.html#/c:@SDLDisplayTypeGen28DMA":{"name":"SDLDisplayTypeGen28DMA","abstract":"Undocumented
"},"Constants.html#/c:@SDLDisplayTypeGen26DMA":{"name":"SDLDisplayTypeGen26DMA","abstract":"Undocumented
"},"Constants.html#/c:@SDLDisplayTypeMFD3":{"name":"SDLDisplayTypeMFD3","abstract":"Undocumented
"},"Constants.html#/c:@SDLDisplayTypeMFD4":{"name":"SDLDisplayTypeMFD4","abstract":"Undocumented
"},"Constants.html#/c:@SDLDisplayTypeMFD5":{"name":"SDLDisplayTypeMFD5","abstract":"Undocumented
"},"Constants.html#/c:@SDLDisplayTypeGen38Inch":{"name":"SDLDisplayTypeGen38Inch","abstract":"Undocumented
"},"Constants.html#/c:@SDLDisplayTypeGeneric":{"name":"SDLDisplayTypeGeneric","abstract":"Undocumented
"},"Constants.html#/c:@SDLDriverDistractionStateOn":{"name":"SDLDriverDistractionStateOn","abstract":"@abstract Driver distraction rules are in effect.
"},"Constants.html#/c:@SDLDriverDistractionStateOff":{"name":"SDLDriverDistractionStateOff","abstract":"@abstract Driver distraction rules are NOT in effect.
"},"Constants.html#/c:@SDLECallConfirmationStatusNormal":{"name":"SDLECallConfirmationStatusNormal","abstract":"No E-Call signal triggered.
"},"Constants.html#/c:@SDLECallConfirmationStatusInProgress":{"name":"SDLECallConfirmationStatusInProgress","abstract":"An E-Call is being in progress.
"},"Constants.html#/c:@SDLECallConfirmationStatusCancelled":{"name":"SDLECallConfirmationStatusCancelled","abstract":"CALL_CANCELLED An E-Call was cancelled by the user.
"},"Constants.html#/c:@SDLECallConfirmationStatusCompleted":{"name":"SDLECallConfirmationStatusCompleted","abstract":"The E-Call sequence is completed.
"},"Constants.html#/c:@SDLECallConfirmationStatusUnsuccessful":{"name":"SDLECallConfirmationStatusUnsuccessful","abstract":"An E-Call could not be connected.
"},"Constants.html#/c:@SDLECallConfirmationStatusConfiguredOff":{"name":"SDLECallConfirmationStatusConfiguredOff","abstract":"E-Call is not configured on this vehicle.
"},"Constants.html#/c:@SDLECallConfirmationStatusCompleteDTMFTimeout":{"name":"SDLECallConfirmationStatusCompleteDTMFTimeout","abstract":"E-Call is considered to be complete without Emergency Operator contact.
"},"Constants.html#/c:@SDLEmergencyEventTypeNoEvent":{"name":"SDLEmergencyEventTypeNoEvent","abstract":"No emergency event has happened.
"},"Constants.html#/c:@SDLEmergencyEventTypeFrontal":{"name":"SDLEmergencyEventTypeFrontal","abstract":"Frontal collision has happened.
"},"Constants.html#/c:@SDLEmergencyEventTypeSide":{"name":"SDLEmergencyEventTypeSide","abstract":"Side collision has happened.
"},"Constants.html#/c:@SDLEmergencyEventTypeRear":{"name":"SDLEmergencyEventTypeRear","abstract":"Rear collision has happened.
"},"Constants.html#/c:@SDLEmergencyEventTypeRollover":{"name":"SDLEmergencyEventTypeRollover","abstract":"A rollover event has happened.
"},"Constants.html#/c:@SDLEmergencyEventTypeNotSupported":{"name":"SDLEmergencyEventTypeNotSupported","abstract":"The signal is not supported
"},"Constants.html#/c:@SDLEmergencyEventTypeFault":{"name":"SDLEmergencyEventTypeFault","abstract":"Emergency status cannot be determined
"},"Constants.html#/c:@SDLFileTypeBMP":{"name":"SDLFileTypeBMP","abstract":"@abstract file type: Bitmap (BMP)
"},"Constants.html#/c:@SDLFileTypeJPEG":{"name":"SDLFileTypeJPEG","abstract":"@abstract file type: JPEG
"},"Constants.html#/c:@SDLFileTypePNG":{"name":"SDLFileTypePNG","abstract":"@abstract file type: PNG
"},"Constants.html#/c:@SDLFileTypeWAV":{"name":"SDLFileTypeWAV","abstract":"@abstract file type: WAVE (WAV)
"},"Constants.html#/c:@SDLFileTypeMP3":{"name":"SDLFileTypeMP3","abstract":"@abstract file type: MP3
"},"Constants.html#/c:@SDLFileTypeAAC":{"name":"SDLFileTypeAAC","abstract":"@abstract file type: AAC
"},"Constants.html#/c:@SDLFileTypeBinary":{"name":"SDLFileTypeBinary","abstract":"@abstract file type: BINARY
"},"Constants.html#/c:@SDLFileTypeJSON":{"name":"SDLFileTypeJSON","abstract":"@abstract file type: JSON
"},"Constants.html#/c:@SDLFuelCutoffStatusTerminateFuel":{"name":"SDLFuelCutoffStatusTerminateFuel","abstract":"@abstract Fuel is cut off
"},"Constants.html#/c:@SDLFuelCutoffStatusNormalOperation":{"name":"SDLFuelCutoffStatusNormalOperation","abstract":"@abstract Fuel is not cut off
"},"Constants.html#/c:@SDLFuelCutoffStatusFault":{"name":"SDLFuelCutoffStatusFault","abstract":"@abstract Status of the fuel pump cannot be determined
"},"Constants.html#/c:@SDLGlobalPropertyHelpPrompt":{"name":"SDLGlobalPropertyHelpPrompt","abstract":"@abstract The help prompt to be spoken if the user needs assistance during a user-initiated interaction.
"},"Constants.html#/c:@SDLGlobalPropertyTimeoutPrompt":{"name":"SDLGlobalPropertyTimeoutPrompt","abstract":"@abstract The prompt to be spoken if the user-initiated interaction times out waiting for the user’s verbal input.
"},"Constants.html#/c:@SDLGlobalPropertyVoiceRecognitionHelpTitle":{"name":"SDLGlobalPropertyVoiceRecognitionHelpTitle","abstract":"Undocumented
"},"Constants.html#/c:@SDLGlobalPropertyVoiceRecognitionHelpItems":{"name":"SDLGlobalPropertyVoiceRecognitionHelpItems","abstract":"Undocumented
"},"Constants.html#/c:@SDLGlobalPropertyMenuName":{"name":"SDLGlobalPropertyMenuName","abstract":"Undocumented
"},"Constants.html#/c:@SDLGlobalPropertyMenuIcon":{"name":"SDLGlobalPropertyMenuIcon","abstract":"Undocumented
"},"Constants.html#/c:@SDLGlobalPropertyKeyboard":{"name":"SDLGlobalPropertyKeyboard","abstract":"Undocumented
"},"Constants.html#/c:@SDLHMILevelFull":{"name":"SDLHMILevelFull","abstract":"The application has full use of the SDL HMI. The app may output via TTS, display, or streaming audio and may gather input via VR, Menu, and button presses
"},"Constants.html#/c:@SDLHMILevelLimited":{"name":"SDLHMILevelLimited","abstract":"This HMI Level is only defined for a media application using an HMI with an 8 inch touchscreen (Nav) system. The application’s Show text is displayed and it receives button presses from media-oriented buttons (SEEKRIGHT, SEEKLEFT, TUNEUP, TUNEDOWN, PRESET_0-9)
"},"Constants.html#/c:@SDLHMILevelBackground":{"name":"SDLHMILevelBackground","abstract":"App cannot interact with user via TTS, VR, Display or Button Presses. App can perform the following operations:
"},"Constants.html#/c:@SDLHMILevelNone":{"name":"SDLHMILevelNone","abstract":"Application has been discovered by SDL, but it cannot send any requests or receive any notifications
"},"Constants.html#/c:@SDLHMIZoneCapabilitiesFront":{"name":"SDLHMIZoneCapabilitiesFront","abstract":"@abstract Indicates HMI available for front seat passengers.
"},"Constants.html#/c:@SDLHMIZoneCapabilitiesBack":{"name":"SDLHMIZoneCapabilitiesBack","abstract":"@abstract Indicates HMI available for rear seat passengers.
"},"Constants.html#/c:@SDLIgnitionStableStatusNotStable":{"name":"SDLIgnitionStableStatusNotStable","abstract":"@abstract The current ignition switch status is considered not to be stable.
"},"Constants.html#/c:@SDLIgnitionStableStatusStable":{"name":"SDLIgnitionStableStatusStable","abstract":"@abstract The current ignition switch status is considered to be stable.
"},"Constants.html#/c:@SDLIgnitionStableStatusMissingFromTransmitter":{"name":"SDLIgnitionStableStatusMissingFromTransmitter","abstract":"Undocumented
"},"Constants.html#/c:@SDLIgnitionStatusUnknown":{"name":"SDLIgnitionStatusUnknown","abstract":"@abstract Ignition status currently unknown
"},"Constants.html#/c:@SDLIgnitionStatusOff":{"name":"SDLIgnitionStatusOff","abstract":"@abstract Ignition is off
"},"Constants.html#/c:@SDLIgnitionStatusAccessory":{"name":"SDLIgnitionStatusAccessory","abstract":"@abstract Ignition is in mode accessory
"},"Constants.html#/c:@SDLIgnitionStatusRun":{"name":"SDLIgnitionStatusRun","abstract":"@abstract Ignition is in mode run
"},"Constants.html#/c:@SDLIgnitionStatusStart":{"name":"SDLIgnitionStatusStart","abstract":"@abstract Ignition is in mode start
"},"Constants.html#/c:@SDLIgnitionStatusInvalid":{"name":"SDLIgnitionStatusInvalid","abstract":"@abstract Signal is invalid
"},"Constants.html#/c:@SDLImageFieldNameSoftButtonImage":{"name":"SDLImageFieldNameSoftButtonImage","abstract":"The image field for SoftButton"},"Constants.html#/c:@SDLImageFieldNameChoiceImage":{"name":"SDLImageFieldNameChoiceImage","abstract":"
The first image field for Choice."},"Constants.html#/c:@SDLImageFieldNameChoiceSecondaryImage":{"name":"SDLImageFieldNameChoiceSecondaryImage","abstract":"
The scondary image field for Choice."},"Constants.html#/c:@SDLImageFieldNameVoiceRecognitionHelpItem":{"name":"SDLImageFieldNameVoiceRecognitionHelpItem","abstract":"
The image field for vrHelpItem."},"Constants.html#/c:@SDLImageFieldNameTurnIcon":{"name":"SDLImageFieldNameTurnIcon","abstract":"
The image field for Turn."},"Constants.html#/c:@SDLImageFieldNameMenuIcon":{"name":"SDLImageFieldNameMenuIcon","abstract":"
The image field for the menu icon in SetGlobalProperties."},"Constants.html#/c:@SDLImageFieldNameCommandIcon":{"name":"SDLImageFieldNameCommandIcon","abstract":"
The image filed for AddCommand."},"Constants.html#/c:@SDLImageFieldNameAppIcon":{"name":"SDLImageFieldNameAppIcon","abstract":"
The image field for the app icon (set by setAppIcon)."},"Constants.html#/c:@SDLImageFieldNameGraphic":{"name":"SDLImageFieldNameGraphic","abstract":"
The image filed for Show."},"Constants.html#/c:@SDLImageFieldNameShowConstantTBTIcon":{"name":"SDLImageFieldNameShowConstantTBTIcon","abstract":"
The primary image field for ShowConstant TBT."},"Constants.html#/c:@SDLImageFieldNameShowConstantTBTNextTurnIcon":{"name":"SDLImageFieldNameShowConstantTBTNextTurnIcon","abstract":"
The secondary image field for ShowConstant TBT."},"Constants.html#/c:@SDLImageFieldNameLocationImage":{"name":"SDLImageFieldNameLocationImage","abstract":"
The optional image of a destination / location"},"Constants.html#/c:@SDLImageTypeStatic":{"name":"SDLImageTypeStatic","abstract":"
@abstract Just the static hex icon value to be used
"},"Constants.html#/c:@SDLImageTypeDynamic":{"name":"SDLImageTypeDynamic","abstract":"@abstract Binary image file to be used (identifier to be sent by SDLPutFile)
"},"Constants.html#/c:@SDLInteractionModeManualOnly":{"name":"SDLInteractionModeManualOnly","abstract":"@abstract Interaction Mode : Manual Only"},"Constants.html#/c:@SDLInteractionModeVoiceRecognitionOnly":{"name":"SDLInteractionModeVoiceRecognitionOnly","abstract":"
@abstract Interaction Mode : VR Only"},"Constants.html#/c:@SDLInteractionModeBoth":{"name":"SDLInteractionModeBoth","abstract":"
@abstract Interaction Mode : Manual & VR"},"Constants.html#/c:@SDLKeyboardEventKeypress":{"name":"SDLKeyboardEventKeypress","abstract":"
The use has pressed the keyboard key (applies to both SINGLE_KEYPRESS and RESEND_CURRENT_ENTRY modes)."},"Constants.html#/c:@SDLKeyboardEventSubmitted":{"name":"SDLKeyboardEventSubmitted","abstract":"
The User has finished entering text from the keyboard and submitted the entry."},"Constants.html#/c:@SDLKeyboardEventCancelled":{"name":"SDLKeyboardEventCancelled","abstract":"
The User has pressed the HMI-defined Cancel
button."},"Constants.html#/c:@SDLKeyboardEventAborted":{"name":"SDLKeyboardEventAborted","abstract":"
The User has not finished entering text and the keyboard is aborted with the event of higher priority."},"Constants.html#/c:@SDLKeyboardEventVoice":{"name":"SDLKeyboardEventVoice","abstract":"
@since SDL 4.0
"},"Constants.html#/c:@SDLKeyboardLayoutQWERTY":{"name":"SDLKeyboardLayoutQWERTY","abstract":"QWERTY layout (the name comes from the first six keys
appearing on the top left letter row of the keyboard and read from left to right)"},"Constants.html#/c:@SDLKeyboardLayoutQWERTZ":{"name":"SDLKeyboardLayoutQWERTZ","abstract":"
QWERTZ layout (the name comes from the first six keys
appearing on the top left letter row of the keyboard and read from left to right)"},"Constants.html#/c:@SDLKeyboardLayoutAZERTY":{"name":"SDLKeyboardLayoutAZERTY","abstract":"
AZERTY layout (the name comes from the first six keys
appearing on the top left letter row of the keyboard and read from left to right)"},"Constants.html#/c:@SDLKeypressModeSingleKeypress":{"name":"SDLKeypressModeSingleKeypress","abstract":"
SINGLE_KEYPRESS:
Each and every User`s keypress must be reported (new notification for every newly entered single symbol)."},"Constants.html#/c:@SDLKeypressModeQueueKeypresses":{"name":"SDLKeypressModeQueueKeypresses","abstract":"
QUEUE_KEYPRESSES:
The whole entry is reported only after the User submits it (by ‘Search’ button click displayed on touchscreen keyboard)"},"Constants.html#/c:@SDLKeypressModeResendCurrentEntry":{"name":"SDLKeypressModeResendCurrentEntry","abstract":"
RESEND_CURRENT_ENTRY:
The whole entry must be reported each and every time the User makes a new keypress
(new notification with all previously entered symbols and a newly entered one appended)."},"Constants.html#/c:@SDLLanguageEnSa":{"name":"SDLLanguageEnSa","abstract":"
Undocumented
"},"Constants.html#/c:@SDLLanguageHeIl":{"name":"SDLLanguageHeIl","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageRoRo":{"name":"SDLLanguageRoRo","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageUkUa":{"name":"SDLLanguageUkUa","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageIdId":{"name":"SDLLanguageIdId","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageViVn":{"name":"SDLLanguageViVn","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageMsMy":{"name":"SDLLanguageMsMy","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageHiIn":{"name":"SDLLanguageHiIn","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageNlBe":{"name":"SDLLanguageNlBe","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageElGr":{"name":"SDLLanguageElGr","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageHuHu":{"name":"SDLLanguageHuHu","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageFiFi":{"name":"SDLLanguageFiFi","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageSkSk":{"name":"SDLLanguageSkSk","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageEnUs":{"name":"SDLLanguageEnUs","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageEnIn":{"name":"SDLLanguageEnIn","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageThTh":{"name":"SDLLanguageThTh","abstract":"Undocumented
"},"Constants.html#/c:@SDLLanguageEsMx":{"name":"SDLLanguageEsMx","abstract":"@abstract Spanish - Mexico
"},"Constants.html#/c:@SDLLanguageFrCa":{"name":"SDLLanguageFrCa","abstract":"@abstract French - Canada
"},"Constants.html#/c:@SDLLanguageDeDe":{"name":"SDLLanguageDeDe","abstract":"@abstract German - Germany
"},"Constants.html#/c:@SDLLanguageEsEs":{"name":"SDLLanguageEsEs","abstract":"@abstract Spanish - Spain
"},"Constants.html#/c:@SDLLanguageEnGb":{"name":"SDLLanguageEnGb","abstract":"@abstract English - Great Britain
"},"Constants.html#/c:@SDLLanguageRuRu":{"name":"SDLLanguageRuRu","abstract":"@abstract Russian - Russia
"},"Constants.html#/c:@SDLLanguageTrTr":{"name":"SDLLanguageTrTr","abstract":"@abstract Turkish - Turkey
"},"Constants.html#/c:@SDLLanguagePlPl":{"name":"SDLLanguagePlPl","abstract":"@abstract Polish - Poland
"},"Constants.html#/c:@SDLLanguageFrFr":{"name":"SDLLanguageFrFr","abstract":"@abstract French - France
"},"Constants.html#/c:@SDLLanguageItIt":{"name":"SDLLanguageItIt","abstract":"@abstract Italian - Italy
"},"Constants.html#/c:@SDLLanguageSvSe":{"name":"SDLLanguageSvSe","abstract":"@abstract Swedish - Sweden
"},"Constants.html#/c:@SDLLanguagePtPt":{"name":"SDLLanguagePtPt","abstract":"@abstract Portuguese - Portugal
"},"Constants.html#/c:@SDLLanguageNlNl":{"name":"SDLLanguageNlNl","abstract":"@abstract Dutch (Standard) - Netherlands
"},"Constants.html#/c:@SDLLanguageEnAu":{"name":"SDLLanguageEnAu","abstract":"@abstract English - Australia
"},"Constants.html#/c:@SDLLanguageZhCn":{"name":"SDLLanguageZhCn","abstract":"@abstract Mandarin - China
"},"Constants.html#/c:@SDLLanguageZhTw":{"name":"SDLLanguageZhTw","abstract":"@abstract Mandarin - Taiwan
"},"Constants.html#/c:@SDLLanguageJaJp":{"name":"SDLLanguageJaJp","abstract":"@abstract Japanese - Japan
"},"Constants.html#/c:@SDLLanguageArSa":{"name":"SDLLanguageArSa","abstract":"@abstract Arabic - Saudi Arabia
"},"Constants.html#/c:@SDLLanguageKoKr":{"name":"SDLLanguageKoKr","abstract":"@abstract Korean - South Korea
"},"Constants.html#/c:@SDLLanguagePtBr":{"name":"SDLLanguagePtBr","abstract":"@abstract Portuguese - Brazil
"},"Constants.html#/c:@SDLLanguageCsCz":{"name":"SDLLanguageCsCz","abstract":"@abstract Czech - Czech Republic
"},"Constants.html#/c:@SDLLanguageDaDk":{"name":"SDLLanguageDaDk","abstract":"@abstract Danish - Denmark
"},"Constants.html#/c:@SDLLanguageNoNo":{"name":"SDLLanguageNoNo","abstract":"@abstract Norwegian - Norway
"},"Constants.html#/c:@SDLLayoutModeIconOnly":{"name":"SDLLayoutModeIconOnly","abstract":"This mode causes the interaction to display the previous set of choices as icons.
"},"Constants.html#/c:@SDLLayoutModeIconWithSearch":{"name":"SDLLayoutModeIconWithSearch","abstract":"This mode causes the interaction to display the previous set of choices as icons along with a search field in the HMI.
"},"Constants.html#/c:@SDLLayoutModeListOnly":{"name":"SDLLayoutModeListOnly","abstract":"This mode causes the interaction to display the previous set of choices as a list.
"},"Constants.html#/c:@SDLLayoutModeListWithSearch":{"name":"SDLLayoutModeListWithSearch","abstract":"This mode causes the interaction to display the previous set of choices as a list along with a search field in the HMI.
"},"Constants.html#/c:@SDLLayoutModeKeyboard":{"name":"SDLLayoutModeKeyboard","abstract":"This mode causes the interaction to immediately display a keyboard entry through the HMI.
"},"Constants.html#/c:@SDLLockScreenStatusOff":{"name":"SDLLockScreenStatusOff","abstract":"LockScreen is Not Required
"},"Constants.html#/c:@SDLLockScreenStatusOptional":{"name":"SDLLockScreenStatusOptional","abstract":"LockScreen is Optional
"},"Constants.html#/c:@SDLLockScreenStatusRequired":{"name":"SDLLockScreenStatusRequired","abstract":"LockScreen is Not Required
"},"Constants.html#/c:@SDLMaintenanceModeStatusNormal":{"name":"SDLMaintenanceModeStatusNormal","abstract":"@abstract Maintenance Mode Status : Normal
"},"Constants.html#/c:@SDLMaintenanceModeStatusNear":{"name":"SDLMaintenanceModeStatusNear","abstract":"@abstract Maintenance Mode Status : Near
"},"Constants.html#/c:@SDLMaintenanceModeStatusActive":{"name":"SDLMaintenanceModeStatusActive","abstract":"@abstract Maintenance Mode Status : Active
"},"Constants.html#/c:@SDLMaintenanceModeStatusFeatureNotPresent":{"name":"SDLMaintenanceModeStatusFeatureNotPresent","abstract":"@abstract Maintenance Mode Status : Feature not present
"},"Constants.html#/c:@SDLMediaClockFormatClock1":{"name":"SDLMediaClockFormatClock1","abstract":"@abstract Media clock format: Clock1
"},"Constants.html#/c:@SDLMediaClockFormatClock2":{"name":"SDLMediaClockFormatClock2","abstract":"@abstract Media clock format: Clock2
"},"Constants.html#/c:@SDLMediaClockFormatClock3":{"name":"SDLMediaClockFormatClock3","abstract":"@abstract Media clock format: Clock3
"},"Constants.html#/c:@SDLMediaClockFormatClockText1":{"name":"SDLMediaClockFormatClockText1","abstract":"@abstract Media clock format: ClockText1
"},"Constants.html#/c:@SDLMediaClockFormatClockText2":{"name":"SDLMediaClockFormatClockText2","abstract":"@abstract Media clock format: ClockText2
"},"Constants.html#/c:@SDLMediaClockFormatClockText3":{"name":"SDLMediaClockFormatClockText3","abstract":"@abstract Media clock format: ClockText3
"},"Constants.html#/c:@SDLMediaClockFormatClockText4":{"name":"SDLMediaClockFormatClockText4","abstract":"@abstract Media clock format: ClockText4
"},"Constants.html#/c:@SDLMetadataTypeMediaTitle":{"name":"SDLMetadataTypeMediaTitle","abstract":"@abstract SDLMetadataType: mediaTitle
"},"Constants.html#/c:@SDLMetadataTypeMediaArtist":{"name":"SDLMetadataTypeMediaArtist","abstract":"@abstract SDLMetadataType: mediaArtist
"},"Constants.html#/c:@SDLMetadataTypeMediaAlbum":{"name":"SDLMetadataTypeMediaAlbum","abstract":"@abstract SDLMetadataType: mediaAlbum
"},"Constants.html#/c:@SDLMetadataTypeMediaYear":{"name":"SDLMetadataTypeMediaYear","abstract":"@abstract SDLMetadataType: mediaYear
"},"Constants.html#/c:@SDLMetadataTypeMediaGenre":{"name":"SDLMetadataTypeMediaGenre","abstract":"@abstract SDLMetadataType: mediaGenre
"},"Constants.html#/c:@SDLMetadataTypeMediaStation":{"name":"SDLMetadataTypeMediaStation","abstract":"@abstract SDLMetadataType: mediaStation
"},"Constants.html#/c:@SDLMetadataTypeRating":{"name":"SDLMetadataTypeRating","abstract":"@abstract SDLMetadataType: rating
"},"Constants.html#/c:@SDLMetadataTypeCurrentTemperature":{"name":"SDLMetadataTypeCurrentTemperature","abstract":"@abstract SDLMetadataType: currentTemperature
"},"Constants.html#/c:@SDLMetadataTypeMaximumTemperature":{"name":"SDLMetadataTypeMaximumTemperature","abstract":"@abstract SDLMetadataType: maximumTemperature
"},"Constants.html#/c:@SDLMetadataTypeMinimumTemperature":{"name":"SDLMetadataTypeMinimumTemperature","abstract":"@abstract SDLMetadataType: minimumTemperature
"},"Constants.html#/c:@SDLMetadataTypeWeatherTerm":{"name":"SDLMetadataTypeWeatherTerm","abstract":"@abstract SDLMetadataType: weatherTerm
"},"Constants.html#/c:@SDLMetadataTypeHumidity":{"name":"SDLMetadataTypeHumidity","abstract":"@abstract SDLMetadataType: humidity
"},"Constants.html#/c:@SDLModuleTypeClimate":{"name":"SDLModuleTypeClimate","abstract":"@abstract A SDLModuleType with the value of CLIMATE
"},"Constants.html#/c:@SDLModuleTypeRadio":{"name":"SDLModuleTypeRadio","abstract":"@abstract A SDLModuleType with the value of RADIO
"},"Constants.html#/c:@SDLNotificationUserInfoObject":{"name":"SDLNotificationUserInfoObject","abstract":"Undocumented
"},"Constants.html#/c:@SDLTransportDidDisconnect":{"name":"SDLTransportDidDisconnect","abstract":"Undocumented
"},"Constants.html#/c:@SDLTransportDidConnect":{"name":"SDLTransportDidConnect","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveError":{"name":"SDLDidReceiveError","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveLockScreenIcon":{"name":"SDLDidReceiveLockScreenIcon","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidBecomeReady":{"name":"SDLDidBecomeReady","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidUpdateProjectionView":{"name":"SDLDidUpdateProjectionView","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveAddCommandResponse":{"name":"SDLDidReceiveAddCommandResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveAddSubMenuResponse":{"name":"SDLDidReceiveAddSubMenuResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveAlertResponse":{"name":"SDLDidReceiveAlertResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveAlertManeuverResponse":{"name":"SDLDidReceiveAlertManeuverResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveButtonPressResponse":{"name":"SDLDidReceiveButtonPressResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveChangeRegistrationResponse":{"name":"SDLDidReceiveChangeRegistrationResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveCreateInteractionChoiceSetResponse":{"name":"SDLDidReceiveCreateInteractionChoiceSetResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveDeleteCommandResponse":{"name":"SDLDidReceiveDeleteCommandResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveDeleteFileResponse":{"name":"SDLDidReceiveDeleteFileResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveDeleteInteractionChoiceSetResponse":{"name":"SDLDidReceiveDeleteInteractionChoiceSetResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveDeleteSubmenuResponse":{"name":"SDLDidReceiveDeleteSubmenuResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveDiagnosticMessageResponse":{"name":"SDLDidReceiveDiagnosticMessageResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveDialNumberResponse":{"name":"SDLDidReceiveDialNumberResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveEncodedSyncPDataResponse":{"name":"SDLDidReceiveEncodedSyncPDataResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveEndAudioPassThruResponse":{"name":"SDLDidReceiveEndAudioPassThruResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveGenericResponse":{"name":"SDLDidReceiveGenericResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveGetDTCsResponse":{"name":"SDLDidReceiveGetDTCsResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveGetInteriorVehicleDataResponse":{"name":"SDLDidReceiveGetInteriorVehicleDataResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveGetSystemCapabilitiesResponse":{"name":"SDLDidReceiveGetSystemCapabilitiesResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveGetVehicleDataResponse":{"name":"SDLDidReceiveGetVehicleDataResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveGetWaypointsResponse":{"name":"SDLDidReceiveGetWaypointsResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveListFilesResponse":{"name":"SDLDidReceiveListFilesResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceivePerformAudioPassThruResponse":{"name":"SDLDidReceivePerformAudioPassThruResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceivePerformInteractionResponse":{"name":"SDLDidReceivePerformInteractionResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceivePutFileResponse":{"name":"SDLDidReceivePutFileResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveReadDIDResponse":{"name":"SDLDidReceiveReadDIDResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveRegisterAppInterfaceResponse":{"name":"SDLDidReceiveRegisterAppInterfaceResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveResetGlobalPropertiesResponse":{"name":"SDLDidReceiveResetGlobalPropertiesResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveScrollableMessageResponse":{"name":"SDLDidReceiveScrollableMessageResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSendHapticDataResponse":{"name":"SDLDidReceiveSendHapticDataResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSendLocationResponse":{"name":"SDLDidReceiveSendLocationResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSetAppIconResponse":{"name":"SDLDidReceiveSetAppIconResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSetDisplayLayoutResponse":{"name":"SDLDidReceiveSetDisplayLayoutResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSetGlobalPropertiesResponse":{"name":"SDLDidReceiveSetGlobalPropertiesResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSetInteriorVehicleDataResponse":{"name":"SDLDidReceiveSetInteriorVehicleDataResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSetMediaClockTimerResponse":{"name":"SDLDidReceiveSetMediaClockTimerResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveShowConstantTBTResponse":{"name":"SDLDidReceiveShowConstantTBTResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveShowResponse":{"name":"SDLDidReceiveShowResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSliderResponse":{"name":"SDLDidReceiveSliderResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSpeakResponse":{"name":"SDLDidReceiveSpeakResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSubscribeButtonResponse":{"name":"SDLDidReceiveSubscribeButtonResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSubscribeVehicleDataResponse":{"name":"SDLDidReceiveSubscribeVehicleDataResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSubscribeWaypointsResponse":{"name":"SDLDidReceiveSubscribeWaypointsResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSyncPDataResponse":{"name":"SDLDidReceiveSyncPDataResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveUpdateTurnListResponse":{"name":"SDLDidReceiveUpdateTurnListResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveUnregisterAppInterfaceResponse":{"name":"SDLDidReceiveUnregisterAppInterfaceResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveUnsubscribeButtonResponse":{"name":"SDLDidReceiveUnsubscribeButtonResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveUnsubscribeVehicleDataResponse":{"name":"SDLDidReceiveUnsubscribeVehicleDataResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveUnsubscribeWaypointsResponse":{"name":"SDLDidReceiveUnsubscribeWaypointsResponse","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidChangeDriverDistractionStateNotification":{"name":"SDLDidChangeDriverDistractionStateNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidChangeHMIStatusNotification":{"name":"SDLDidChangeHMIStatusNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveAudioPassThruNotification":{"name":"SDLDidReceiveAudioPassThruNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveAppUnregisteredNotification":{"name":"SDLDidReceiveAppUnregisteredNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveButtonEventNotification":{"name":"SDLDidReceiveButtonEventNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveButtonPressNotification":{"name":"SDLDidReceiveButtonPressNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveCommandNotification":{"name":"SDLDidReceiveCommandNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveEncodedDataNotification":{"name":"SDLDidReceiveEncodedDataNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveInteriorVehicleDataNotification":{"name":"SDLDidReceiveInteriorVehicleDataNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveKeyboardInputNotification":{"name":"SDLDidReceiveKeyboardInputNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidChangeLanguageNotification":{"name":"SDLDidChangeLanguageNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidChangeLockScreenStatusNotification":{"name":"SDLDidChangeLockScreenStatusNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveNewHashNotification":{"name":"SDLDidReceiveNewHashNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveVehicleIconNotification":{"name":"SDLDidReceiveVehicleIconNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidChangePermissionsNotification":{"name":"SDLDidChangePermissionsNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveSystemRequestNotification":{"name":"SDLDidReceiveSystemRequestNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidChangeTurnByTurnStateNotification":{"name":"SDLDidChangeTurnByTurnStateNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveTouchEventNotification":{"name":"SDLDidReceiveTouchEventNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveVehicleDataNotification":{"name":"SDLDidReceiveVehicleDataNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLDidReceiveWaypointNotification":{"name":"SDLDidReceiveWaypointNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLPRNDLPark":{"name":"SDLPRNDLPark","abstract":"@abstract Park
"},"Constants.html#/c:@SDLPRNDLReverse":{"name":"SDLPRNDLReverse","abstract":"@abstract Reverse gear
"},"Constants.html#/c:@SDLPRNDLNeutral":{"name":"SDLPRNDLNeutral","abstract":"@abstract No gear
"},"Constants.html#/c:@SDLPRNDLDrive":{"name":"SDLPRNDLDrive","abstract":"@abstract: Drive gear
"},"Constants.html#/c:@SDLPRNDLSport":{"name":"SDLPRNDLSport","abstract":"@abstract Drive Sport mode
"},"Constants.html#/c:@SDLPRNDLLowGear":{"name":"SDLPRNDLLowGear","abstract":"@abstract 1st gear hold
"},"Constants.html#/c:@SDLPRNDLFirst":{"name":"SDLPRNDLFirst","abstract":"@abstract First gear
"},"Constants.html#/c:@SDLPRNDLSecond":{"name":"SDLPRNDLSecond","abstract":"@abstract Second gear
"},"Constants.html#/c:@SDLPRNDLThird":{"name":"SDLPRNDLThird","abstract":"@abstract Third gear
"},"Constants.html#/c:@SDLPRNDLFourth":{"name":"SDLPRNDLFourth","abstract":"@abstract Fourth gear
"},"Constants.html#/c:@SDLPRNDLFifth":{"name":"SDLPRNDLFifth","abstract":"@abstract Fifth gear
"},"Constants.html#/c:@SDLPRNDLSixth":{"name":"SDLPRNDLSixth","abstract":"@abstract Sixth gear
"},"Constants.html#/c:@SDLPRNDLSeventh":{"name":"SDLPRNDLSeventh","abstract":"@abstract Seventh gear
"},"Constants.html#/c:@SDLPRNDLEighth":{"name":"SDLPRNDLEighth","abstract":"@abstract Eighth gear
"},"Constants.html#/c:@SDLPRNDLUnknown":{"name":"SDLPRNDLUnknown","abstract":"@abstract Unknown
"},"Constants.html#/c:@SDLPRNDLFault":{"name":"SDLPRNDLFault","abstract":"@abstract Fault
"},"Constants.html#/c:@SDLPermissionStatusAllowed":{"name":"SDLPermissionStatusAllowed","abstract":"@abstract permission: allowed
"},"Constants.html#/c:@SDLPermissionStatusDisallowed":{"name":"SDLPermissionStatusDisallowed","abstract":"@abstract permission: disallowed
"},"Constants.html#/c:@SDLPermissionStatusUserDisallowed":{"name":"SDLPermissionStatusUserDisallowed","abstract":"@abstract permission: user disallowed
"},"Constants.html#/c:@SDLPermissionStatusUserConsentPending":{"name":"SDLPermissionStatusUserConsentPending","abstract":"@abstract permission: user consent pending
"},"Constants.html#/c:@SDLPowerModeQualificationStatusUndefined":{"name":"SDLPowerModeQualificationStatusUndefined","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeQualificationStatusEvaluationInProgress":{"name":"SDLPowerModeQualificationStatusEvaluationInProgress","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeQualificationStatusNotDefined":{"name":"SDLPowerModeQualificationStatusNotDefined","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeQualificationStatusOk":{"name":"SDLPowerModeQualificationStatusOk","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeStatusKeyOut":{"name":"SDLPowerModeStatusKeyOut","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeStatusKeyRecentlyOut":{"name":"SDLPowerModeStatusKeyRecentlyOut","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeStatusKeyApproved":{"name":"SDLPowerModeStatusKeyApproved","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeStatusPostAccessory":{"name":"SDLPowerModeStatusPostAccessory","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeStatusAccessory":{"name":"SDLPowerModeStatusAccessory","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeStatusPostIgnition":{"name":"SDLPowerModeStatusPostIgnition","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeStatusIgnitionOn":{"name":"SDLPowerModeStatusIgnitionOn","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeStatusRunning":{"name":"SDLPowerModeStatusRunning","abstract":"Undocumented
"},"Constants.html#/c:@SDLPowerModeStatusCrank":{"name":"SDLPowerModeStatusCrank","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutDefault":{"name":"SDLPredefinedLayoutDefault","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutMedia":{"name":"SDLPredefinedLayoutMedia","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutNonMedia":{"name":"SDLPredefinedLayoutNonMedia","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutOnscreenPresets":{"name":"SDLPredefinedLayoutOnscreenPresets","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutNavigationFullscreenMap":{"name":"SDLPredefinedLayoutNavigationFullscreenMap","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutNavigationList":{"name":"SDLPredefinedLayoutNavigationList","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutNavigationKeyboard":{"name":"SDLPredefinedLayoutNavigationKeyboard","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutGraphicWithText":{"name":"SDLPredefinedLayoutGraphicWithText","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutTextWithGraphic":{"name":"SDLPredefinedLayoutTextWithGraphic","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutTilesOnly":{"name":"SDLPredefinedLayoutTilesOnly","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutTextButtonsOnly":{"name":"SDLPredefinedLayoutTextButtonsOnly","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutGraphicWithTiles":{"name":"SDLPredefinedLayoutGraphicWithTiles","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutTilesWithGraphic":{"name":"SDLPredefinedLayoutTilesWithGraphic","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutGraphicWithTextAndSoftButtons":{"name":"SDLPredefinedLayoutGraphicWithTextAndSoftButtons","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutTextAndSoftButtonsWithGraphic":{"name":"SDLPredefinedLayoutTextAndSoftButtonsWithGraphic","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutGraphicWithTextButtons":{"name":"SDLPredefinedLayoutGraphicWithTextButtons","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutTextButtonsWithGraphic":{"name":"SDLPredefinedLayoutTextButtonsWithGraphic","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutLargeGraphicWithSoftButtons":{"name":"SDLPredefinedLayoutLargeGraphicWithSoftButtons","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutDoubleGraphicWithSoftButtons":{"name":"SDLPredefinedLayoutDoubleGraphicWithSoftButtons","abstract":"Undocumented
"},"Constants.html#/c:@SDLPredefinedLayoutLargeGraphicOnly":{"name":"SDLPredefinedLayoutLargeGraphicOnly","abstract":"Undocumented
"},"Constants.html#/c:@SDLPrerecordedSpeechHelp":{"name":"SDLPrerecordedSpeechHelp","abstract":"Undocumented
"},"Constants.html#/c:@SDLPrerecordedSpeechInitial":{"name":"SDLPrerecordedSpeechInitial","abstract":"Undocumented
"},"Constants.html#/c:@SDLPrerecordedSpeechListen":{"name":"SDLPrerecordedSpeechListen","abstract":"Undocumented
"},"Constants.html#/c:@SDLPrerecordedSpeechPositive":{"name":"SDLPrerecordedSpeechPositive","abstract":"Undocumented
"},"Constants.html#/c:@SDLPrerecordedSpeechNegative":{"name":"SDLPrerecordedSpeechNegative","abstract":"Undocumented
"},"Constants.html#/c:@SDLPrimaryAudioSourceNoSourceSelected":{"name":"SDLPrimaryAudioSourceNoSourceSelected","abstract":"@abstract Currently no source selected
"},"Constants.html#/c:@SDLPrimaryAudioSourceUSB":{"name":"SDLPrimaryAudioSourceUSB","abstract":"@abstract USB is current source
"},"Constants.html#/c:@SDLPrimaryAudioSourceUSB2":{"name":"SDLPrimaryAudioSourceUSB2","abstract":"@abstract USB2 is current source
"},"Constants.html#/c:@SDLPrimaryAudioSourceBluetoothStereo":{"name":"SDLPrimaryAudioSourceBluetoothStereo","abstract":"@abstract Bluetooth Stereo is current source
"},"Constants.html#/c:@SDLPrimaryAudioSourceLineIn":{"name":"SDLPrimaryAudioSourceLineIn","abstract":"@abstract Line in is current source
"},"Constants.html#/c:@SDLPrimaryAudioSourceIpod":{"name":"SDLPrimaryAudioSourceIpod","abstract":"@abstract iPod is current source
"},"Constants.html#/c:@SDLPrimaryAudioSourceMobileApp":{"name":"SDLPrimaryAudioSourceMobileApp","abstract":"@abstract Mobile app is current source
"},"Constants.html#/c:@SDLProtocolSecurityErrorDomain":{"name":"SDLProtocolSecurityErrorDomain","abstract":"Undocumented
"},"Constants.html#/c:@SDLRadioBandAM":{"name":"SDLRadioBandAM","abstract":"@abstract Represents AM radio band
"},"Constants.html#/c:@SDLRadioBandFM":{"name":"SDLRadioBandFM","abstract":"@abstract Represents FM radio band
"},"Constants.html#/c:@SDLRadioBandXM":{"name":"SDLRadioBandXM","abstract":"@abstract Represents XM radio band
"},"Constants.html#/c:@SDLRadioStateAcquiring":{"name":"SDLRadioStateAcquiring","abstract":"@abstract Represents Radio state as ACQUIRING
"},"Constants.html#/c:@SDLRadioStateAcquired":{"name":"SDLRadioStateAcquired","abstract":"@abstract Represents Radio state as ACQUIRED
"},"Constants.html#/c:@SDLRadioStateMulticast":{"name":"SDLRadioStateMulticast","abstract":"@abstract Represents Radio state as MULTICAST
"},"Constants.html#/c:@SDLRadioStateNotFound":{"name":"SDLRadioStateNotFound","abstract":"@abstract Represents Radio state as NOT_FOUND
"},"Constants.html#/c:@SDLRequestTypeHTTP":{"name":"SDLRequestTypeHTTP","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeFileResume":{"name":"SDLRequestTypeFileResume","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeAuthenticationRequest":{"name":"SDLRequestTypeAuthenticationRequest","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeAuthenticationChallenge":{"name":"SDLRequestTypeAuthenticationChallenge","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeAuthenticationAck":{"name":"SDLRequestTypeAuthenticationAck","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeProprietary":{"name":"SDLRequestTypeProprietary","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeQueryApps":{"name":"SDLRequestTypeQueryApps","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeLaunchApp":{"name":"SDLRequestTypeLaunchApp","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeLockScreenIconURL":{"name":"SDLRequestTypeLockScreenIconURL","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeTrafficMessageChannel":{"name":"SDLRequestTypeTrafficMessageChannel","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeDriverProfile":{"name":"SDLRequestTypeDriverProfile","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeVoiceSearch":{"name":"SDLRequestTypeVoiceSearch","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeNavigation":{"name":"SDLRequestTypeNavigation","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypePhone":{"name":"SDLRequestTypePhone","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeClimate":{"name":"SDLRequestTypeClimate","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeSettings":{"name":"SDLRequestTypeSettings","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeVehicleDiagnostics":{"name":"SDLRequestTypeVehicleDiagnostics","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeEmergency":{"name":"SDLRequestTypeEmergency","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeMedia":{"name":"SDLRequestTypeMedia","abstract":"Undocumented
"},"Constants.html#/c:@SDLRequestTypeFOTA":{"name":"SDLRequestTypeFOTA","abstract":"Undocumented
"},"Constants.html#/c:@SDLResultSuccess":{"name":"SDLResultSuccess","abstract":"@abstract The request succeeded
"},"Constants.html#/c:@SDLResultInvalidData":{"name":"SDLResultInvalidData","abstract":"@abstract Result code : Invalid Data
"},"Constants.html#/c:@SDLResultCharacterLimitExceeded":{"name":"SDLResultCharacterLimitExceeded","abstract":"Undocumented
"},"Constants.html#/c:@SDLResultUnsupportedRequest":{"name":"SDLResultUnsupportedRequest","abstract":"@abstract The request is not supported by SDL
"},"Constants.html#/c:@SDLResultOutOfMemory":{"name":"SDLResultOutOfMemory","abstract":"@abstract The system could not process the request because the necessary memory couldn’t be allocated
"},"Constants.html#/c:@SDLResultTooManyPendingRequests":{"name":"SDLResultTooManyPendingRequests","abstract":"@abstract There are too many requests pending (means that the response has not been delivered yet).
"},"Constants.html#/c:@SDLResultInvalidId":{"name":"SDLResultInvalidId","abstract":"@abstract One of the provided IDs is not valid."},"Constants.html#/c:@SDLResultDuplicateName":{"name":"SDLResultDuplicateName","abstract":"
@abstract The provided name or synonym is a duplicate of some already-defined name or synonym.
"},"Constants.html#/c:@SDLResultTooManyApplications":{"name":"SDLResultTooManyApplications","abstract":"There are already too many registered applications.
"},"Constants.html#/c:@SDLResultApplicationRegisteredAlready":{"name":"SDLResultApplicationRegisteredAlready","abstract":"RegisterApplication has been called again, after a RegisterApplication was successful before.
"},"Constants.html#/c:@SDLResultUnsupportedVersion":{"name":"SDLResultUnsupportedVersion","abstract":"The Head Unit doesn’t support the protocol that is requested by the mobile application.
"},"Constants.html#/c:@SDLResultWrongLanguage":{"name":"SDLResultWrongLanguage","abstract":"The requested language is currently not supported. Might be because of a mismatch of the currently active language on the head unit and the requested language.
"},"Constants.html#/c:@SDLResultApplicationNotRegistered":{"name":"SDLResultApplicationNotRegistered","abstract":"A command can not be executed because no application has been registered with RegisterApplication.
"},"Constants.html#/c:@SDLResultInUse":{"name":"SDLResultInUse","abstract":"The data may not be changed, because it is currently in use. For example when trying to delete a command set that is currently involved in an interaction.
"},"Constants.html#/c:@SDLResultVehicleDataNotAllowed":{"name":"SDLResultVehicleDataNotAllowed","abstract":"The user has turned off access to vehicle data, and it is globally unavailable to mobile applications.
"},"Constants.html#/c:@SDLResultVehicleDataNotAvailable":{"name":"SDLResultVehicleDataNotAvailable","abstract":"The requested vehicle data is not available on this vehicle or is not published.
"},"Constants.html#/c:@SDLResultRejected":{"name":"SDLResultRejected","abstract":"The requested command was rejected, e.g. because mobile app is in background and cannot perform any HMI commands. Or an HMI command (e.g. Speak) is rejected because a higher priority HMI command (e.g. Alert) is playing.
"},"Constants.html#/c:@SDLResultAborted":{"name":"SDLResultAborted","abstract":"A command was aborted, for example due to user interaction (e.g. user pressed button). Or an HMI command (e.g. Speak) is aborted because a higher priority HMI command (e.g. Alert) was requested.
"},"Constants.html#/c:@SDLResultIgnored":{"name":"SDLResultIgnored","abstract":"A command was ignored, because the intended result is already in effect. For example, SetMediaClockTimer was used to pause the media clock although the clock is paused already.
"},"Constants.html#/c:@SDLResultUnsupportedResource":{"name":"SDLResultUnsupportedResource","abstract":"A button that was requested for subscription is not supported under the current system.
"},"Constants.html#/c:@SDLResultFileNotFound":{"name":"SDLResultFileNotFound","abstract":"A specified file could not be found on the head unit.
"},"Constants.html#/c:@SDLResultGenericError":{"name":"SDLResultGenericError","abstract":"Provided data is valid but something went wrong in the lower layers.
"},"Constants.html#/c:@SDLResultDisallowed":{"name":"SDLResultDisallowed","abstract":"RPC is not authorized in local policy table.
"},"Constants.html#/c:@SDLResultUserDisallowed":{"name":"SDLResultUserDisallowed","abstract":"RPC is included in a functional group explicitly blocked by the user.
"},"Constants.html#/c:@SDLResultTimedOut":{"name":"SDLResultTimedOut","abstract":"Overlay reached the maximum timeout and closed.
"},"Constants.html#/c:@SDLResultCancelRoute":{"name":"SDLResultCancelRoute","abstract":"User selected to Cancel Route.
"},"Constants.html#/c:@SDLResultTruncatedData":{"name":"SDLResultTruncatedData","abstract":"The RPC (e.g. ReadDID) executed successfully but the data exceeded the platform maximum threshold and thus, only part of the data is available.
"},"Constants.html#/c:@SDLResultRetry":{"name":"SDLResultRetry","abstract":"The user interrupted the RPC (e.g. PerformAudioPassThru) and indicated to start over. Note, the app must issue the new RPC.
"},"Constants.html#/c:@SDLResultWarnings":{"name":"SDLResultWarnings","abstract":"The RPC (e.g. SubscribeVehicleData) executed successfully but one or more items have a warning or failure.
"},"Constants.html#/c:@SDLResultSaved":{"name":"SDLResultSaved","abstract":"The RPC (e.g. Slider) executed successfully and the user elected to save the current position / value.
"},"Constants.html#/c:@SDLResultInvalidCertificate":{"name":"SDLResultInvalidCertificate","abstract":"The certificate provided during authentication is invalid.
"},"Constants.html#/c:@SDLResultExpiredCertificate":{"name":"SDLResultExpiredCertificate","abstract":"The certificate provided during authentication is expired.
"},"Constants.html#/c:@SDLResultResumeFailed":{"name":"SDLResultResumeFailed","abstract":"The provided hash ID does not match the hash of the current set of registered data or the core could not resume the previous data.
"},"Constants.html#/c:@SDLResultDataNotAvailable":{"name":"SDLResultDataNotAvailable","abstract":"The requested data is not available on this vehicle or is not published for the connected app.
"},"Constants.html#/c:@SDLResultReadOnly":{"name":"SDLResultReadOnly","abstract":"The requested data is read only thus cannot be change via remote control .
"},"Constants.html#/c:@SDLSamplingRate8KHZ":{"name":"SDLSamplingRate8KHZ","abstract":"@abstract Sampling rate of 8 kHz
"},"Constants.html#/c:@SDLSamplingRate16KHZ":{"name":"SDLSamplingRate16KHZ","abstract":"@abstract Sampling rate of 16 kHz
"},"Constants.html#/c:@SDLSamplingRate22KHZ":{"name":"SDLSamplingRate22KHZ","abstract":"@abstract Sampling rate of 22 kHz
"},"Constants.html#/c:@SDLSamplingRate44KHZ":{"name":"SDLSamplingRate44KHZ","abstract":"@abstract Sampling rate of 44 kHz
"},"Constants.html#/c:@SDLSoftButtonTypeText":{"name":"SDLSoftButtonTypeText","abstract":"@abstract Text kind Softbutton
"},"Constants.html#/c:@SDLSoftButtonTypeImage":{"name":"SDLSoftButtonTypeImage","abstract":"@abstract Image kind Softbutton
"},"Constants.html#/c:@SDLSoftButtonTypeBoth":{"name":"SDLSoftButtonTypeBoth","abstract":"@abstract Both (Text & Image) kind Softbutton
"},"Constants.html#/c:@SDLSpeechCapabilitiesText":{"name":"SDLSpeechCapabilitiesText","abstract":"@abstract The SDL platform can speak text phrases.
"},"Constants.html#/c:@SDLSpeechCapabilitiesSAPIPhonemes":{"name":"SDLSpeechCapabilitiesSAPIPhonemes","abstract":"Undocumented
"},"Constants.html#/c:@SDLSpeechCapabilitiesLHPlusPhonemes":{"name":"SDLSpeechCapabilitiesLHPlusPhonemes","abstract":"Undocumented
"},"Constants.html#/c:@SDLSpeechCapabilitiesPrerecorded":{"name":"SDLSpeechCapabilitiesPrerecorded","abstract":"Undocumented
"},"Constants.html#/c:@SDLSpeechCapabilitiesSilence":{"name":"SDLSpeechCapabilitiesSilence","abstract":"Undocumented
"},"Constants.html#/c:@SDLDefaultScreenSize":{"name":"SDLDefaultScreenSize","abstract":"Undocumented
"},"Constants.html#/c:@SDLVideoStreamDidStartNotification":{"name":"SDLVideoStreamDidStartNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLVideoStreamDidStopNotification":{"name":"SDLVideoStreamDidStopNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLAudioStreamDidStartNotification":{"name":"SDLAudioStreamDidStartNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLAudioStreamDidStopNotification":{"name":"SDLAudioStreamDidStopNotification","abstract":"Undocumented
"},"Constants.html#/c:@SDLSystemActionDefaultAction":{"name":"SDLSystemActionDefaultAction","abstract":"@abstract Default_Action
"},"Constants.html#/c:@SDLSystemActionStealFocus":{"name":"SDLSystemActionStealFocus","abstract":"@abstract Steal_Focus
"},"Constants.html#/c:@SDLSystemActionKeepContext":{"name":"SDLSystemActionKeepContext","abstract":"@abstract Keep_Context
"},"Constants.html#/c:@SDLSystemCapabilityTypeNavigation":{"name":"SDLSystemCapabilityTypeNavigation","abstract":"@abstract NAVIGATION
"},"Constants.html#/c:@SDLSystemCapabilityTypePhoneCall":{"name":"SDLSystemCapabilityTypePhoneCall","abstract":"@abstract PHONE_CALL
"},"Constants.html#/c:@SDLSystemCapabilityTypeVideoStreaming":{"name":"SDLSystemCapabilityTypeVideoStreaming","abstract":"@abstract VIDEO_STREAMING
"},"Constants.html#/c:@SDLSystemCapabilityTypeRemoteControl":{"name":"SDLSystemCapabilityTypeRemoteControl","abstract":"@abstract REMOTE_CONTROL
"},"Constants.html#/c:@SDLSystemContextMain":{"name":"SDLSystemContextMain","abstract":"@abstract No user interaction (user-initiated or app-initiated) is in progress.
"},"Constants.html#/c:@SDLSystemContextVoiceRecognitionSession":{"name":"SDLSystemContextVoiceRecognitionSession","abstract":"@abstract VR-oriented, user-initiated or app-initiated interaction is in-progress.
"},"Constants.html#/c:@SDLSystemContextMenu":{"name":"SDLSystemContextMenu","abstract":"@abstract Menu-oriented, user-initiated or app-initiated interaction is in-progress.
"},"Constants.html#/c:@SDLSystemContextHMIObscured":{"name":"SDLSystemContextHMIObscured","abstract":"@abstract The app’s display HMI is currently being obscured by either a system or other app’s overlay.
"},"Constants.html#/c:@SDLSystemContextAlert":{"name":"SDLSystemContextAlert","abstract":"@abstract Broadcast only to whichever app has an alert currently being displayed.
"},"Constants.html#/c:@SDLTBTStateRouteUpdateRequest":{"name":"SDLTBTStateRouteUpdateRequest","abstract":"Undocumented
"},"Constants.html#/c:@SDLTBTStateRouteAccepted":{"name":"SDLTBTStateRouteAccepted","abstract":"Undocumented
"},"Constants.html#/c:@SDLTBTStateRouteRefused":{"name":"SDLTBTStateRouteRefused","abstract":"Undocumented
"},"Constants.html#/c:@SDLTBTStateRouteCancelled":{"name":"SDLTBTStateRouteCancelled","abstract":"Undocumented
"},"Constants.html#/c:@SDLTBTStateETARequest":{"name":"SDLTBTStateETARequest","abstract":"Undocumented
"},"Constants.html#/c:@SDLTBTStateNextTurnRequest":{"name":"SDLTBTStateNextTurnRequest","abstract":"Undocumented
"},"Constants.html#/c:@SDLTBTStateRouteStatusRequest":{"name":"SDLTBTStateRouteStatusRequest","abstract":"Undocumented
"},"Constants.html#/c:@SDLTBTStateRouteSummaryRequest":{"name":"SDLTBTStateRouteSummaryRequest","abstract":"Undocumented
"},"Constants.html#/c:@SDLTBTStateTripStatusRequest":{"name":"SDLTBTStateTripStatusRequest","abstract":"Undocumented
"},"Constants.html#/c:@SDLTBTStateRouteUpdateRequestTimeout":{"name":"SDLTBTStateRouteUpdateRequestTimeout","abstract":"Undocumented
"},"Constants.html#/c:@SDLTemperatureUnitCelsius":{"name":"SDLTemperatureUnitCelsius","abstract":"@abstract Reflects the current HMI setting for temperature unit in Celsius"},"Constants.html#/c:@SDLTemperatureUnitFahrenheit":{"name":"SDLTemperatureUnitFahrenheit","abstract":"
@abstract Reflects the current HMI setting for temperature unit in Fahrenheit"},"Constants.html#/c:@SDLTextAlignmentLeft":{"name":"SDLTextAlignmentLeft","abstract":"
@abstract Text aligned left.
"},"Constants.html#/c:@SDLTextAlignmentRight":{"name":"SDLTextAlignmentRight","abstract":"@abstract Text aligned right.
"},"Constants.html#/c:@SDLTextAlignmentCenter":{"name":"SDLTextAlignmentCenter","abstract":"@abstract Text aligned centered.
"},"Constants.html#/c:@SDLTextFieldNameMainField1":{"name":"SDLTextFieldNameMainField1","abstract":"@abstract The first line of the first set of main fields of the persistent display. Applies to SDLShow.
"},"Constants.html#/c:@SDLTextFieldNameMainField2":{"name":"SDLTextFieldNameMainField2","abstract":"@abstract The second line of the first set of main fields of the persistent display. Applies to SDLShow.
"},"Constants.html#/c:@SDLTextFieldNameMainField3":{"name":"SDLTextFieldNameMainField3","abstract":"@abstract The first line of the second set of main fields of the persistent display. Applies to SDLShow.
"},"Constants.html#/c:@SDLTextFieldNameMainField4":{"name":"SDLTextFieldNameMainField4","abstract":"@abstract The second line of the second set of main fields of the persistent display. Applies to SDLShow.
"},"Constants.html#/c:@SDLTextFieldNameStatusBar":{"name":"SDLTextFieldNameStatusBar","abstract":"@abstract The status bar on the NGN display. Applies to SDLShow.
"},"Constants.html#/c:@SDLTextFieldNameMediaClock":{"name":"SDLTextFieldNameMediaClock","abstract":"@abstract Text value for MediaClock field. Must be properly formatted according to MediaClockFormat. Applies to SDLShow.
"},"Constants.html#/c:@SDLTextFieldNameMediaTrack":{"name":"SDLTextFieldNameMediaTrack","abstract":"@abstract The track field of NGN type ACMs. This field is only available for media applications on a NGN display. Applies to SDLShow.
"},"Constants.html#/c:@SDLTextFieldNameAlertText1":{"name":"SDLTextFieldNameAlertText1","abstract":"@abstract The first line of the alert text field. Applies to SDLAlert.
"},"Constants.html#/c:@SDLTextFieldNameAlertText2":{"name":"SDLTextFieldNameAlertText2","abstract":"@abstract The second line of the alert text field. Applies to SDLAlert.
"},"Constants.html#/c:@SDLTextFieldNameAlertText3":{"name":"SDLTextFieldNameAlertText3","abstract":"@abstract The third line of the alert text field. Applies to SDLAlert.
"},"Constants.html#/c:@SDLTextFieldNameScrollableMessageBody":{"name":"SDLTextFieldNameScrollableMessageBody","abstract":"@abstract Long form body of text that can include newlines and tabs. Applies to SDLScrollableMessage.
"},"Constants.html#/c:@SDLTextFieldNameInitialInteractionText":{"name":"SDLTextFieldNameInitialInteractionText","abstract":"@abstract First line suggestion for a user response (in the case of VR enabled interaction).
"},"Constants.html#/c:@SDLTextFieldNameNavigationText1":{"name":"SDLTextFieldNameNavigationText1","abstract":"@abstract First line of navigation text.
"},"Constants.html#/c:@SDLTextFieldNameNavigationText2":{"name":"SDLTextFieldNameNavigationText2","abstract":"@abstract Second line of navigation text.
"},"Constants.html#/c:@SDLTextFieldNameETA":{"name":"SDLTextFieldNameETA","abstract":"@abstract Estimated Time of Arrival time for navigation.
"},"Constants.html#/c:@SDLTextFieldNameTotalDistance":{"name":"SDLTextFieldNameTotalDistance","abstract":"@abstract Total distance to destination for navigation.
"},"Constants.html#/c:@SDLTextFieldNameAudioPassThruDisplayText1":{"name":"SDLTextFieldNameAudioPassThruDisplayText1","abstract":"@abstract First line of text for audio pass thru.
"},"Constants.html#/c:@SDLTextFieldNameAudioPassThruDisplayText2":{"name":"SDLTextFieldNameAudioPassThruDisplayText2","abstract":"@abstract Second line of text for audio pass thru.
"},"Constants.html#/c:@SDLTextFieldNameSliderHeader":{"name":"SDLTextFieldNameSliderHeader","abstract":"@abstract Header text for slider.
"},"Constants.html#/c:@SDLTextFieldNameSliderFooter":{"name":"SDLTextFieldNameSliderFooter","abstract":"@abstract Footer text for slider
"},"Constants.html#/c:@SDLTextFieldNameMenuName":{"name":"SDLTextFieldNameMenuName","abstract":"Primary text for SDLChoice
"},"Constants.html#/c:@SDLTextFieldNameSecondaryText":{"name":"SDLTextFieldNameSecondaryText","abstract":"Secondary text for SDLChoice
"},"Constants.html#/c:@SDLTextFieldNameTertiaryText":{"name":"SDLTextFieldNameTertiaryText","abstract":"Tertiary text for SDLChoice
"},"Constants.html#/c:@SDLTextFieldNameMenuTitle":{"name":"SDLTextFieldNameMenuTitle","abstract":"Optional text to label an app menu button (for certain touchscreen platforms)
"},"Constants.html#/c:@SDLTextFieldNameLocationName":{"name":"SDLTextFieldNameLocationName","abstract":"Optional name / title of intended location for SDLSendLocation
"},"Constants.html#/c:@SDLTextFieldNameLocationDescription":{"name":"SDLTextFieldNameLocationDescription","abstract":"Optional description of intended location / establishment (if applicable) for SDLSendLocation
"},"Constants.html#/c:@SDLTextFieldNameAddressLines":{"name":"SDLTextFieldNameAddressLines","abstract":"Optional location address (if applicable) for SDLSendLocation
"},"Constants.html#/c:@SDLTextFieldNamePhoneNumber":{"name":"SDLTextFieldNamePhoneNumber","abstract":"Optional hone number of intended location / establishment (if applicable) for SDLSendLocation
"},"Constants.html#/c:@SDLTimerModeUp":{"name":"SDLTimerModeUp","abstract":"Undocumented
"},"Constants.html#/c:@SDLTimerModeDown":{"name":"SDLTimerModeDown","abstract":"Undocumented
"},"Constants.html#/c:@SDLTimerModeNone":{"name":"SDLTimerModeNone","abstract":"Undocumented
"},"Constants.html#/c:@SDLTouchTypeBegin":{"name":"SDLTouchTypeBegin","abstract":"Undocumented
"},"Constants.html#/c:@SDLTouchTypeMove":{"name":"SDLTouchTypeMove","abstract":"Undocumented
"},"Constants.html#/c:@SDLTouchTypeEnd":{"name":"SDLTouchTypeEnd","abstract":"Undocumented
"},"Constants.html#/c:@SDLTouchTypeCancel":{"name":"SDLTouchTypeCancel","abstract":"Undocumented
"},"Constants.html#/c:@SDLTriggerSourceMenu":{"name":"SDLTriggerSourceMenu","abstract":"@abstract Selection made via menu
"},"Constants.html#/c:@SDLTriggerSourceVoiceRecognition":{"name":"SDLTriggerSourceVoiceRecognition","abstract":"@abstract Selection made via Voice session
"},"Constants.html#/c:@SDLTriggerSourceKeyboard":{"name":"SDLTriggerSourceKeyboard","abstract":"@abstract Selection made via Keyboard
"},"Constants.html#/c:@SDLUpdateModeCountUp":{"name":"SDLUpdateModeCountUp","abstract":"@abstract Starts the media clock timer counting upward, in increments of 1 second.
"},"Constants.html#/c:@SDLUpdateModeCountDown":{"name":"SDLUpdateModeCountDown","abstract":"@abstract Starts the media clock timer counting downward, in increments of 1 second.
"},"Constants.html#/c:@SDLUpdateModePause":{"name":"SDLUpdateModePause","abstract":"@abstract Pauses the media clock timer.
"},"Constants.html#/c:@SDLUpdateModeResume":{"name":"SDLUpdateModeResume","abstract":"@abstract Resumes the media clock timer. The timer resumes counting in whatever mode was in effect before pausing (i.e. COUNTUP or COUNTDOWN).
"},"Constants.html#/c:@SDLUpdateModeClear":{"name":"SDLUpdateModeClear","abstract":"@abstract Clear the media clock timer.
"},"Constants.html#/c:@SDLVehicleDataActiveStatusInactiveNotConfirmed":{"name":"SDLVehicleDataActiveStatusInactiveNotConfirmed","abstract":"@abstract SDLVehicleDataActiveStatus : Inactive not confirmed
"},"Constants.html#/c:@SDLVehicleDataActiveStatusInactiveConfirmed":{"name":"SDLVehicleDataActiveStatusInactiveConfirmed","abstract":"@abstract SDLVehicleDataActiveStatus : Inactive confirmed
"},"Constants.html#/c:@SDLVehicleDataActiveStatusActiveNotConfirmed":{"name":"SDLVehicleDataActiveStatusActiveNotConfirmed","abstract":"@abstract SDLVehicleDataActiveStatus : Active not confirmed
"},"Constants.html#/c:@SDLVehicleDataActiveStatusActiveConfirmed":{"name":"SDLVehicleDataActiveStatusActiveConfirmed","abstract":"@abstract SDLVehicleDataActiveStatus : Active confirmed
"},"Constants.html#/c:@SDLVehicleDataActiveStatusFault":{"name":"SDLVehicleDataActiveStatusFault","abstract":"@abstract SDLVehicleDataActiveStatus : Fault
"},"Constants.html#/c:@SDLVehicleDataEventStatusNoEvent":{"name":"SDLVehicleDataEventStatusNoEvent","abstract":"Undocumented
"},"Constants.html#/c:@SDLVehicleDataEventStatusNo":{"name":"SDLVehicleDataEventStatusNo","abstract":"Undocumented
"},"Constants.html#/c:@SDLVehicleDataEventStatusYes":{"name":"SDLVehicleDataEventStatusYes","abstract":"Undocumented
"},"Constants.html#/c:@SDLVehicleDataEventStatusNotSupported":{"name":"SDLVehicleDataEventStatusNotSupported","abstract":"@abstract Vehicle data event is not supported
"},"Constants.html#/c:@SDLVehicleDataEventStatusFault":{"name":"SDLVehicleDataEventStatusFault","abstract":"@abstract The SDLVehicleDataEventStatus instance with value of FAULT
"},"Constants.html#/c:@SDLVehicleDataNotificationStatusNotSupported":{"name":"SDLVehicleDataNotificationStatusNotSupported","abstract":"@abstract SDLVehicleDataNotificationStatus: NOT_SUPPORTED
"},"Constants.html#/c:@SDLVehicleDataNotificationStatusNormal":{"name":"SDLVehicleDataNotificationStatusNormal","abstract":"@abstract SDLVehicleDataNotificationStatus: NORMAL
"},"Constants.html#/c:@SDLVehicleDataNotificationStatusActive":{"name":"SDLVehicleDataNotificationStatusActive","abstract":"@abstract SDLVehicleDataNotificationStatus: ACTIVE
"},"Constants.html#/c:@SDLVehicleDataNotificationStatusNotUsed":{"name":"SDLVehicleDataNotificationStatusNotUsed","abstract":"@abstract SDLVehicleDataNotificationStatus: NOT_USED
"},"Constants.html#/c:@SDLVehicleDataResultCodeSuccess":{"name":"SDLVehicleDataResultCodeSuccess","abstract":"Individual vehicle data item / DTC / DID request or subscription successful
"},"Constants.html#/c:@SDLVehicleDataResultCodeTruncatedData":{"name":"SDLVehicleDataResultCodeTruncatedData","abstract":"DTC / DID request successful, however, not all active DTCs or full contents of DID location available
"},"Constants.html#/c:@SDLVehicleDataResultCodeDisallowed":{"name":"SDLVehicleDataResultCodeDisallowed","abstract":"This vehicle data item is not allowed for this app by SDL
"},"Constants.html#/c:@SDLVehicleDataResultCodeUserDisallowed":{"name":"SDLVehicleDataResultCodeUserDisallowed","abstract":"The user has not granted access to this type of vehicle data item at this time
"},"Constants.html#/c:@SDLVehicleDataResultCodeInvalidId":{"name":"SDLVehicleDataResultCodeInvalidId","abstract":"The ECU ID referenced is not a valid ID on the bus / system
"},"Constants.html#/c:@SDLVehicleDataResultCodeVehicleDataNotAvailable":{"name":"SDLVehicleDataResultCodeVehicleDataNotAvailable","abstract":"The requested vehicle data item / DTC / DID is not currently available or responding on the bus / system
"},"Constants.html#/c:@SDLVehicleDataResultCodeDataAlreadySubscribed":{"name":"SDLVehicleDataResultCodeDataAlreadySubscribed","abstract":"The vehicle data item is already subscribed
"},"Constants.html#/c:@SDLVehicleDataResultCodeDataNotSubscribed":{"name":"SDLVehicleDataResultCodeDataNotSubscribed","abstract":"The vehicle data item cannot be unsubscribed because it is not currently subscribed
"},"Constants.html#/c:@SDLVehicleDataResultCodeIgnored":{"name":"SDLVehicleDataResultCodeIgnored","abstract":"The request for this item is ignored because it is already in progress
"},"Constants.html#/c:@SDLVehicleDataStatusNoDataExists":{"name":"SDLVehicleDataStatusNoDataExists","abstract":"@abstract No data avaliable
"},"Constants.html#/c:@SDLVehicleDataStatusOff":{"name":"SDLVehicleDataStatusOff","abstract":"@abstract return SDLVehicleDataStatus: OFF
"},"Constants.html#/c:@SDLVehicleDataStatusOn":{"name":"SDLVehicleDataStatusOn","abstract":"@abstract return SDLVehicleDataStatus: ON
"},"Constants.html#/c:@SDLVehicleDataTypeGPS":{"name":"SDLVehicleDataTypeGPS","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_GPS
"},"Constants.html#/c:@SDLVehicleDataTypeSpeed":{"name":"SDLVehicleDataTypeSpeed","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_SPEED
"},"Constants.html#/c:@SDLVehicleDataTypeRPM":{"name":"SDLVehicleDataTypeRPM","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_RPM
"},"Constants.html#/c:@SDLVehicleDataTypeFuelLevel":{"name":"SDLVehicleDataTypeFuelLevel","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_FUELLEVEL
"},"Constants.html#/c:@SDLVehicleDataTypeFuelLevelState":{"name":"SDLVehicleDataTypeFuelLevelState","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_FUELLEVEL_STATE
"},"Constants.html#/c:@SDLVehicleDataTypeFuelConsumption":{"name":"SDLVehicleDataTypeFuelConsumption","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_FUELCONSUMPTION
"},"Constants.html#/c:@SDLVehicleDataTypeExternalTemperature":{"name":"SDLVehicleDataTypeExternalTemperature","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_EXTERNTEMP
"},"Constants.html#/c:@SDLVehicleDataTypeVIN":{"name":"SDLVehicleDataTypeVIN","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_VIN
"},"Constants.html#/c:@SDLVehicleDataTypePRNDL":{"name":"SDLVehicleDataTypePRNDL","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_PRNDL
"},"Constants.html#/c:@SDLVehicleDataTypeTirePressure":{"name":"SDLVehicleDataTypeTirePressure","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_TIREPRESSURE
"},"Constants.html#/c:@SDLVehicleDataTypeOdometer":{"name":"SDLVehicleDataTypeOdometer","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_ODOMETER
"},"Constants.html#/c:@SDLVehicleDataTypeBeltStatus":{"name":"SDLVehicleDataTypeBeltStatus","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_BELTSTATUS
"},"Constants.html#/c:@SDLVehicleDataTypeBodyInfo":{"name":"SDLVehicleDataTypeBodyInfo","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_BODYINFO
"},"Constants.html#/c:@SDLVehicleDataTypeDeviceStatus":{"name":"SDLVehicleDataTypeDeviceStatus","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_DEVICESTATUS
"},"Constants.html#/c:@SDLVehicleDataTypeECallInfo":{"name":"SDLVehicleDataTypeECallInfo","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_ECALLINFO
"},"Constants.html#/c:@SDLVehicleDataTypeAirbagStatus":{"name":"SDLVehicleDataTypeAirbagStatus","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_AIRBAGSTATUS
"},"Constants.html#/c:@SDLVehicleDataTypeEmergencyEvent":{"name":"SDLVehicleDataTypeEmergencyEvent","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_EMERGENCYEVENT
"},"Constants.html#/c:@SDLVehicleDataTypeClusterModeStatus":{"name":"SDLVehicleDataTypeClusterModeStatus","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_CLUSTERMODESTATUS
"},"Constants.html#/c:@SDLVehicleDataTypeMyKey":{"name":"SDLVehicleDataTypeMyKey","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_MYKEY
"},"Constants.html#/c:@SDLVehicleDataTypeBraking":{"name":"SDLVehicleDataTypeBraking","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_BRAKING
"},"Constants.html#/c:@SDLVehicleDataTypeWiperStatus":{"name":"SDLVehicleDataTypeWiperStatus","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_WIPERSTATUS
"},"Constants.html#/c:@SDLVehicleDataTypeHeadlampStatus":{"name":"SDLVehicleDataTypeHeadlampStatus","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_HEADLAMPSTATUS
"},"Constants.html#/c:@SDLVehicleDataTypeBatteryVoltage":{"name":"SDLVehicleDataTypeBatteryVoltage","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_BATTVOLTAGE
"},"Constants.html#/c:@SDLVehicleDataTypeEngineTorque":{"name":"SDLVehicleDataTypeEngineTorque","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_ENGINETORQUE
"},"Constants.html#/c:@SDLVehicleDataTypeAccelerationPedal":{"name":"SDLVehicleDataTypeAccelerationPedal","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_ACCPEDAL
"},"Constants.html#/c:@SDLVehicleDataTypeSteeringWheel":{"name":"SDLVehicleDataTypeSteeringWheel","abstract":"@abstract SDLVehicleDataType: VEHICLEDATA_STEERINGWHEEL
"},"Constants.html#/c:@SDLVentilationModeUpper":{"name":"SDLVentilationModeUpper","abstract":"@abstract A SDLDefrostZone with the value of UPPER
"},"Constants.html#/c:@SDLVentilationModeLower":{"name":"SDLVentilationModeLower","abstract":"@abstract A SDLDefrostZone with the value of LOWER
"},"Constants.html#/c:@SDLVentilationModeBoth":{"name":"SDLVentilationModeBoth","abstract":"@abstract A SDLDefrostZone with the value of BOTH
"},"Constants.html#/c:@SDLVentilationModeNone":{"name":"SDLVentilationModeNone","abstract":"@abstract A SDLDefrostZone with the value of NONE
"},"Constants.html#/c:@SDLVideoStreamingCodecH264":{"name":"SDLVideoStreamingCodecH264","abstract":"@abstract SDLVideoStreamingCodec : H264
"},"Constants.html#/c:@SDLVideoStreamingCodecH265":{"name":"SDLVideoStreamingCodecH265","abstract":"@abstract SDLVideoStreamingCodec : H265
"},"Constants.html#/c:@SDLVideoStreamingCodecTheora":{"name":"SDLVideoStreamingCodecTheora","abstract":"@abstract SDLVideoStreamingCodec : Theora
"},"Constants.html#/c:@SDLVideoStreamingCodecVP8":{"name":"SDLVideoStreamingCodecVP8","abstract":"@abstract SDLVideoStreamingCodec : VP8
"},"Constants.html#/c:@SDLVideoStreamingCodecVP9":{"name":"SDLVideoStreamingCodecVP9","abstract":"@abstract SDLVideoStreamingCodec : VP9
"},"Constants.html#/c:@SDLVideoStreamingProtocolRAW":{"name":"SDLVideoStreamingProtocolRAW","abstract":"@abstract SDLVideoStreamingProtocol : RAW
"},"Constants.html#/c:@SDLVideoStreamingProtocolRTP":{"name":"SDLVideoStreamingProtocolRTP","abstract":"@abstract SDLVideoStreamingProtocol : RTP
"},"Constants.html#/c:@SDLVideoStreamingProtocolRTSP":{"name":"SDLVideoStreamingProtocolRTSP","abstract":"@abstract SDLVideoStreamingProtocol : RTSP
"},"Constants.html#/c:@SDLVideoStreamingProtocolRTMP":{"name":"SDLVideoStreamingProtocolRTMP","abstract":"@abstract SDLVideoStreamingProtocol : RTMP
"},"Constants.html#/c:@SDLVideoStreamingProtocolWebM":{"name":"SDLVideoStreamingProtocolWebM","abstract":"@abstract SDLVideoStreamingProtocol : WebM
"},"Constants.html#/c:@SDLVRCapabilitiesText":{"name":"SDLVRCapabilitiesText","abstract":"@abstract The SDL platform is capable of recognizing spoken text in the current language.
"},"Constants.html#/c:@SDLWarningLightStatusOff":{"name":"SDLWarningLightStatusOff","abstract":"@abstract Warninglight Off
"},"Constants.html#/c:@SDLWarningLightStatusOn":{"name":"SDLWarningLightStatusOn","abstract":"@abstract Warninglight On
"},"Constants.html#/c:@SDLWarningLightStatusFlash":{"name":"SDLWarningLightStatusFlash","abstract":"@abstract Warninglight is flashing
"},"Constants.html#/c:@SDLWarningLightStatusNotUsed":{"name":"SDLWarningLightStatusNotUsed","abstract":"@abstract Not used
"},"Constants.html#/c:@SDLWayPointTypeAll":{"name":"SDLWayPointTypeAll","abstract":"Undocumented
"},"Constants.html#/c:@SDLWayPointTypeDestination":{"name":"SDLWayPointTypeDestination","abstract":"Undocumented
"},"Constants.html#/c:@SDLWiperStatusOff":{"name":"SDLWiperStatusOff","abstract":"@abstract SDLWiperStatus: OFF
"},"Constants.html#/c:@SDLWiperStatusAutomaticOff":{"name":"SDLWiperStatusAutomaticOff","abstract":"@abstract SDLWiperStatus: AUTO_OFF
"},"Constants.html#/c:@SDLWiperStatusOffMoving":{"name":"SDLWiperStatusOffMoving","abstract":"@abstract SDLWiperStatus: OFF_MOVING
"},"Constants.html#/c:@SDLWiperStatusManualIntervalOff":{"name":"SDLWiperStatusManualIntervalOff","abstract":"@abstract SDLWiperStatus: MAN_INT_OFF
"},"Constants.html#/c:@SDLWiperStatusManualIntervalOn":{"name":"SDLWiperStatusManualIntervalOn","abstract":"@abstract SDLWiperStatus: MAN_INT_ON
"},"Constants.html#/c:@SDLWiperStatusManualLow":{"name":"SDLWiperStatusManualLow","abstract":"@abstract SDLWiperStatus: MAN_LOW
"},"Constants.html#/c:@SDLWiperStatusManualHigh":{"name":"SDLWiperStatusManualHigh","abstract":"@abstract SDLWiperStatus: MAN_HIGH
"},"Constants.html#/c:@SDLWiperStatusManualFlick":{"name":"SDLWiperStatusManualFlick","abstract":"@abstract SDLWiperStatus: MAN_FLICK
"},"Constants.html#/c:@SDLWiperStatusWash":{"name":"SDLWiperStatusWash","abstract":"@abstract SDLWiperStatus: WASH
"},"Constants.html#/c:@SDLWiperStatusAutomaticLow":{"name":"SDLWiperStatusAutomaticLow","abstract":"@abstract SDLWiperStatus: AUTO_LOW
"},"Constants.html#/c:@SDLWiperStatusAutomaticHigh":{"name":"SDLWiperStatusAutomaticHigh","abstract":"@abstract SDLWiperStatus: AUTO_HIGH
"},"Constants.html#/c:@SDLWiperStatusCourtesyWipe":{"name":"SDLWiperStatusCourtesyWipe","abstract":"@abstract SDLWiperStatus: COURTESYWIPE
"},"Constants.html#/c:@SDLWiperStatusAutomaticAdjust":{"name":"SDLWiperStatusAutomaticAdjust","abstract":"@abstract SDLWiperStatus: AUTO_ADJUST
"},"Constants.html#/c:@SDLWiperStatusStalled":{"name":"SDLWiperStatusStalled","abstract":"@abstract SDLWiperStatus: STALLED
"},"Constants.html#/c:@SDLWiperStatusNoDataExists":{"name":"SDLWiperStatusNoDataExists","abstract":"@abstract SDLWiperStatus: NO_DATA_EXISTS
"},"Constants.html#/c:@SmartDeviceLinkVersionNumber":{"name":"SmartDeviceLinkVersionNumber","abstract":"Undocumented
"},"Constants.html#/c:@SmartDeviceLinkVersionString":{"name":"SmartDeviceLinkVersionString","abstract":"Undocumented
"},"Classes/SDLVRHelpItem.html#/c:objc(cs)SDLVRHelpItem(im)initWithText:image:":{"name":"-initWithText:image:","abstract":"Undocumented
","parent_name":"SDLVRHelpItem"},"Classes/SDLVRHelpItem.html#/c:objc(cs)SDLVRHelpItem(im)initWithText:image:position:":{"name":"-initWithText:image:position:","abstract":"Undocumented
","parent_name":"SDLVRHelpItem"},"Classes/SDLVRHelpItem.html#/c:objc(cs)SDLVRHelpItem(py)text":{"name":"text","abstract":"Undocumented
","parent_name":"SDLVRHelpItem"},"Classes/SDLVRHelpItem.html#/c:objc(cs)SDLVRHelpItem(py)image":{"name":"image","abstract":"Undocumented
","parent_name":"SDLVRHelpItem"},"Classes/SDLVRHelpItem.html#/c:objc(cs)SDLVRHelpItem(py)position":{"name":"position","abstract":"Undocumented
","parent_name":"SDLVRHelpItem"},"Classes/SDLVideoStreamingFormat.html#/c:objc(cs)SDLVideoStreamingFormat(py)protocol":{"name":"protocol","abstract":"@abstract Protocol type, see VideoStreamingProtocol, mandatory
","parent_name":"SDLVideoStreamingFormat"},"Classes/SDLVideoStreamingFormat.html#/c:objc(cs)SDLVideoStreamingFormat(py)codec":{"name":"codec","abstract":"@abstract Codec type, see VideoStreamingCodec, mandatory
","parent_name":"SDLVideoStreamingFormat"},"Classes/SDLVideoStreamingFormat.html#/c:objc(cs)SDLVideoStreamingFormat(im)initWithCodec:protocol:":{"name":"-initWithCodec:protocol:","abstract":"Undocumented
","parent_name":"SDLVideoStreamingFormat"},"Classes/SDLVideoStreamingCapability.html#/c:objc(cs)SDLVideoStreamingCapability(im)initWithPreferredResolution:maxBitrate:supportedFormats:hapticDataSupported:":{"name":"-initWithPreferredResolution:maxBitrate:supportedFormats:hapticDataSupported:","abstract":"Undocumented
","parent_name":"SDLVideoStreamingCapability"},"Classes/SDLVideoStreamingCapability.html#/c:objc(cs)SDLVideoStreamingCapability(py)preferredResolution":{"name":"preferredResolution","abstract":"@abstract The preferred resolution of a video stream for decoding and rendering on HMI, optional
","parent_name":"SDLVideoStreamingCapability"},"Classes/SDLVideoStreamingCapability.html#/c:objc(cs)SDLVideoStreamingCapability(py)maxBitrate":{"name":"maxBitrate","abstract":"@abstract The maximum bitrate of video stream that is supported, in kbps, optional
","parent_name":"SDLVideoStreamingCapability"},"Classes/SDLVideoStreamingCapability.html#/c:objc(cs)SDLVideoStreamingCapability(py)supportedFormats":{"name":"supportedFormats","abstract":"@abstract Detailed information on each format supported by this system, in its preferred order, optional
","parent_name":"SDLVideoStreamingCapability"},"Classes/SDLVideoStreamingCapability.html#/c:objc(cs)SDLVideoStreamingCapability(py)hapticSpatialDataSupported":{"name":"hapticSpatialDataSupported","abstract":"True if the system can utilize the haptic spatial data from the source being streamed.
","parent_name":"SDLVideoStreamingCapability"},"Classes/SDLVehicleType.html#/c:objc(cs)SDLVehicleType(py)make":{"name":"make","abstract":"@abstract The make of the vehicle
","parent_name":"SDLVehicleType"},"Classes/SDLVehicleType.html#/c:objc(cs)SDLVehicleType(py)model":{"name":"model","abstract":"@abstract The model of the vehicle
","parent_name":"SDLVehicleType"},"Classes/SDLVehicleType.html#/c:objc(cs)SDLVehicleType(py)modelYear":{"name":"modelYear","abstract":"@abstract The model year of the vehicle
","parent_name":"SDLVehicleType"},"Classes/SDLVehicleType.html#/c:objc(cs)SDLVehicleType(py)trim":{"name":"trim","abstract":"@abstract The trim of the vehicle
","parent_name":"SDLVehicleType"},"Classes/SDLVehicleDataResult.html#/c:objc(cs)SDLVehicleDataResult(py)dataType":{"name":"dataType","abstract":"Undocumented
","parent_name":"SDLVehicleDataResult"},"Classes/SDLVehicleDataResult.html#/c:objc(cs)SDLVehicleDataResult(py)resultCode":{"name":"resultCode","abstract":"Undocumented
","parent_name":"SDLVehicleDataResult"},"Classes/SDLUpdateTurnList.html#/c:objc(cs)SDLUpdateTurnList(im)initWithTurnList:softButtons:":{"name":"-initWithTurnList:softButtons:","abstract":"Undocumented
","parent_name":"SDLUpdateTurnList"},"Classes/SDLUpdateTurnList.html#/c:objc(cs)SDLUpdateTurnList(py)turnList":{"name":"turnList","abstract":"Optional, SDLTurn, 1 - 100 entries
","parent_name":"SDLUpdateTurnList"},"Classes/SDLUpdateTurnList.html#/c:objc(cs)SDLUpdateTurnList(py)softButtons":{"name":"softButtons","abstract":"Required, SDLSoftButton, 0 - 1 Entries
","parent_name":"SDLUpdateTurnList"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)gps":{"name":"gps","abstract":"@abstract A SDLVehicleDataResult* value. See GPSData.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)speed":{"name":"speed","abstract":"@abstract A SDLVehicleDataResult* value. The vehicle speed in kilometers per hour.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)rpm":{"name":"rpm","abstract":"@abstract A SDLVehicleDataResult* value. The number of revolutions per minute of the engine.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)fuelLevel":{"name":"fuelLevel","abstract":"@abstract A SDLVehicleDataResult* value. The fuel level in the tank (percentage)
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)fuelLevel_State":{"name":"fuelLevel_State","abstract":"@abstract A SDLVehicleDataResult* value. The fuel level state.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)instantFuelConsumption":{"name":"instantFuelConsumption","abstract":"@abstract A SDLVehicleDataResult* value. The instantaneous fuel consumption in microlitres.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)externalTemperature":{"name":"externalTemperature","abstract":"@abstract A SDLVehicleDataResult* value. The external temperature in degrees celsius.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)prndl":{"name":"prndl","abstract":"@abstract A SDLVehicleDataResult* value. See PRNDL.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)tirePressure":{"name":"tirePressure","abstract":"@abstract A SDLVehicleDataResult* value. See TireStatus.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)odometer":{"name":"odometer","abstract":"@abstract A SDLVehicleDataResult* value. Odometer in km.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)beltStatus":{"name":"beltStatus","abstract":"@abstract A SDLVehicleDataResult* value. The status of the seat belts.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)bodyInformation":{"name":"bodyInformation","abstract":"@abstract A SDLVehicleDataResult* value. The body information including power modes.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)deviceStatus":{"name":"deviceStatus","abstract":"@abstract A SDLVehicleDataResult* value. The device status including signal and battery strength.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)driverBraking":{"name":"driverBraking","abstract":"@abstract A SDLVehicleDataResult* value. The status of the brake pedal.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)wiperStatus":{"name":"wiperStatus","abstract":"@abstract A SDLVehicleDataResult* value. The status of the wipers.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)headLampStatus":{"name":"headLampStatus","abstract":"@abstract A SDLVehicleDataResult* value. Status of the head lamps.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)engineTorque":{"name":"engineTorque","abstract":"@abstract A SDLVehicleDataResult* value. Torque value for engine (in Nm) on non-diesel variants.
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)accPedalPosition":{"name":"accPedalPosition","abstract":"@abstract A SDLVehicleDataResult* value. Accelerator pedal position (percentage depressed)
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)steeringWheelAngle":{"name":"steeringWheelAngle","abstract":"@abstract A SDLVehicleDataResult* value. Current angle of the steering wheel (in deg)
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)eCallInfo":{"name":"eCallInfo","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)airbagStatus":{"name":"airbagStatus","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)emergencyEvent":{"name":"emergencyEvent","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)clusterModes":{"name":"clusterModes","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleDataResponse.html#/c:objc(cs)SDLUnsubscribeVehicleDataResponse(py)myKey":{"name":"myKey","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleDataResponse"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(im)initWithAccelerationPedalPosition:airbagStatus:beltStatus:bodyInformation:clusterModeStatus:deviceStatus:driverBraking:eCallInfo:emergencyEvent:engineTorque:externalTemperature:fuelLevel:fuelLevelState:gps:headLampStatus:instantFuelConsumption:myKey:odometer:prndl:rpm:speed:steeringWheelAngle:tirePressure:wiperStatus:":{"name":"-initWithAccelerationPedalPosition:airbagStatus:beltStatus:bodyInformation:clusterModeStatus:deviceStatus:driverBraking:eCallInfo:emergencyEvent:engineTorque:externalTemperature:fuelLevel:fuelLevelState:gps:headLampStatus:instantFuelConsumption:myKey:odometer:prndl:rpm:speed:steeringWheelAngle:tirePressure:wiperStatus:","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)gps":{"name":"gps","abstract":"@abstract A boolean value. If true, unsubscribes Gps data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)speed":{"name":"speed","abstract":"@abstract A boolean value. If true, unsubscribes speed data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)rpm":{"name":"rpm","abstract":"@abstract A boolean value. If true, unsubscribe data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)fuelLevel":{"name":"fuelLevel","abstract":"@abstract A boolean value. If true, unsubscribes FuelLevel data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)fuelLevel_State":{"name":"fuelLevel_State","abstract":"@abstract A boolean value. If true, unsubscribes fuelLevel_State data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)instantFuelConsumption":{"name":"instantFuelConsumption","abstract":"@abstract A boolean value. If true, unsubscribes instantFuelConsumption data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)externalTemperature":{"name":"externalTemperature","abstract":"@abstract A boolean value. If true, unsubscribes externalTemperature data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)prndl":{"name":"prndl","abstract":"@abstract A boolean value. If true, unsubscribes Currently selected gear data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)tirePressure":{"name":"tirePressure","abstract":"@abstract A boolean value. If true, unsubscribes tire pressure status data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)odometer":{"name":"odometer","abstract":"@abstract A boolean value. If true, unsubscribes odometer data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)beltStatus":{"name":"beltStatus","abstract":"@abstract A boolean value. If true, unsubscribes belt Status data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)bodyInformation":{"name":"bodyInformation","abstract":"@abstract A boolean value. If true, unsubscribes body Information data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)deviceStatus":{"name":"deviceStatus","abstract":"@abstract A boolean value. If true, unsubscribes device Status data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)driverBraking":{"name":"driverBraking","abstract":"@abstract A boolean value. If true, unsubscribes driver Braking data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)wiperStatus":{"name":"wiperStatus","abstract":"@abstract A boolean value. If true, unsubscribes wiper Status data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)headLampStatus":{"name":"headLampStatus","abstract":"@abstract A boolean value. If true, unsubscribes Head Lamp Status data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)engineTorque":{"name":"engineTorque","abstract":"@abstract A boolean value. If true, unsubscribes Engine Torque data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)accPedalPosition":{"name":"accPedalPosition","abstract":"@abstract A boolean value. If true, unsubscribes accPedalPosition data
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)steeringWheelAngle":{"name":"steeringWheelAngle","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)eCallInfo":{"name":"eCallInfo","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)airbagStatus":{"name":"airbagStatus","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)emergencyEvent":{"name":"emergencyEvent","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)clusterModeStatus":{"name":"clusterModeStatus","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeVehicleData.html#/c:objc(cs)SDLUnsubscribeVehicleData(py)myKey":{"name":"myKey","abstract":"Undocumented
","parent_name":"SDLUnsubscribeVehicleData"},"Classes/SDLUnsubscribeButton.html#/c:objc(cs)SDLUnsubscribeButton(im)initWithButtonName:":{"name":"-initWithButtonName:","abstract":"Undocumented
","parent_name":"SDLUnsubscribeButton"},"Classes/SDLUnsubscribeButton.html#/c:objc(cs)SDLUnsubscribeButton(py)buttonName":{"name":"buttonName","abstract":"@abstract A name of the button to unsubscribe from","parent_name":"SDLUnsubscribeButton"},"Classes/SDLTurn.html#/c:objc(cs)SDLTurn(im)initWithNavigationText:turnIcon:":{"name":"-initWithNavigationText:turnIcon:","abstract":"
Undocumented
","parent_name":"SDLTurn"},"Classes/SDLTurn.html#/c:objc(cs)SDLTurn(py)navigationText":{"name":"navigationText","abstract":"Undocumented
","parent_name":"SDLTurn"},"Classes/SDLTurn.html#/c:objc(cs)SDLTurn(py)turnIcon":{"name":"turnIcon","abstract":"Undocumented
","parent_name":"SDLTurn"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(py)touchEventDelegate":{"name":"touchEventDelegate","abstract":"Notified of processed touches such as pinches, pans, and taps
","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(py)touchEventHandler":{"name":"touchEventHandler","abstract":"@abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(py)tapDistanceThreshold":{"name":"tapDistanceThreshold","abstract":"
Distance between two taps on the screen, in the head unit’s coordinate system, used for registering double-tap callbacks.
","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(py)tapTimeThreshold":{"name":"tapTimeThreshold","abstract":"@abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(py)movementTimeThreshold":{"name":"movementTimeThreshold","abstract":"
@abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(py)touchEnabled":{"name":"touchEnabled","abstract":"
@abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(im)cancelPendingTouches":{"name":"-cancelPendingTouches","abstract":"
@abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(im)init":{"name":"-init","abstract":"
Undocumented
","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(im)initWithHitTester:":{"name":"-initWithHitTester:","abstract":"Initialize a touch manager with a hit tester if available
","parent_name":"SDLTouchManager"},"Classes/SDLTouchEventCapabilities.html#/c:objc(cs)SDLTouchEventCapabilities(py)pressAvailable":{"name":"pressAvailable","abstract":"Undocumented
","parent_name":"SDLTouchEventCapabilities"},"Classes/SDLTouchEventCapabilities.html#/c:objc(cs)SDLTouchEventCapabilities(py)multiTouchAvailable":{"name":"multiTouchAvailable","abstract":"Undocumented
","parent_name":"SDLTouchEventCapabilities"},"Classes/SDLTouchEventCapabilities.html#/c:objc(cs)SDLTouchEventCapabilities(py)doublePressAvailable":{"name":"doublePressAvailable","abstract":"Undocumented
","parent_name":"SDLTouchEventCapabilities"},"Classes/SDLTouchEvent.html#/c:objc(cs)SDLTouchEvent(py)touchEventId":{"name":"touchEventId","abstract":"A touch’s unique identifier. The application can track the current touch events by id.","parent_name":"SDLTouchEvent"},"Classes/SDLTouchEvent.html#/c:objc(cs)SDLTouchEvent(py)timeStamp":{"name":"timeStamp","abstract":"
The time that the touch was recorded. This number can the time since the beginning of the session or something else as long as the units are in milliseconds.
","parent_name":"SDLTouchEvent"},"Classes/SDLTouchEvent.html#/c:objc(cs)SDLTouchEvent(py)coord":{"name":"coord","abstract":"Mandatory, array size 1-1000, contains SDLTouchCoord
","parent_name":"SDLTouchEvent"},"Classes/SDLTouchCoord.html#/c:objc(cs)SDLTouchCoord(py)x":{"name":"x","abstract":"Undocumented
","parent_name":"SDLTouchCoord"},"Classes/SDLTouchCoord.html#/c:objc(cs)SDLTouchCoord(py)y":{"name":"y","abstract":"Undocumented
","parent_name":"SDLTouchCoord"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(im)initWithTouchEvent:":{"name":"-initWithTouchEvent:","abstract":"@abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)identifier":{"name":"identifier","abstract":"
@abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)location":{"name":"location","abstract":"
@abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)timeStamp":{"name":"timeStamp","abstract":"
@abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)isFirstFinger":{"name":"isFirstFinger","abstract":"
@abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)isSecondFinger":{"name":"isSecondFinger","abstract":"
@abstract","parent_name":"SDLTouch"},"Classes/SDLTireStatus.html#/c:objc(cs)SDLTireStatus(py)pressureTelltale":{"name":"pressureTelltale","abstract":"
Undocumented
","parent_name":"SDLTireStatus"},"Classes/SDLTireStatus.html#/c:objc(cs)SDLTireStatus(py)leftFront":{"name":"leftFront","abstract":"Undocumented
","parent_name":"SDLTireStatus"},"Classes/SDLTireStatus.html#/c:objc(cs)SDLTireStatus(py)rightFront":{"name":"rightFront","abstract":"Undocumented
","parent_name":"SDLTireStatus"},"Classes/SDLTireStatus.html#/c:objc(cs)SDLTireStatus(py)leftRear":{"name":"leftRear","abstract":"Undocumented
","parent_name":"SDLTireStatus"},"Classes/SDLTireStatus.html#/c:objc(cs)SDLTireStatus(py)rightRear":{"name":"rightRear","abstract":"Undocumented
","parent_name":"SDLTireStatus"},"Classes/SDLTireStatus.html#/c:objc(cs)SDLTireStatus(py)innerLeftRear":{"name":"innerLeftRear","abstract":"Undocumented
","parent_name":"SDLTireStatus"},"Classes/SDLTireStatus.html#/c:objc(cs)SDLTireStatus(py)innerRightRear":{"name":"innerRightRear","abstract":"Undocumented
","parent_name":"SDLTireStatus"},"Classes/SDLTextField.html#/c:objc(cs)SDLTextField(py)name":{"name":"name","abstract":"@abstract The enumeration identifying the field.
","parent_name":"SDLTextField"},"Classes/SDLTextField.html#/c:objc(cs)SDLTextField(py)characterSet":{"name":"characterSet","abstract":"@abstract The character set that is supported in this field.
","parent_name":"SDLTextField"},"Classes/SDLTextField.html#/c:objc(cs)SDLTextField(py)width":{"name":"width","abstract":"@abstract The number of characters in one row of this field.
","parent_name":"SDLTextField"},"Classes/SDLTextField.html#/c:objc(cs)SDLTextField(py)rows":{"name":"rows","abstract":"@abstract The number of rows for this text field.
","parent_name":"SDLTextField"},"Classes/SDLTemperature.html#/c:objc(cs)SDLTemperature(im)initWithUnit:value:":{"name":"-initWithUnit:value:","abstract":"Undocumented
","parent_name":"SDLTemperature"},"Classes/SDLTemperature.html#/c:objc(cs)SDLTemperature(py)unit":{"name":"unit","abstract":"@abstract Temperature Unit
","parent_name":"SDLTemperature"},"Classes/SDLTemperature.html#/c:objc(cs)SDLTemperature(py)value":{"name":"value","abstract":"@abstract Temperature Value in TemperatureUnit specified unit. Range depends on OEM and is not checked by SDL
","parent_name":"SDLTemperature"},"Classes/SDLTTSChunk.html#/c:objc(cs)SDLTTSChunk(im)initWithText:type:":{"name":"-initWithText:type:","abstract":"Undocumented
","parent_name":"SDLTTSChunk"},"Classes/SDLTTSChunk.html#/c:objc(cs)SDLTTSChunk(cm)textChunksFromString:":{"name":"+textChunksFromString:","abstract":"Undocumented
","parent_name":"SDLTTSChunk"},"Classes/SDLTTSChunk.html#/c:objc(cs)SDLTTSChunk(cm)sapiChunksFromString:":{"name":"+sapiChunksFromString:","abstract":"Undocumented
","parent_name":"SDLTTSChunk"},"Classes/SDLTTSChunk.html#/c:objc(cs)SDLTTSChunk(cm)lhPlusChunksFromString:":{"name":"+lhPlusChunksFromString:","abstract":"Undocumented
","parent_name":"SDLTTSChunk"},"Classes/SDLTTSChunk.html#/c:objc(cs)SDLTTSChunk(cm)prerecordedChunksFromString:":{"name":"+prerecordedChunksFromString:","abstract":"Undocumented
","parent_name":"SDLTTSChunk"},"Classes/SDLTTSChunk.html#/c:objc(cs)SDLTTSChunk(cm)silenceChunks":{"name":"+silenceChunks","abstract":"Undocumented
","parent_name":"SDLTTSChunk"},"Classes/SDLTTSChunk.html#/c:objc(cs)SDLTTSChunk(py)text":{"name":"text","abstract":"@abstract Text to be spoken, or a phoneme specification, or the name of a pre-recorded sound. The contents of this field are indicated by the type
field.
@abstract The type of information in the text
field (e.g. phrase to be spoken, phoneme specification, name of pre-recorded sound).
Undocumented
","parent_name":"SDLTCPTransport"},"Classes/SDLTCPTransport.html#/c:objc(cs)SDLTCPTransport(py)hostName":{"name":"hostName","abstract":"Undocumented
","parent_name":"SDLTCPTransport"},"Classes/SDLTCPTransport.html#/c:objc(cs)SDLTCPTransport(py)portNumber":{"name":"portNumber","abstract":"Undocumented
","parent_name":"SDLTCPTransport"},"Classes/SDLSystemCapability.html#/c:objc(cs)SDLSystemCapability(im)initWithNavigationCapability:":{"name":"-initWithNavigationCapability:","abstract":"Undocumented
","parent_name":"SDLSystemCapability"},"Classes/SDLSystemCapability.html#/c:objc(cs)SDLSystemCapability(im)initWithPhoneCapability:":{"name":"-initWithPhoneCapability:","abstract":"Undocumented
","parent_name":"SDLSystemCapability"},"Classes/SDLSystemCapability.html#/c:objc(cs)SDLSystemCapability(im)initWithVideoStreamingCapability:":{"name":"-initWithVideoStreamingCapability:","abstract":"Undocumented
","parent_name":"SDLSystemCapability"},"Classes/SDLSystemCapability.html#/c:objc(cs)SDLSystemCapability(im)initWithRemoteControlCapability:":{"name":"-initWithRemoteControlCapability:","abstract":"Undocumented
","parent_name":"SDLSystemCapability"},"Classes/SDLSystemCapability.html#/c:objc(cs)SDLSystemCapability(py)systemCapabilityType":{"name":"systemCapabilityType","abstract":"Undocumented
","parent_name":"SDLSystemCapability"},"Classes/SDLSystemCapability.html#/c:objc(cs)SDLSystemCapability(py)navigationCapability":{"name":"navigationCapability","abstract":"Undocumented
","parent_name":"SDLSystemCapability"},"Classes/SDLSystemCapability.html#/c:objc(cs)SDLSystemCapability(py)phoneCapability":{"name":"phoneCapability","abstract":"Undocumented
","parent_name":"SDLSystemCapability"},"Classes/SDLSystemCapability.html#/c:objc(cs)SDLSystemCapability(py)videoStreamingCapability":{"name":"videoStreamingCapability","abstract":"Undocumented
","parent_name":"SDLSystemCapability"},"Classes/SDLSystemCapability.html#/c:objc(cs)SDLSystemCapability(py)remoteControlCapability":{"name":"remoteControlCapability","abstract":"Undocumented
","parent_name":"SDLSystemCapability"},"Classes/SDLSyncMsgVersion.html#/c:objc(cs)SDLSyncMsgVersion(im)initWithMajorVersion:minorVersion:patchVersion:":{"name":"-initWithMajorVersion:minorVersion:patchVersion:","abstract":"Undocumented
","parent_name":"SDLSyncMsgVersion"},"Classes/SDLSyncMsgVersion.html#/c:objc(cs)SDLSyncMsgVersion(py)majorVersion":{"name":"majorVersion","abstract":"@abstract The major version indicates versions that is not-compatible to previous versions
","parent_name":"SDLSyncMsgVersion"},"Classes/SDLSyncMsgVersion.html#/c:objc(cs)SDLSyncMsgVersion(py)minorVersion":{"name":"minorVersion","abstract":"@abstract The minor version indicates a change to a previous version that should still allow to be run on an older version (with limited functionality)
","parent_name":"SDLSyncMsgVersion"},"Classes/SDLSyncMsgVersion.html#/c:objc(cs)SDLSyncMsgVersion(py)patchVersion":{"name":"patchVersion","abstract":"@abstract Optional, allows backward-compatible fixes to the API without increasing the minor version of the interface
","parent_name":"SDLSyncMsgVersion"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)gps":{"name":"gps","abstract":"@abstract A SDLVehicleDataResult* value. See GPSData.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)speed":{"name":"speed","abstract":"@abstract A SDLVehicleDataResult* value. The vehicle speed in kilometers per hour.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)rpm":{"name":"rpm","abstract":"@abstract A SDLVehicleDataResult* value. The number of revolutions per minute of the engine.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)fuelLevel":{"name":"fuelLevel","abstract":"@abstract A SDLVehicleDataResult* value. The fuel level in the tank (percentage)
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)fuelLevel_State":{"name":"fuelLevel_State","abstract":"@abstract A SDLVehicleDataResult* value. The fuel level state.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)instantFuelConsumption":{"name":"instantFuelConsumption","abstract":"@abstract A SDLVehicleDataResult* value. The instantaneous fuel consumption in microlitres.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)externalTemperature":{"name":"externalTemperature","abstract":"@abstract A SDLVehicleDataResult* value. The external temperature in degrees celsius.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)prndl":{"name":"prndl","abstract":"@abstract A SDLVehicleDataResult* value. See PRNDL.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)tirePressure":{"name":"tirePressure","abstract":"@abstract A SDLVehicleDataResult* value. See TireStatus.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)odometer":{"name":"odometer","abstract":"@abstract A SDLVehicleDataResult* value. Odometer in km.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)beltStatus":{"name":"beltStatus","abstract":"@abstract A SDLVehicleDataResult* value. The status of the seat belts.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)bodyInformation":{"name":"bodyInformation","abstract":"@abstract A SDLVehicleDataResult* value. The body information including power modes.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)deviceStatus":{"name":"deviceStatus","abstract":"@abstract A SDLVehicleDataResult* value. The device status including signal and battery strength.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)driverBraking":{"name":"driverBraking","abstract":"@abstract A SDLVehicleDataResult* value. The status of the brake pedal.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)wiperStatus":{"name":"wiperStatus","abstract":"@abstract A SDLVehicleDataResult* value. The status of the wipers.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)headLampStatus":{"name":"headLampStatus","abstract":"@abstract A SDLVehicleDataResult* value. Status of the head lamps.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)engineTorque":{"name":"engineTorque","abstract":"@abstract A SDLVehicleDataResult* value. Torque value for engine (in Nm) on non-diesel variants.
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)accPedalPosition":{"name":"accPedalPosition","abstract":"@abstract A SDLVehicleDataResult* value. Accelerator pedal position (percentage depressed)
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)steeringWheelAngle":{"name":"steeringWheelAngle","abstract":"@abstract A SDLVehicleDataResult* value. Current angle of the steering wheel (in deg)
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)eCallInfo":{"name":"eCallInfo","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)airbagStatus":{"name":"airbagStatus","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)emergencyEvent":{"name":"emergencyEvent","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)clusterModes":{"name":"clusterModes","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleDataResponse.html#/c:objc(cs)SDLSubscribeVehicleDataResponse(py)myKey":{"name":"myKey","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleDataResponse"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(im)initWithAccelerationPedalPosition:airbagStatus:beltStatus:bodyInformation:clusterModeStatus:deviceStatus:driverBraking:eCallInfo:emergencyEvent:engineTorque:externalTemperature:fuelLevel:fuelLevelState:gps:headLampStatus:instantFuelConsumption:myKey:odometer:prndl:rpm:speed:steeringWheelAngle:tirePressure:wiperStatus:":{"name":"-initWithAccelerationPedalPosition:airbagStatus:beltStatus:bodyInformation:clusterModeStatus:deviceStatus:driverBraking:eCallInfo:emergencyEvent:engineTorque:externalTemperature:fuelLevel:fuelLevelState:gps:headLampStatus:instantFuelConsumption:myKey:odometer:prndl:rpm:speed:steeringWheelAngle:tirePressure:wiperStatus:","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)gps":{"name":"gps","abstract":"@abstract A boolean value. If true, subscribes Gps data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)speed":{"name":"speed","abstract":"@abstract A boolean value. If true, subscribes speed data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)rpm":{"name":"rpm","abstract":"@abstract A boolean value. If true, subscribes rpm data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)fuelLevel":{"name":"fuelLevel","abstract":"@abstract A boolean value. If true, subscribes FuelLevel data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)fuelLevel_State":{"name":"fuelLevel_State","abstract":"@abstract A boolean value. If true, subscribes fuelLevel_State data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)instantFuelConsumption":{"name":"instantFuelConsumption","abstract":"@abstract A boolean value. If true, subscribes instantFuelConsumption data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)externalTemperature":{"name":"externalTemperature","abstract":"@abstract A boolean value. If true, subscribes externalTemperature data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)prndl":{"name":"prndl","abstract":"@abstract A boolean value. If true, subscribes Currently selected gear data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)tirePressure":{"name":"tirePressure","abstract":"@abstract A boolean value. If true, subscribes tire pressure status data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)odometer":{"name":"odometer","abstract":"@abstract A boolean value. If true, subscribes odometer data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)beltStatus":{"name":"beltStatus","abstract":"@abstract A boolean value. If true, subscribes belt Status data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)bodyInformation":{"name":"bodyInformation","abstract":"@abstract A boolean value. If true, subscribes body Information data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)deviceStatus":{"name":"deviceStatus","abstract":"@abstract A boolean value. If true, subscribes device Status data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)driverBraking":{"name":"driverBraking","abstract":"@abstract A boolean value. If true, subscribes driver Braking data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)wiperStatus":{"name":"wiperStatus","abstract":"@abstract A boolean value. If true, subscribes wiper Status data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)headLampStatus":{"name":"headLampStatus","abstract":"@abstract A boolean value. If true, subscribes Head Lamp Status data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)engineTorque":{"name":"engineTorque","abstract":"@abstract A boolean value. If true, subscribes Engine Torque data
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)accPedalPosition":{"name":"accPedalPosition","abstract":"@abstract A boolean value. If true, means the accPedalPosition data has been","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)steeringWheelAngle":{"name":"steeringWheelAngle","abstract":"
@abstract A boolean value. If true, means the steeringWheelAngle data has been","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)eCallInfo":{"name":"eCallInfo","abstract":"
Undocumented
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)airbagStatus":{"name":"airbagStatus","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)emergencyEvent":{"name":"emergencyEvent","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)clusterModeStatus":{"name":"clusterModeStatus","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)myKey":{"name":"myKey","abstract":"Undocumented
","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeButton.html#/c:objc(cs)SDLSubscribeButton(im)initWithHandler:":{"name":"-initWithHandler:","abstract":"Construct a SDLSubscribeButton with a handler callback when an event occurs.
","parent_name":"SDLSubscribeButton"},"Classes/SDLSubscribeButton.html#/c:objc(cs)SDLSubscribeButton(im)initWithButtonName:handler:":{"name":"-initWithButtonName:handler:","abstract":"Undocumented
","parent_name":"SDLSubscribeButton"},"Classes/SDLSubscribeButton.html#/c:objc(cs)SDLSubscribeButton(py)handler":{"name":"handler","abstract":"A handler that will let you know when the button you subscribed to is selected.
","parent_name":"SDLSubscribeButton"},"Classes/SDLSubscribeButton.html#/c:objc(cs)SDLSubscribeButton(py)buttonName":{"name":"buttonName","abstract":"@abstract The name of the button to subscribe to","parent_name":"SDLSubscribeButton"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)touchManager":{"name":"touchManager","abstract":"
Touch Manager responsible for providing touch event notifications.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)focusableItemManager":{"name":"focusableItemManager","abstract":"A haptic interface that can be updated to reparse views within the window you’ve provided. Send a SDLDidUpdateProjectionView
notification or call the updateInterfaceLayout
method to reparse. The output
of this haptic interface occurs in the touchManager
property where it will call the delegate.
Whether or not video streaming is supported
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)videoConnected":{"name":"videoConnected","abstract":"Whether or not the video session is connected.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)videoEncrypted":{"name":"videoEncrypted","abstract":"Whether or not the video session is encrypted. This may be different than the requestedEncryptionType.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)audioConnected":{"name":"audioConnected","abstract":"Whether or not the audio session is connected.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)audioEncrypted":{"name":"audioEncrypted","abstract":"Whether or not the audio session is encrypted. This may be different than the requestedEncryptionType.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)videoStreamingPaused":{"name":"videoStreamingPaused","abstract":"Whether or not the video stream is paused due to either the application being backgrounded, the HMI state being either NONE or BACKGROUND, or the video stream not being ready.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)screenSize":{"name":"screenSize","abstract":"This is the current screen size of a connected display. This will be the size the video encoder uses to encode the raw image data.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)videoFormat":{"name":"videoFormat","abstract":"This is the agreed upon format of video encoder that is in use, or nil if not currently connected.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)supportedFormats":{"name":"supportedFormats","abstract":"A list of all supported video formats by this manager
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)pixelBufferPool":{"name":"pixelBufferPool","abstract":"The pixel buffer pool reference returned back from an active VTCompressionSessionRef encoder.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)requestedEncryptionType":{"name":"requestedEncryptionType","abstract":"The requested encryption type when a session attempts to connect. This setting applies to both video and audio sessions.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(im)init":{"name":"-init","abstract":"Undocumented
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(im)initWithConnectionManager:configuration:":{"name":"-initWithConnectionManager:configuration:","abstract":"Create a new streaming media manager for navigation and VPM apps with a specified configuration
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(im)startWithProtocol:":{"name":"-startWithProtocol:","abstract":"Start the manager with a completion block that will be called when startup completes. This is used internally. To use an SDLStreamingMediaManager, you should use the manager found on SDLManager
.
Stop the manager. This method is used internally.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(im)sendVideoData:":{"name":"-sendVideoData:","abstract":"This method receives raw image data and will run iOS8+’s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(im)sendVideoData:presentationTimestamp:":{"name":"-sendVideoData:presentationTimestamp:","abstract":"This method receives raw image data and will run iOS8+’s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit.
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(im)sendAudioData:":{"name":"-sendAudioData:","abstract":"This method receives PCM audio data and will attempt to send that data across to the head unit for immediate playback
","parent_name":"SDLStreamingMediaManager"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(py)securityManagers":{"name":"securityManagers","abstract":"Set security managers which could be used. This is primarily used with video streaming applications to authenticate and perhaps encrypt traffic data.
","parent_name":"SDLStreamingMediaConfiguration"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(py)maximumDesiredEncryption":{"name":"maximumDesiredEncryption","abstract":"What encryption level video/audio streaming should be. The default is SDLStreamingEncryptionFlagAuthenticateAndEncrypt.
","parent_name":"SDLStreamingMediaConfiguration"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(py)customVideoEncoderSettings":{"name":"customVideoEncoderSettings","abstract":"Properties to use for applications that utilitze the video encoder for streaming. See VTCompressionProperties.h for more details. For example, you can set kVTCompressionPropertyKey_ExpectedFrameRate to set your expected framerate.
","parent_name":"SDLStreamingMediaConfiguration"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(py)dataSource":{"name":"dataSource","abstract":"Usable to change run time video stream setup behavior. Only use this and modify the results if you really know what you’re doing. The head unit defaults are generally good.
","parent_name":"SDLStreamingMediaConfiguration"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(py)window":{"name":"window","abstract":"Set the window your video streaming content is within.
","parent_name":"SDLStreamingMediaConfiguration"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(im)init":{"name":"-init","abstract":"Create an insecure video streaming configuration. No security managers will be provided and the encryption flag will be set to None. If you’d like custom video encoder settings, you can set the property manually.
","parent_name":"SDLStreamingMediaConfiguration"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(im)initWithSecurityManagers:encryptionFlag:videoSettings:dataSource:window:":{"name":"-initWithSecurityManagers:encryptionFlag:videoSettings:dataSource:window:","abstract":"Manually set all the properties to the streaming media configuration
","parent_name":"SDLStreamingMediaConfiguration"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(im)initWithSecurityManagers:":{"name":"-initWithSecurityManagers:","abstract":"Create a secure configuration for each of the security managers provided.
","parent_name":"SDLStreamingMediaConfiguration"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(cm)secureConfigurationWithSecurityManagers:":{"name":"+secureConfigurationWithSecurityManagers:","abstract":"Create a secure configuration for each of the security managers provided.
","parent_name":"SDLStreamingMediaConfiguration"},"Classes/SDLStreamingMediaConfiguration.html#/c:objc(cs)SDLStreamingMediaConfiguration(cm)insecureConfiguration":{"name":"+insecureConfiguration","abstract":"Create an insecure video streaming configuration. No security managers will be provided and the encryption flag will be set to None. If you’d like custom video encoder settings, you can set the property manually. This is equivalent to init
.
Undocumented
","parent_name":"SDLStartTime"},"Classes/SDLStartTime.html#/c:objc(cs)SDLStartTime(py)hours":{"name":"hours","abstract":"@abstract The hour of the media clock
","parent_name":"SDLStartTime"},"Classes/SDLStartTime.html#/c:objc(cs)SDLStartTime(py)minutes":{"name":"minutes","abstract":"@abstract The minute of the media clock
","parent_name":"SDLStartTime"},"Classes/SDLStartTime.html#/c:objc(cs)SDLStartTime(py)seconds":{"name":"seconds","abstract":"@abstract The second of the media clock
","parent_name":"SDLStartTime"},"Classes/SDLSpeak.html#/c:objc(cs)SDLSpeak(im)initWithTTS:":{"name":"-initWithTTS:","abstract":"Undocumented
","parent_name":"SDLSpeak"},"Classes/SDLSpeak.html#/c:objc(cs)SDLSpeak(im)initWithTTSChunks:":{"name":"-initWithTTSChunks:","abstract":"Undocumented
","parent_name":"SDLSpeak"},"Classes/SDLSpeak.html#/c:objc(cs)SDLSpeak(py)ttsChunks":{"name":"ttsChunks","abstract":"@abstract An array of TTSChunk structs which, taken together, specify the phrase to be spoken
","parent_name":"SDLSpeak"},"Classes/SDLSoftButtonCapabilities.html#/c:objc(cs)SDLSoftButtonCapabilities(py)shortPressAvailable":{"name":"shortPressAvailable","abstract":"@abstract The button supports a short press.
","parent_name":"SDLSoftButtonCapabilities"},"Classes/SDLSoftButtonCapabilities.html#/c:objc(cs)SDLSoftButtonCapabilities(py)longPressAvailable":{"name":"longPressAvailable","abstract":"@abstract The button supports a LONG press.
","parent_name":"SDLSoftButtonCapabilities"},"Classes/SDLSoftButtonCapabilities.html#/c:objc(cs)SDLSoftButtonCapabilities(py)upDownAvailable":{"name":"upDownAvailable","abstract":"@abstract The button supports button down
and button up
.
@abstract The button supports referencing a static or dynamic image.
","parent_name":"SDLSoftButtonCapabilities"},"Classes/SDLSoftButton.html#/c:objc(cs)SDLSoftButton(im)initWithHandler:":{"name":"-initWithHandler:","abstract":"Undocumented
","parent_name":"SDLSoftButton"},"Classes/SDLSoftButton.html#/c:objc(cs)SDLSoftButton(im)initWithType:text:image:highlighted:buttonId:systemAction:handler:":{"name":"-initWithType:text:image:highlighted:buttonId:systemAction:handler:","abstract":"Undocumented
","parent_name":"SDLSoftButton"},"Classes/SDLSoftButton.html#/c:objc(cs)SDLSoftButton(py)handler":{"name":"handler","abstract":"Undocumented
","parent_name":"SDLSoftButton"},"Classes/SDLSoftButton.html#/c:objc(cs)SDLSoftButton(py)type":{"name":"type","abstract":"Undocumented
","parent_name":"SDLSoftButton"},"Classes/SDLSoftButton.html#/c:objc(cs)SDLSoftButton(py)text":{"name":"text","abstract":"Undocumented
","parent_name":"SDLSoftButton"},"Classes/SDLSoftButton.html#/c:objc(cs)SDLSoftButton(py)image":{"name":"image","abstract":"Undocumented
","parent_name":"SDLSoftButton"},"Classes/SDLSoftButton.html#/c:objc(cs)SDLSoftButton(py)isHighlighted":{"name":"isHighlighted","abstract":"Undocumented
","parent_name":"SDLSoftButton"},"Classes/SDLSoftButton.html#/c:objc(cs)SDLSoftButton(py)softButtonID":{"name":"softButtonID","abstract":"Undocumented
","parent_name":"SDLSoftButton"},"Classes/SDLSoftButton.html#/c:objc(cs)SDLSoftButton(py)systemAction":{"name":"systemAction","abstract":"Undocumented
","parent_name":"SDLSoftButton"},"Classes/SDLSliderResponse.html#/c:objc(cs)SDLSliderResponse(py)sliderPosition":{"name":"sliderPosition","abstract":"@abstract The selected position of the slider.
","parent_name":"SDLSliderResponse"},"Classes/SDLSlider.html#/c:objc(cs)SDLSlider(im)initWithNumTicks:position:":{"name":"-initWithNumTicks:position:","abstract":"Undocumented
","parent_name":"SDLSlider"},"Classes/SDLSlider.html#/c:objc(cs)SDLSlider(im)initWithNumTicks:position:sliderHeader:sliderFooter:timeout:":{"name":"-initWithNumTicks:position:sliderHeader:sliderFooter:timeout:","abstract":"Undocumented
","parent_name":"SDLSlider"},"Classes/SDLSlider.html#/c:objc(cs)SDLSlider(im)initWithNumTicks:position:sliderHeader:sliderFooters:timeout:":{"name":"-initWithNumTicks:position:sliderHeader:sliderFooters:timeout:","abstract":"Undocumented
","parent_name":"SDLSlider"},"Classes/SDLSlider.html#/c:objc(cs)SDLSlider(py)numTicks":{"name":"numTicks","abstract":"@abstract Represents a number of selectable items on a horizontal axis
","parent_name":"SDLSlider"},"Classes/SDLSlider.html#/c:objc(cs)SDLSlider(py)position":{"name":"position","abstract":"@abstract An Initial position of slider control
","parent_name":"SDLSlider"},"Classes/SDLSlider.html#/c:objc(cs)SDLSlider(py)sliderHeader":{"name":"sliderHeader","abstract":"@abstract A text header to display
","parent_name":"SDLSlider"},"Classes/SDLSlider.html#/c:objc(cs)SDLSlider(py)sliderFooter":{"name":"sliderFooter","abstract":"@abstract A text footer to display
","parent_name":"SDLSlider"},"Classes/SDLSlider.html#/c:objc(cs)SDLSlider(py)timeout":{"name":"timeout","abstract":"@abstract An App defined timeout
","parent_name":"SDLSlider"},"Classes/SDLSingleTireStatus.html#/c:objc(cs)SDLSingleTireStatus(py)status":{"name":"status","abstract":"@abstract The volume status of a single tire
","parent_name":"SDLSingleTireStatus"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(im)initWithNavigationText1:navigationText2:eta:timeToDestination:totalDistance:turnIcon:nextTurnIcon:distanceToManeuver:distanceToManeuverScale:maneuverComplete:softButtons:":{"name":"-initWithNavigationText1:navigationText2:eta:timeToDestination:totalDistance:turnIcon:nextTurnIcon:distanceToManeuver:distanceToManeuverScale:maneuverComplete:softButtons:","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)navigationText1":{"name":"navigationText1","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)navigationText2":{"name":"navigationText2","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)eta":{"name":"eta","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)timeToDestination":{"name":"timeToDestination","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)totalDistance":{"name":"totalDistance","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)turnIcon":{"name":"turnIcon","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)nextTurnIcon":{"name":"nextTurnIcon","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)distanceToManeuver":{"name":"distanceToManeuver","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)distanceToManeuverScale":{"name":"distanceToManeuverScale","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)maneuverComplete":{"name":"maneuverComplete","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShowConstantTBT.html#/c:objc(cs)SDLShowConstantTBT(py)softButtons":{"name":"softButtons","abstract":"Undocumented
","parent_name":"SDLShowConstantTBT"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(im)initWithMainField1:mainField2:alignment:":{"name":"-initWithMainField1:mainField2:alignment:","abstract":"Undocumented
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(im)initWithMainField1:mainField1Type:mainField2:mainField2Type:alignment:":{"name":"-initWithMainField1:mainField1Type:mainField2:mainField2Type:alignment:","abstract":"Undocumented
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(im)initWithMainField1:mainField2:mainField3:mainField4:alignment:":{"name":"-initWithMainField1:mainField2:mainField3:mainField4:alignment:","abstract":"Undocumented
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(im)initWithMainField1:mainField1Type:mainField2:mainField2Type:mainField3:mainField3Type:mainField4:mainField4Type:alignment:":{"name":"-initWithMainField1:mainField1Type:mainField2:mainField2Type:mainField3:mainField3Type:mainField4:mainField4Type:alignment:","abstract":"Undocumented
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(im)initWithMainField1:mainField2:alignment:statusBar:mediaClock:mediaTrack:":{"name":"-initWithMainField1:mainField2:alignment:statusBar:mediaClock:mediaTrack:","abstract":"Undocumented
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(im)initWithMainField1:mainField2:mainField3:mainField4:alignment:statusBar:mediaClock:mediaTrack:graphic:softButtons:customPresets:textFieldMetadata:":{"name":"-initWithMainField1:mainField2:mainField3:mainField4:alignment:statusBar:mediaClock:mediaTrack:graphic:softButtons:customPresets:textFieldMetadata:","abstract":"Undocumented
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)mainField1":{"name":"mainField1","abstract":"@abstract The text displayed in a single-line display, or in the upper display","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)mainField2":{"name":"mainField2","abstract":"
@abstract The text displayed on the second display line of a two-line display
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)mainField3":{"name":"mainField3","abstract":"@abstract The text displayed on the first display line of the second page
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)mainField4":{"name":"mainField4","abstract":"@abstract The text displayed on the second display line of the second page
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)alignment":{"name":"alignment","abstract":"@abstract The alignment that Specifies how mainField1 and mainField2 text","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)statusBar":{"name":"statusBar","abstract":"
@abstract Text in the Status Bar
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)mediaClock":{"name":"mediaClock","abstract":"@abstract This property is deprecated use SetMediaClockTimer instead.","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)mediaTrack":{"name":"mediaTrack","abstract":"
@abstract The text in the track field
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)graphic":{"name":"graphic","abstract":"@abstract An image to be shown on supported displays
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)secondaryGraphic":{"name":"secondaryGraphic","abstract":"@abstract An image to be shown on supported displays
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)softButtons":{"name":"softButtons","abstract":"@abstract The the Soft buttons defined by the App
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)customPresets":{"name":"customPresets","abstract":"@abstract The Custom Presets defined by the App
","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)metadataTags":{"name":"metadataTags","abstract":"@abstract Text Field Metadata
","parent_name":"SDLShow"},"Classes/SDLSetMediaClockTimer.html#/c:objc(cs)SDLSetMediaClockTimer(im)initWithUpdateMode:hours:minutes:seconds:":{"name":"-initWithUpdateMode:hours:minutes:seconds:","abstract":"Undocumented
","parent_name":"SDLSetMediaClockTimer"},"Classes/SDLSetMediaClockTimer.html#/c:objc(cs)SDLSetMediaClockTimer(im)initWithUpdateMode:":{"name":"-initWithUpdateMode:","abstract":"Undocumented
","parent_name":"SDLSetMediaClockTimer"},"Classes/SDLSetMediaClockTimer.html#/c:objc(cs)SDLSetMediaClockTimer(py)startTime":{"name":"startTime","abstract":"@abstract A Start Time with specifying hour, minute, second values
","parent_name":"SDLSetMediaClockTimer"},"Classes/SDLSetMediaClockTimer.html#/c:objc(cs)SDLSetMediaClockTimer(py)endTime":{"name":"endTime","abstract":"@abstract An END time of type SDLStartTime, specifying hour, minute, second values
","parent_name":"SDLSetMediaClockTimer"},"Classes/SDLSetMediaClockTimer.html#/c:objc(cs)SDLSetMediaClockTimer(py)updateMode":{"name":"updateMode","abstract":"@abstract The media clock/timer update mode (COUNTUP/COUNTDOWN/PAUSE/RESUME)
","parent_name":"SDLSetMediaClockTimer"},"Classes/SDLSetInteriorVehicleDataResponse.html#/c:objc(cs)SDLSetInteriorVehicleDataResponse(py)moduleData":{"name":"moduleData","abstract":"The module data to set for the requested remote control module.
","parent_name":"SDLSetInteriorVehicleDataResponse"},"Classes/SDLSetInteriorVehicleData.html#/c:objc(cs)SDLSetInteriorVehicleData(im)initWithModuleData:":{"name":"-initWithModuleData:","abstract":"Undocumented
","parent_name":"SDLSetInteriorVehicleData"},"Classes/SDLSetInteriorVehicleData.html#/c:objc(cs)SDLSetInteriorVehicleData(py)moduleData":{"name":"moduleData","abstract":"The module data to set for the requested RC module.
","parent_name":"SDLSetInteriorVehicleData"},"Classes/SDLSetGlobalProperties.html#/c:objc(cs)SDLSetGlobalProperties(im)initWithHelpText:timeoutText:":{"name":"-initWithHelpText:timeoutText:","abstract":"Undocumented
","parent_name":"SDLSetGlobalProperties"},"Classes/SDLSetGlobalProperties.html#/c:objc(cs)SDLSetGlobalProperties(im)initWithHelpText:timeoutText:vrHelpTitle:vrHelp:":{"name":"-initWithHelpText:timeoutText:vrHelpTitle:vrHelp:","abstract":"Undocumented
","parent_name":"SDLSetGlobalProperties"},"Classes/SDLSetGlobalProperties.html#/c:objc(cs)SDLSetGlobalProperties(im)initWithHelpText:timeoutText:vrHelpTitle:vrHelp:menuTitle:menuIcon:keyboardProperties:":{"name":"-initWithHelpText:timeoutText:vrHelpTitle:vrHelp:menuTitle:menuIcon:keyboardProperties:","abstract":"Undocumented
","parent_name":"SDLSetGlobalProperties"},"Classes/SDLSetGlobalProperties.html#/c:objc(cs)SDLSetGlobalProperties(py)helpPrompt":{"name":"helpPrompt","abstract":"@abstract Sets a Vector @abstract A Vector @abstract Sets a voice recognition Help Title @abstract Sets the items listed in the VR help screen used in an interaction","parent_name":"SDLSetGlobalProperties"},"Classes/SDLSetGlobalProperties.html#/c:objc(cs)SDLSetGlobalProperties(py)menuTitle":{"name":"menuTitle","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract A display layout. Predefined or dynamically created screen layout.","parent_name":"SDLSetDisplayLayout"},"Classes/SDLSetAppIcon.html#/c:objc(cs)SDLSetAppIcon(im)initWithFileName:":{"name":"-initWithFileName:","abstract":" Undocumented @abstract A file reference name","parent_name":"SDLSetAppIcon"},"Classes/SDLSendLocation.html#/c:objc(cs)SDLSendLocation(im)initWithLongitude:latitude:locationName:locationDescription:address:phoneNumber:image:":{"name":"-initWithLongitude:latitude:locationName:locationDescription:address:phoneNumber:image:","abstract":" Undocumented Undocumented The longitudinal coordinate of the location. The latitudinal coordinate of the location. Name / title of intended location Description of the intended location / establishment Location address for display purposes only Phone number of intended location / establishment Image / icon of intended location Mode in which the sendLocation request is sent Arrival time of Location. If multiple SendLocations are sent, this will be used for sorting as well. Address to be used for setting destination Constructs a new SDLSendHapticData object indicated by the hapticSpatialData parameter Array of spatial data structures that represent the locations of all user controls present on the HMI. This data should be updated if/when the application presents a new screen. When a request is sent, if successful, it will replace all spatial data previously sent through RPC. If an empty array is sent, the existing spatial data will be cleared Undocumented Undocumented @abstract A Body of text that can include newlines and tabs","parent_name":"SDLScrollableMessage"},"Classes/SDLScrollableMessage.html#/c:objc(cs)SDLScrollableMessage(py)timeout":{"name":"timeout","abstract":" @abstract Gets/Sets an App defined timeout. Indicates how long of a timeout in milliseconds from the","parent_name":"SDLScrollableMessage"},"Classes/SDLScrollableMessage.html#/c:objc(cs)SDLScrollableMessage(py)softButtons":{"name":"softButtons","abstract":" @abstract Gets/Sets App defined SoftButtons.If omitted on supported displays, only the","parent_name":"SDLScrollableMessage"},"Classes/SDLScreenParams.html#/c:objc(cs)SDLScreenParams(py)resolution":{"name":"resolution","abstract":" Undocumented Undocumented Undocumented @abstract An array of one or more GlobalProperty enumeration elements","parent_name":"SDLResetGlobalProperties"},"Classes/SDLRemoteControlCapabilities.html#/c:objc(cs)SDLRemoteControlCapabilities(im)initWithClimateControlCapabilities:radioControlCapabilities:buttonCapabilities:":{"name":"-initWithClimateControlCapabilities:radioControlCapabilities:buttonCapabilities:","abstract":" Undocumented @abstract If included, the platform supports RC climate controls.","parent_name":"SDLRemoteControlCapabilities"},"Classes/SDLRemoteControlCapabilities.html#/c:objc(cs)SDLRemoteControlCapabilities(py)radioControlCapabilities":{"name":"radioControlCapabilities","abstract":" @abstract If included, the platform supports RC radio controls.","parent_name":"SDLRemoteControlCapabilities"},"Classes/SDLRemoteControlCapabilities.html#/c:objc(cs)SDLRemoteControlCapabilities(py)buttonCapabilities":{"name":"buttonCapabilities","abstract":" @abstract If included, the platform supports RC button controls with the included button names. The currently active VR+TTS language on Sync. The currently active display language on Sync If returned, the platform supports on-screen SoftButtons If returned, the platform supports custom on-screen Presets Specifies the vehicle’s type Specifies the white-list of supported diagnostic modes (0x00-0xFF) capable for DiagnosticMessage requests. If a mode outside this list is requested, it will be rejected. The SmartDeviceLink version The software version of the system that implements the SmartDeviceLink core Undocumented Undocumented Undocumented Undocumented @abstract The version of the SDL interface @abstract The Mobile Application’s Name, This name is displayed in the SDL Mobile Applications menu. It also serves as the unique identifier of the application for SmartDeviceLink @abstract TTS string for VR recognition of the mobile application name. @abstract A String representing an abbreviated version of the mobile application’s name (if necessary) that will be displayed on the media screen @abstract Defines a additional voice recognition commands @abstract Indicates if the application is a media or a non-media application. @abstract A Language enumeration indicating what language the application intends to use for user interaction (TTS and VR). @abstract An enumeration indicating what language the application intends to use for user interaction (Display). @abstract A list of all applicable app types stating which classifications to be given to the app. @abstract ID used to uniquely identify current state of all app data that can persist through connection cycles (e.g. ignition cycles). @abstract Information about the connecting device @abstract ID used to validate app with policy table entries @abstract Information about the application running Create a Rectangle Create a Rectangle from a CGRect The X-coordinate of the user control","parent_name":"SDLRectangle"},"Classes/SDLRectangle.html#/c:objc(cs)SDLRectangle(py)y":{"name":"y","abstract":" The Y-coordinate of the user control","parent_name":"SDLRectangle"},"Classes/SDLRectangle.html#/c:objc(cs)SDLRectangle(py)width":{"name":"width","abstract":" The width of the user control’s bounding rectangle","parent_name":"SDLRectangle"},"Classes/SDLRectangle.html#/c:objc(cs)SDLRectangle(py)height":{"name":"height","abstract":" The height of the user control’s bounding rectangle","parent_name":"SDLRectangle"},"Classes/SDLReadDIDResponse.html#/c:objc(cs)SDLReadDIDResponse(py)didResult":{"name":"didResult","abstract":" Undocumented Undocumented @abstract An ID of the vehicle module","parent_name":"SDLReadDID"},"Classes/SDLReadDID.html#/c:objc(cs)SDLReadDID(py)didLocation":{"name":"didLocation","abstract":" @abstract Raw data from vehicle data DID location(s)","parent_name":"SDLReadDID"},"Classes/SDLRadioControlData.html#/c:objc(cs)SDLRadioControlData(im)initWithFrequencyInteger:frequencyFraction:band:hdChannel:radioEnable:":{"name":"-initWithFrequencyInteger:frequencyFraction:band:hdChannel:radioEnable:","abstract":" Undocumented @abstract The integer part of the frequency ie for 101.7 this value should be 101 @abstract The fractional part of the frequency for 101.7 is 7 @abstract Radio band value @abstract Read only parameter. See RDSData data type for details. @abstract number of HD sub-channels if available @abstract Current HD sub-channel if available @abstract Signal Strength Value @abstract If the signal strength falls below the set value for this parameter, the radio will tune to an alternative frequency @abstract True if the radio is on, false is the radio is off. When the radio is disabled, no data other than radioEnable is included in a GetInteriorVehicleData response Read only parameter. See RadioState data type for details. Undocumented @abstract The short friendly name of the climate control module.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)radioEnableAvailable":{"name":"radioEnableAvailable","abstract":" @abstract Availability of the control of enable/disable radio.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)radioBandAvailable":{"name":"radioBandAvailable","abstract":" @abstract Availability of the control of radio band.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)radioFrequencyAvailable":{"name":"radioFrequencyAvailable","abstract":" @abstract Availability of the control of radio frequency.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)hdChannelAvailable":{"name":"hdChannelAvailable","abstract":" @abstract Availability of the control of HD radio channel.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)rdsDataAvailable":{"name":"rdsDataAvailable","abstract":" @abstract Availability of the getting Radio Data System (RDS) data.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)availableHDsAvailable":{"name":"availableHDsAvailable","abstract":" @abstract Availability of the getting the number of available HD channels.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)stateAvailable":{"name":"stateAvailable","abstract":" @abstract Availability of the getting the Radio state.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)signalStrengthAvailable":{"name":"signalStrengthAvailable","abstract":" @abstract Availability of the getting the signal strength.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)signalChangeThresholdAvailable":{"name":"signalChangeThresholdAvailable","abstract":" @abstract Availability of the getting the signal Change Threshold","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRPCStruct.html#/c:objc(cs)SDLRPCStruct@store":{"name":"store","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Returns whether or not the containing response is equal to a class, not including subclasses. Returns whether or not the containing response is a kind of class, including subclasses. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Returns whether or not the containing notification is equal to a class, not including subclasses. Returns whether or not the containing notification is a kind of class, including subclasses. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Program Service Name @abstract Radio Text @abstract The clock text in UTC format as YYYY-MM-DDThh:mm:ss.sTZD @abstract Program Identification - the call sign for the radio station @abstract The program type - The region should be used to differentiate between EU","parent_name":"SDLRDSData"},"Classes/SDLRDSData.html#/c:objc(cs)SDLRDSData(py)trafficProgramIdentification":{"name":"trafficProgramIdentification","abstract":" @abstract Traffic Program Identification - Identifies a station that offers traffic @abstract Traffic Announcement Identification - Indicates an ongoing traffic announcement @abstract Region Undocumented Undocumented Undocumented Undocumented A file reference name A FileType value representing a selected file type A value to indicates if the file is meant to persist between","parent_name":"SDLPutFile"},"Classes/SDLPutFile.html#/c:objc(cs)SDLPutFile(py)systemFile":{"name":"systemFile","abstract":" Indicates if the file is meant to be passed through core to elsewhere on the system. If set to TRUE, then the system will instead pass the data thru as it arrives to a predetermined area outside of core. Offset in bytes for resuming partial data chunks. Length in bytes for resuming partial data chunks. If offset is set to 0, then length is the total length of the file to be downloaded Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Puts data into a file on the module","parent_name":"SDLProxy"},"Classes/SDLProtocolMessage.html#/c:objc(cs)SDLProtocolMessage(py)header":{"name":"header","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract If Onscreen custom presets are available. @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)firstTouch":{"name":"firstTouch","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)secondTouch":{"name":"secondTouch","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)distance":{"name":"distance","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)center":{"name":"center","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)isValid":{"name":"isValid","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPhoneCapability.html#/c:objc(cs)SDLPhoneCapability(im)initWithDialNumber:":{"name":"-initWithDialNumber:","abstract":" Undocumented Whether or not the DialNumber RPC is enabled.","parent_name":"SDLPhoneCapability"},"Classes/SDLPermissionManager.html#/c:objc(cs)SDLPermissionManager(im)startWithCompletionHandler:":{"name":"-startWithCompletionHandler:","abstract":" Start the manager with a completion block that will be called when startup completes. This is used internally. To use an SDLPermissionManager, you should use the manager found on Stop the manager. This method is used internally. Determine if an individual RPC is allowed for the current HMI level Determine if all RPCs are allowed for the current HMI level Retrieve a dictionary with keys that are the passed in RPC names, and objects of an NSNumber Add an observer for specified RPC names, with a callback that will be called whenever the value changes, as well as immediately with the current status. Remove every current observer Remove block observers for the specified RPC Undocumented Undocumented Undocumented @abstract ID of the choice that was selected in response to PerformInteraction. @abstract Manually entered text selection, e.g. through keyboard @abstract A SDLTriggerSource object which will be shown in the HMI Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The Text that Displayed when the interaction begins. This text may","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)initialPrompt":{"name":"initialPrompt","abstract":" @abstract An array of one or more TTSChunks that, taken together, specify","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)interactionMode":{"name":"interactionMode","abstract":" @abstract The Indicates mode that indicate how user selects interaction","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)interactionChoiceSetIDList":{"name":"interactionChoiceSetIDList","abstract":" @abstract A Vector @abstract A Vector @abstract An array of TTSChunks which, taken together, specify the phrase to","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)timeout":{"name":"timeout","abstract":" @abstract An Integer value representing the amount of time, in milliseconds,","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)vrHelp":{"name":"vrHelp","abstract":" @abstract A Voice recognition Help, which is a suggested VR Help Items to","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)interactionLayout":{"name":"interactionLayout","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented @abstract initial prompt which will be spoken before opening the audio pass","parent_name":"SDLPerformAudioPassThru"},"Classes/SDLPerformAudioPassThru.html#/c:objc(cs)SDLPerformAudioPassThru(py)audioPassThruDisplayText1":{"name":"audioPassThruDisplayText1","abstract":" @abstract a line of text displayed during audio capture","parent_name":"SDLPerformAudioPassThru"},"Classes/SDLPerformAudioPassThru.html#/c:objc(cs)SDLPerformAudioPassThru(py)audioPassThruDisplayText2":{"name":"audioPassThruDisplayText2","abstract":" @abstract A line of text displayed during audio capture","parent_name":"SDLPerformAudioPassThru"},"Classes/SDLPerformAudioPassThru.html#/c:objc(cs)SDLPerformAudioPassThru(py)samplingRate":{"name":"samplingRate","abstract":" @abstract A samplingRate @abstract the maximum duration of audio recording in milliseconds @abstract the quality the audio is recorded - 8 bit or 16 bit @abstract an audioType @abstract a Boolean value representing if the current audio source should be","parent_name":"SDLPerformAudioPassThru"},"Classes/SDLPerformAudioPassThru.html#/c:objc(cs)SDLPerformAudioPassThru(py)audioDataHandler":{"name":"audioDataHandler","abstract":" A handler that will be called whenever an @abstract A set of all parameters that are permitted for this given RPC. @abstract A set of all parameters that are prohibited for this given RPC. @abstract Location address for display purposes only. @abstract A SDLGPSData* value. See GPSData. @abstract The vehicle speed in kilometers per hour. @abstract The number of revolutions per minute of the engine. @abstract The fuel level in the tank (percentage) @abstract A SDLComponentVolumeStatus* value. The fuel level state. @abstract The instantaneous fuel consumption in microlitres. @abstract The external temperature in degrees celsius. @abstract The Vehicle Identification Number @abstract See PRNDL. @abstract A SDLTireStatus* value. See TireStatus. @abstract Odometer reading in km. @abstract A SDLBeltStatus* value. The status of the seat belts. @abstract A SDLBodyInformation* value. The body information including power modes. @abstract A SDLDeviceStatus* value. The device status including signal and battery strength. @abstract A SDLVehicleDataResult* value. The status of the brake pedal. @abstract A SDLWiperStatus* value. The status of the wipers. @abstract A SDLHeadLampStatus* value. Status of the head lamps. @abstract Torque value for engine (in Nm) on non-diesel variants. @abstract Accelerator pedal position (percentage depressed) @abstract Current angle of the steering wheel (in deg) Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Describes change in permissions for a given set of RPCs Get the current driver distraction status(i.e. whether driver distraction rules are in effect, or not) Get user selection status for the application (has the app been selected via hmi or voice command) Get the {@linkplain LockScreenStatus} enumeration, indicating if the lockscreen should be required, optional or off Get HMILevel in effect for the application @abstract Current SDL voice engine (VR+TTS) language @abstract Current display language Undocumented Undocumented Undocumented Undocumented @abstract SDLHMILevel in effect for the application @abstract Current state of audio streaming for the application. When this parameter has a value of NOT_AUDIBLE, the application must stop streaming audio to SDL. @abstract the System Context","parent_name":"SDLOnHMIStatus"},"Classes/SDLOnEncodedSyncPData.html#/c:objc(cs)SDLOnEncodedSyncPData(py)data":{"name":"data","abstract":" Undocumented Undocumented Undocumented @abstract The driver distraction state (i.e. whether driver distraction rules are in effect, or not) @abstract The command ID of the command the user selected. This is the command ID value provided by the application in the SDLAddCommand operation that created the command. @abstract Indicates whether command was selected via voice or via a menu selection (using the OK button). @abstract the button’s name @abstract Indicates whether this is a LONG or SHORT button press event @abstract If ButtonName is @abstract The name of the button @abstract Indicates whether this is an UP or DOWN event @abstract If ButtonName is @abstract The reason application’s interface was terminated Undocumented Undocumented @abstract Name of the country (localized) @abstract countryCode of the country(ISO 3166-2) @abstract postalCode of location (PLZ, ZIP, PIN, CAP etc.) @abstract Portion of country (e.g. state) @abstract Portion of administrativeArea (e.g. county) @abstract Hypernym for city/village @abstract Hypernym for district @abstract Hypernym for street, road etc. @abstract Portion of thoroughfare (e.g. house number) Undocumented Undocumented Undocumented Whether or not the SendLocation RPC is enabled.","parent_name":"SDLNavigationCapability"},"Classes/SDLNavigationCapability.html#/c:objc(cs)SDLNavigationCapability(py)getWayPointsEnabled":{"name":"getWayPointsEnabled","abstract":" Whether or not Waypoint related RPCs are enabled.","parent_name":"SDLNavigationCapability"},"Classes/SDLMyKey.html#/c:objc(cs)SDLMyKey(py)e911Override":{"name":"e911Override","abstract":" Undocumented Undocumented Undocumented The moduleType indicates which type of data should be changed","parent_name":"SDLModuleData"},"Classes/SDLModuleData.html#/c:objc(cs)SDLModuleData(py)radioControlData":{"name":"radioControlData","abstract":" Undocumented Undocumented @abstract Constructs a newly allocated SDLMetadataType object with NSArrays Undocumented @abstract The type of data contained in the @abstract The type of data contained in the @abstract The type of data contained in the @abstract The type of data contained in the Undocumented Undocumented @abstract the unique ID of an existing submenu to which a command will be added","parent_name":"SDLMenuParams"},"Classes/SDLMenuParams.html#/c:objc(cs)SDLMenuParams(py)position":{"name":"position","abstract":" @abstract The position within the items of the parent Command Menu","parent_name":"SDLMenuParams"},"Classes/SDLMenuParams.html#/c:objc(cs)SDLMenuParams(py)menuName":{"name":"menuName","abstract":" @abstract the menu name which appears in menu, representing this command The configuration the manager was set up with. The current HMI level of the running app. The current audio streaming state of the running app. The current system context of the running app. The file manager to be used by the running app. The permission manager monitoring RPC permissions. The streaming media manager to be used for starting video sessions. The response of a register call after it has been received. The manager’s delegate. Undocumented Initialize the manager with a configuration. Call Start the manager, which will tell it to start looking for a connection. Once one does, it will automatically run the setup process and call the readyBlock when done. Stop the manager, it will disconnect if needed and no longer look for a connection. You probably don’t need to call this method ever. Send an RPC request and don’t bother with the response or error. If you need the response or error, call sendRequest:withCompletionHandler: instead. Send an RPC request and set a completion handler that will be called with the response when the response returns. Undocumented Undocumented Undocumented Any modules that do not have an explicitly specified level will by default use this log level Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Sets a configuration to be used by the log manager’s sharedManager. This is generally for internal use and you should set your configuration using SDLManager’s startWithConfiguration: method. Sets a configuration to be used by the log manager. This is generally for internal use and you should set your configuration using SDLManager’s startWithConfiguration: method. Log to the sharedManager’s active log targets. This is used internally to log. If you want to create a log, you should use macros such as Log to this log manager’s active log targets. This is used internally to log. If you want to create a log, you should use macros such as Log to this sharedManager’s active log targets. This is used internally to log. If you want to create a log, you should use macros such as Log to this log manager’s active log targets. This is used internally to log. If you want to create a log, you should use macros such as Log to this sharedManager’s active log targets. This is used internally to log. Log to this manager’s active log targets. This is used internally to log. Undocumented Undocumented Create a new filter with a custom filter block. The filter block will take a log model and return a BOOL of pass / fail. Returns a filter that only allows logs not containing the passed string within their message. Returns a filter that only allows logs containing the passed string within their message. Returns a filter that only allows logs not passing the passed regex against their message. Returns a filter that only allows logs passing the passed regex against their message. Returns a filter that only allows logs not within the specified file modules to be logged. Returns a filter that only allows logs of the specified file modules to be logged. Returns a filter that only allows logs not within the specified files to be logged. Returns a filter that only allows logs within the specified files to be logged. The name of the this module, e.g. All of the files contained within this module. When a log is logged, the The custom level of the log. This is This method is unavailable and may not be used. Returns an initialized Returns an initialized Returns an initialized Returns whether or not this module contains a given file. Any custom logging modules used by the developer’s code. Defaults to none. Where the logs will attempt to output. Defaults to Console. What log filters will run over this session. Defaults to none. How detailed of logs will be output. Defaults to Default. Whether or not logs will be run on a separate queue, asynchronously, allowing the following code to run before the log completes. Or if it will occur synchronously, which will prevent logs from being missed, but will slow down surrounding code. Defaults to YES. Whether or not error logs will be dispatched to loggers asynchronously. Defaults to NO. Any modules that do not have an explicitly specified level will by default use the global log level. Defaults to Error.","parent_name":"SDLLogConfiguration"},"Classes/SDLLogConfiguration.html#/c:objc(cs)SDLLogConfiguration(cm)defaultConfiguration":{"name":"+defaultConfiguration","abstract":" A default logger for production. This sets the format type to Default, the log level to Error, and only enables the ASL logger. A debug logger for use in development. This sets the format type to Detailed, the log level to Debug, and enables the Console and ASL loggers. The app’s icon. This will be set by the lock screen configuration. The vehicle’s designated icon. This will be set by the lock screen manager when it is notified that a lock screen icon has been downloaded. The designated background color set in the lock screen configuration, or the default SDL gray-blue. Whether or not the lock screen should be shown in the If YES, the lock screen should be managed by SDL and automatically engage when necessary. If NO, then the lock screen will never be engaged. The background color of the lock screen. This could be a branding color, or leave at the default for a dark blue-gray. Your app icon as it will appear on the lock screen. A custom view controller that the lock screen will manage the presentation of. Undocumented Use this configuration if you wish to manage a lock screen yourself. This may be useful if the automatic presentation feature of SDLLockScreenManager is failing for some reason. Use this configuration for the basic default lock screen. A custom app icon will not be used. Use this configuration to provide a custom lock screen icon and a custom background color, or nil if you wish to use the default background color. This will use the default lock screen layout. Use this configuration if you wish to provide your own view controller for the lock screen. This view controller’s presentation and dismissal will still be managed by the lock screen manager. Note that you may subclass SDLLockScreenViewController and pass it here to continue to have the vehicle icon set to your view controller by the manager. @abstract Latitude/Longitude of the location @abstract Name of location. @abstract Location address for display purposes only. @abstract Description intended location / establishment. @abstract Phone number of location / establishment. @abstract Image / icon of intended location. @abstract Address to be used by navigation engines for search. @abstract Latitude of the location @abstract Longitude of the location Undocumented Undocumented Undocumented A production configuration that runs using IAP. Additional functionality should be customized on the properties. A debug configuration that runs using TCP. Additional functionality should be customized on the properties. Whether or not debug mode is enabled The ip address at which the library will look for a server The port at which the library will look for a server The full name of the app The app id. This must be the same as the app id received from the SDL developer portal or OEM. A hash id which should be passed to the remote system in the RegisterAppInterface This is an automatically set based on the app type The application type The default language to use An array of all the supported languages The application icon to be used on an app launching screen An abbrevited application name that will be used on the app launching screen if the full one would be truncated A Text to Speech String for voice recognition of the mobile application name. Additional voice recognition commands. May not interfere with any other app name or global commands. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The static hex icon value or the binary image file name identifier (sent by SDLPutFile) @abstract Describes, whether it is a static or dynamic image Undocumented Undocumented @abstract A boolean value. Status of the low beam lamps. @abstract A boolean value. Status of the high beam lamps. Undocumented Undocumented A user control spatial identifier","parent_name":"SDLHapticRect"},"Classes/SDLHapticRect.html#/c:objc(cs)SDLHapticRect(py)rect":{"name":"rect","abstract":" Undocumented @abstract a set of all HMI levels that are permitted for this given RPC @abstract a set of all HMI levels that are prohibited for this given RPC Availability of built in Nav. True: Available, False: Not Available Availability of built in phone. True: Available, False: Not Available Availability of built in video streaming. True: Available, False: Not Available @abstract Array of waypoints Undocumented To request for either the destination","parent_name":"SDLGetWayPoints"},"Classes/SDLGetVehicleDataResponse.html#/c:objc(cs)SDLGetVehicleDataResponse(py)gps":{"name":"gps","abstract":" @abstract A SDLGPSData* value. See GPSData. @abstract The vehicle speed in kilometers per hour. @abstract The number of revolutions per minute of the engine. @abstract The fuel level in the tank (percentage) @abstract A SDLComponentVolumeStatus* value. The fuel level state. @abstract The instantaneous fuel consumption in microlitres. @abstract The external temperature in degrees celsius. @abstract The Vehicle Identification Number @abstract See PRNDL. @abstract A SDLTireStatus* value. See TireStatus. @abstract Odometer reading in km. @abstract A SDLBeltStatus* value. The status of the seat belts. @abstract A SDLBodyInformation* value. The body information including power modes. @abstract A SDLDeviceStatus* value. The device status including signal and battery strength. @abstract A SDLVehicleDataResult* value. The status of the brake pedal. @abstract A SDLWiperStatus* value. The status of the wipers. @abstract A SDLHeadLampStatus* value. Status of the head lamps. @abstract Torque value for engine (in Nm) on non-diesel variants. @abstract Accelerator pedal position (percentage depressed) @abstract Current angle of the steering wheel (in deg) Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract A boolean value. If true, requests Gps data @abstract A boolean value. If true, requests speed data @abstract A boolean value. If true, requests rpm data @abstract A boolean value. If true, requests FuelLevel data @abstract A boolean value. If true, requests fuelLevel_State data @abstract A boolean value. If true, requests instantFuelConsumption data @abstract A boolean value. If true, requests externalTemperature data @abstract A boolean value. If true, requests Vehicle Identification Number @abstract A boolean value. If true, requests Currently selected gear data @abstract A boolean value. If true, requests tire pressure status data @abstract A boolean value. If true, requests odometer data @abstract A boolean value. If true, requests belt Status data @abstract A boolean value. If true, requests body Information data @abstract A boolean value. If true, requests device Status data @abstract A boolean value. If true, requests driver Braking data @abstract A boolean value. If true, requests wiper Status data @abstract A boolean value. If true, requests Head Lamp Status data @abstract A boolean value. If true, requests Engine Torque data @abstract A boolean value. If true, means the accPedalPosition data has been","parent_name":"SDLGetVehicleData"},"Classes/SDLGetVehicleData.html#/c:objc(cs)SDLGetVehicleData(py)steeringWheelAngle":{"name":"steeringWheelAngle","abstract":" @abstract A boolean value. If true, means the steeringWheelAngle data has been","parent_name":"SDLGetVehicleData"},"Classes/SDLGetVehicleData.html#/c:objc(cs)SDLGetVehicleData(py)eCallInfo":{"name":"eCallInfo","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented They type of capability you’d like to receive in the response. Undocumented @abstract It is a conditional-mandatory parameter: must be returned in case Undocumented Undocumented Undocumented The type of a RC module to retrieve module data from the vehicle. If subscribe is true, the head unit will register onInteriorVehicleData notifications for the requested moduelType.","parent_name":"SDLGetInteriorVehicleData"},"Classes/SDLGetDTCsResponse.html#/c:objc(cs)SDLGetDTCsResponse(py)ecuHeader":{"name":"ecuHeader","abstract":" Undocumented Undocumented Undocumented Undocumented @abstract a name of the module to receive the DTC form","parent_name":"SDLGetDTCs"},"Classes/SDLGetDTCs.html#/c:objc(cs)SDLGetDTCs(py)dtcMask":{"name":"dtcMask","abstract":" @abstract DTC Mask Byte to be sent in diagnostic request to module. NSNumber* dtcMask Minvalue:0; Maxvalue:255 @abstract longitude degrees @abstract latitude degrees @abstract utc year @abstract utc month @abstract utc day @abstract utc hours @abstract utc minutes @abstract utc seconds Potential Compass Directions @abstract The 3D positional dilution of precision. @abstract The horizontal dilution of precision @abstract the vertical dilution of precision @abstract What the coordinates are based on @abstract The number of satellites in view The supported dimensions of the GPS @abstract altitude in meters @abstract Heading based on the GPS data. @abstract speed in KPH A set of all names of files known on the remote head unit. Known files can be used or deleted on the remote system. The number of bytes still available for files for this app. The state of the file manager. The currently pending transactions (Upload, Delete, and List Files) in the file manager Whether or not the file manager is suspended. If suspended, the file manager can continue to queue uploads and deletes, but will not actually perform any of those until it is no longer suspended. This can be used for throttling down the file manager if other, important operations are taking place over the accessory connection. Initialize the class…or not, since this method is unavailable. Dependencies must be injected using initWithConnectionManager: Creates a new file manager with a specified connection manager The manager stars up and attempts to fetch its initial list and transfer initial files. Cancels all file manager operations and deletes all associated data. Delete a file stored on the remote system Deletes an array of files on the remote file system. The files are deleted in the order in which they are added to the array, with the first file to be deleted at index 0. The delete queue is sequential, meaning that once a delete request is sent to Core, the queue waits until a response is received from Core before the next the next delete request is sent. Upload a file to the remote file system. If a file with the [SDLFile name] already exists, this will overwrite that file. If you do not want that to happen, check remoteFileNames before uploading, or change allowOverwrite to NO. Uploads an array of files to the remote file system. The files will be uploaded in the order in which they are added to the array, with the first file to be uploaded at index 0. The upload queue is sequential, meaning that once a upload request is sent to Core, the queue waits until a response is received from Core before the next the next upload request is sent. Uploads an array of files to the remote file system. The files will be uploaded in the order in which they are added to the array, with the first file to be uploaded at index 0. The upload queue is sequential, meaning that once a upload request is sent to Core, the queue waits until a response is received from Core before the next the next upload request is sent. A URL to the directory where temporary files are stored. When an SDLFile is created with NSData, it writes to a temporary file until the file manager finishes uploading it. Whether or not the file should persist on disk between car ignition cycles. Whether or not the file should overwrite an existing file on the remote disk with the same name. The name the file should be stored under on the remote disk. This is how the file will be referenced in all later calls. The url the local file is stored at while waiting to push it to the remote system. If the data has not been passed to the file URL, this will be nil. The binary data of the SDLFile. If initialized with data, this will be a relatively quick call, but if initialized with a file URL, this is a rather expensive call the first time. The data will be cached in RAM after the first call. The size of the binary data of the SDLFile. The system will attempt to determine the type of file that you have passed in. It will default to BINARY if it does not recognize the file type or the file type is not supported by SDL. A stream to pull binary data from a SDLFile. The stream only pulls required data from the file on disk or in memory. This reduces memory usage while uploading a large file to the remote system as each chunk of data can be released immediately after it is uploaded. Undocumented The designated initializer for an SDL File. The only major property that is not set using this is Create an SDL file using a local file URL. Create an SDL file using a local file URL. Create an SDL file using raw data. It is strongly preferred to pass a file URL instead of data, as it is currently held in memory until the file is sent. Create an SDL file using raw data. It is strongly preferred to pass a file URL instead of data, as it is currently held in memory until the file is sent. Create an SDL file using raw data. It is strongly preferred to pass a file URL instead of data, as it is currently held in memory until the file is sent. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The type of display @abstract An array of SDLTextField structures, each of which describes a field in the HMI which the application can write to using operations such as SDLShow, SDLSetMediaClockTimer, etc. @abstract An array of SDLImageField elements @abstract An array of SDLMediaClockFormat elements, defining the valid string formats used in specifying the contents of the media clock field @abstract The display’s persistent screen supports. @abstract Number of presets the screen supports @abstract A set of all parameters related to a prescribed screen area (e.g. for video / touch input) @abstract The number of on-screen custom presets available (if any); otherwise omitted Undocumented Up to 40 character string representing the phone number. All characters stripped except for ‘0’-'9’, ’*’, ’#’, ’,’, ’;’, and ’+’ Undocumented Undocumented Name of target ECU Length of message (in bytes) Array of bytes comprising CAN message. @abstract Indicates whether the voice recognition is on or off @abstract Indicates whether the bluetooth connection established @abstract Indicates whether a call is being active @abstract Indicates whether the phone is in roaming mode @abstract Indicates whether a textmessage is available @abstract Battery level status @abstract The status of the stereo audio output channel @abstract The status of the mono audio output channel @abstract Signal level status @abstract The current primary audio source of SDL (if selected). @abstract Indicates if an emergency call is active Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract the MenuID that identifies the SDLSubMenu to be delete","parent_name":"SDLDeleteSubMenu"},"Classes/SDLDeleteInteractionChoiceSet.html#/c:objc(cs)SDLDeleteInteractionChoiceSet(im)initWithId:":{"name":"-initWithId:","abstract":" Undocumented @abstract a unique ID that identifies the Choice Set","parent_name":"SDLDeleteInteractionChoiceSet"},"Classes/SDLDeleteFileResponse.html#/c:objc(cs)SDLDeleteFileResponse(py)spaceAvailable":{"name":"spaceAvailable","abstract":" Undocumented Undocumented @abstract a file reference name","parent_name":"SDLDeleteFile"},"Classes/SDLDeleteCommand.html#/c:objc(cs)SDLDeleteCommand(im)initWithId:":{"name":"-initWithId:","abstract":" Undocumented @abstract the Command ID that identifies the Command to be deleted from Command Menu","parent_name":"SDLDeleteCommand"},"Classes/SDLDateTime.html#/c:objc(cs)SDLDateTime(im)initWithHour:minute:":{"name":"-initWithHour:minute:","abstract":" Undocumented Undocumented Undocumented Undocumented @abstract Milliseconds part of time @abstract Seconds part of time @abstract Minutes part of time @abstract Hour part of time @abstract Day of the month @abstract Month of the year @abstract The year in YYYY format @abstract Time zone offset in Min with regard to UTC @abstract Time zone offset in Hours with regard to UTC Undocumented Undocumented Undocumented Undocumented @abstract A unique ID that identifies the Choice Set @abstract Array of choices, which the user can select by menu or voice recognition The lifecycle configuration. The lock screen configuration. The log configuration. The configuration Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, and logging configuration. Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, and logging configuration. Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, logging, and streaming media configuration. Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, logging, and streaming media configuration. Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Speed of Fan in integer @abstract The Current Temperature in SDLTemperature @abstract Desired Temperature in SDLTemperature @abstract Represents if AC is enabled. @abstract Represents if circulation of air is enabled. @abstract Represents if auto mode is enabled. @abstract Represents the kind of defrost zone @abstract Represents if dual mode is enabled. @abstract Represents if ac max is enabled. @abstract Represents the kind of Ventilation zone Undocumented @abstract The short friendly name of the climate control module.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)fanSpeedAvailable":{"name":"fanSpeedAvailable","abstract":" @abstract Availability of the control of fan speed.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)desiredTemperatureAvailable":{"name":"desiredTemperatureAvailable","abstract":" @abstract Availability of the control of desired temperature.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)acEnableAvailable":{"name":"acEnableAvailable","abstract":" @abstract Availability of the control of turn on/off AC.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)acMaxEnableAvailable":{"name":"acMaxEnableAvailable","abstract":" @abstract Availability of the control of enable/disable air conditioning is ON on the maximum level.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)circulateAirEnableAvailable":{"name":"circulateAirEnableAvailable","abstract":" @abstract Availability of the control of enable/disable circulate Air mode.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)autoModeEnableAvailable":{"name":"autoModeEnableAvailable","abstract":" @abstract Availability of the control of enable/disable auto mode.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)dualModeEnableAvailable":{"name":"dualModeEnableAvailable","abstract":" @abstract Availability of the control of enable/disable dual mode.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)defrostZoneAvailable":{"name":"defrostZoneAvailable","abstract":" @abstract Availability of the control of defrost zones.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)defrostZone":{"name":"defrostZone","abstract":" @abstract A set of all defrost zones that are controllable. @abstract Availability of the control of air ventilation mode.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)ventilationMode":{"name":"ventilationMode","abstract":" @abstract A set of all ventilation modes that are controllable.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLChoice.html#/c:objc(cs)SDLChoice(im)initWithId:menuName:vrCommands:":{"name":"-initWithId:menuName:vrCommands:","abstract":" Undocumented Undocumented @abstract the application-scoped identifier that uniquely identifies this choice @abstract Text which appears in menu, representing this choice @abstract VR synonyms for this choice @abstract The image of the choice @abstract Optional secondary text to display; e.g. address of POI in a search result entry @abstract Optional tertiary text to display; e.g. distance to POI for a search result entry @abstract Optional secondary image for choice Undocumented Undocumented @abstract The language the app wants to change to @abstract HMI display language Request a new app name registration Request a new TTSName registration. Request a new app short name registration Request a new VR synonyms registration Undocumented The module where the button should be pressed. The name of supported RC climate or radio button. Indicates whether this is a LONG or SHORT button press event. @abstract The name of the SDL HMI button. @abstract A NSNumber value indicates whether the button supports a SHORT press @abstract A NSNumber value indicates whether the button supports a LONG press @abstract A NSNumber value indicates whether the button supports @abstract References signal @abstract References signal @abstract References signal @abstract References signal @abstract References signal @abstract References signal @abstract References signal Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The sampling rate for AudioPassThru @abstract The sample depth in bit for AudioPassThru @abstract The audiotype for AudioPassThru Convenience Helper to create an ephemeral artwork from an image. Convenience Helper to create a persistent artwork from an image. Create a file for transmission to the remote system from a UIImage. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The String to be displayed in the first field of the display during the Alert @abstract The String to be displayed in the second field of the display during the Alert @abstract the String to be displayed in the third field of the display during the Alert","parent_name":"SDLAlert"},"Classes/SDLAlert.html#/c:objc(cs)SDLAlert(py)ttsChunks":{"name":"ttsChunks","abstract":" @abstract An array which, taken together, specify what is to be spoken to the user @abstract The duration of the displayed portion of the alert, in milliseconds. @abstract Whether the alert tone should be played before the TTS (if any) is spoken. @abstract If supported on the given platform, the alert GUI will include some sort of animation indicating that loading of a feature is progressing. e.g. a spinning wheel or hourglass, etc. @abstract App defined SoftButtons. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract a Menu ID that identifies a sub menu","parent_name":"SDLAddSubMenu"},"Classes/SDLAddSubMenu.html#/c:objc(cs)SDLAddSubMenu(py)position":{"name":"position","abstract":" @abstract a position of menu","parent_name":"SDLAddSubMenu"},"Classes/SDLAddSubMenu.html#/c:objc(cs)SDLAddSubMenu(py)menuName":{"name":"menuName","abstract":" @abstract a menuName which is displayed representing this submenu item","parent_name":"SDLAddSubMenu"},"Classes/SDLAddCommand.html#/c:objc(cs)SDLAddCommand(im)initWithHandler:":{"name":"-initWithHandler:","abstract":" Construct a SDLAddCommand with a handler callback when an event occurs. Undocumented Undocumented Undocumented A handler that will let you know when the button you created is subscribed. @abstract A Unique Command ID that identifies the command @abstract a SDLMenuParams pointer which will defined the command and how it is added to the Command Menu @abstract An array of strings to be used as VR synonyms for this command. @abstract Image struct containing a static or dynamic icon Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented This class will add a command to the application’s Command Menu SDLMenuParams SDLAddCommandResponse is sent, when SDLAddCommand has been called Add a SDLSubMenu to the Command Menu"},"Classes.html#/c:objc(cs)SDLAddSubMenuResponse":{"name":"SDLAddSubMenuResponse","abstract":" SDLAddSubMenuResponse is sent, when SDLAddSubMenu has been called"},"Classes/SDLAirbagStatus.html":{"name":"SDLAirbagStatus","abstract":" Undocumented Shows an alert which typically consists of text-to-speech message and text on the display. At least either alertText1, alertText2 or TTSChunks need to be provided. @since SmartDeviceLink 1.0 SDLAlertManeuverResponse is sent, when SDLAlertManeuver has been called. Sent after SDLAlert has been sent"},"Classes/SDLAppInfo.html":{"name":"SDLAppInfo","abstract":" Undocumented Undocumented Describes different audio type configurations for SDLPerformAudioPassThru, e.g. {8kHz,8-bit,PCM}"},"Classes/SDLBeltStatus.html":{"name":"SDLBeltStatus","abstract":" Undocumented The body information including power modes. Provides information about the capabilities of a SDL HMI button. This RPC allows a remote control type mobile application to simulate a hardware button press event. Undocumented If the app recognizes during the app registration that the SDL HMI language (voice/TTS and/or display) does not match the app language, the app will be able (but does not need) to change this registration with changeRegistration prior to app being brought into focus. SDLChangeRegistrationResponse is sent, when SDLChangeRegistration has been called A choice is an option which a user can select either via the menu or via voice recognition (VR) during an application initiated interaction."},"Classes/SDLClimateControlCapabilities.html":{"name":"SDLClimateControlCapabilities","abstract":" Contains information about a climate control module’s capabilities. Undocumented Undocumented Undocumented Creates a Choice Set which can be used in subsequent SDLPerformInteraction Operations. SDLCreateInteractionChoiceSetResponse is sent, when SDLCreateInteractionChoiceSet"},"Classes/SDLDIDResult.html":{"name":"SDLDIDResult","abstract":" Undocumented Undocumented Removes a command from the Command Menu"},"Classes.html#/c:objc(cs)SDLDeleteCommandResponse":{"name":"SDLDeleteCommandResponse","abstract":" SDLDeleteCommandResponse is sent, when SDLDeleteCommand has been called Used to delete a file resident on the SDL module in the app’s local cache."},"Classes/SDLDeleteFileResponse.html":{"name":"SDLDeleteFileResponse","abstract":" Delete File Response is sent, when DeleteFile has been called Deletes an existing Choice Set identified by the parameter"},"Classes.html#/c:objc(cs)SDLDeleteInteractionChoiceSetResponse":{"name":"SDLDeleteInteractionChoiceSetResponse","abstract":" SDLDeleteInteractionChoiceSetResponse is sent, when SDLDeleteInteractionChoiceSet has been called Deletes a submenu from the Command Menu"},"Classes.html#/c:objc(cs)SDLDeleteSubMenuResponse":{"name":"SDLDeleteSubMenuResponse","abstract":" SDLDeleteSubMenuResponse is sent, when SDLDeleteSubMenu has been called Undocumented Describes the status related to a connected mobile device or SDL and if or how it is represented in the vehicle. Non periodic vehicle diagnostic request SDLDiagnosticMessageResponse is sent, when SDLDiagnosticMessage has been called. This RPC is used to tell the head unit to use bluetooth to dial a phone number using the phone. Indicates the result, success, or failure of the SDLDialNumber request. Contains information about the display for the SDL system to which the application is currently connected. Undocumented Undocumented Undocumented Undocumented When this request is invoked, the audio capture stops SDLEndAudioPassThruResponse is sent, when SDLEndAudioPassThru has been called Undocumented The SDLFileManager is an RPC manager for the remote file system. After it starts, it will attempt to communicate with the remote file system to get the names of all files. Deleting and Uploading will them queue these changes as transactions. If a delete succeeds, the local list of remote files will remove that file name, and likewise, if an upload succeeds, the local list of remote files will now include that file name. Describes the GPS data. Not all data will be available on all carlines. Generic Response is sent, when the name of a received msg cannot be"},"Classes/SDLGetDTCs.html":{"name":"SDLGetDTCs","abstract":" This RPC allows to request diagnostic module trouble codes from a certain"},"Classes/SDLGetDTCsResponse.html":{"name":"SDLGetDTCsResponse","abstract":" SDLGetDTCsResponse is sent, when SDLGetDTCs has been called Reads the current status value of specified remote control module (type)."},"Classes/SDLGetInteriorVehicleDataResponse.html":{"name":"SDLGetInteriorVehicleDataResponse","abstract":" Undocumented Undocumented Undocumented Requests surrent values of specific published vehicle data items."},"Classes/SDLGetVehicleDataResponse.html":{"name":"SDLGetVehicleDataResponse","abstract":" Get Vehicle Data Response is sent, when SDLGetVehicleData has been called Undocumented Undocumented Undocumented Defining sets of HMI levels, which are permitted or prohibited for a given RPC. Defines spatial for each user control object for video streaming application Status of the head lamps Undocumented Specifies, which image shall be used, e.g. in SDLAlerts or on SDLSoftbuttons provided the display supports it. Undocumented Undocumented Undocumented Configuration options for SDLManager Requests the current list of resident filenames for the registered app. Not"},"Classes/SDLListFilesResponse.html":{"name":"SDLListFilesResponse","abstract":" SDLListFilesResponse is sent, when SDLListFiles has been called Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented This is the central manager of logging. A developer should not have to interact with this class, it is exclusively used internally. The Apple System Log target is an iOS 2.0+ compatible log target that logs to both the Console and to the System Log. The File log will log to a text file on the iPhone in Documents/smartdevicelink/log/#appName##datetime##.log. It will log up to 3 logs which will rollover. OS_LOG is an iOS 10+ only logging system that logs to the Console and the Apple system console. This is an improved replacement for Apple SysLog (SDLLogTargetAppleSystemLog). Undocumented Used when adding a sub menu to an application menu or existing sub menu. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Notifies an application that its interface registration has been terminated. This means that all SDL resources associated with the application are discarded, including the Command Menu, Choice Sets, button subscriptions, etc. Binary data is in binary part of hybrid msg. Notifies application that user has depressed or released a button to which"},"Classes/SDLOnButtonPress.html":{"name":"SDLOnButtonPress","abstract":" Notifies application of button press events for buttons to which the"},"Classes/SDLOnCommand.html":{"name":"SDLOnCommand","abstract":" This is called when a command was selected via VR after pressing the PTT button, or selected from the menu after"},"Classes/SDLOnDriverDistraction.html":{"name":"SDLOnDriverDistraction","abstract":" Notifies the application of the current driver distraction state (whether driver distraction rules are in effect, or"},"Classes/SDLOnEncodedSyncPData.html":{"name":"SDLOnEncodedSyncPData","abstract":" Undocumented Notifies an application that HMI conditions have changed for the application. This indicates whether the application"},"Classes/SDLOnHashChange.html":{"name":"SDLOnHashChange","abstract":" Undocumented Undocumented Undocumented Provides information to what language the SDL HMI language was changed Provides update to app of which sets of functions are available Undocumented Undocumented Undocumented Undocumented Request vehicle data. Undocumented Defining sets of parameters, which are permitted or prohibited for a given RPC. This will open an audio pass thru session. By doing so the app can receive"},"Classes.html#/c:objc(cs)SDLPerformAudioPassThruResponse":{"name":"SDLPerformAudioPassThruResponse","abstract":" Perform Audio Pass Thru Response is sent, when PerformAudioPassThru has been called Performs an application-initiated interaction in which the user can select a"},"Classes/SDLPerformInteractionResponse.html":{"name":"SDLPerformInteractionResponse","abstract":" PerformInteraction Response is sent, when SDLPerformInteraction has been called Undocumented Undocumented Undocumented Undocumented Contains information about on-screen preset capabilities. Undocumented Undocumented Undocumented Undocumented Undocumented Used to push a binary data onto the SDL module from a mobile device, such as"},"Classes/SDLPutFileResponse.html":{"name":"SDLPutFileResponse","abstract":" Put File Response is sent, when SDLPutFile has been called Include the data defined in Radio Data System,"},"Classes/SDLRPCMessage.html":{"name":"SDLRPCMessage","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Contains information about a radio control module’s capabilities. Include information (both read-only and changeable data) about a remote control radio module. Non periodic vehicle data read request. This is an RPC to get diagnostics"},"Classes/SDLReadDIDResponse.html":{"name":"SDLReadDIDResponse","abstract":" Read DID Response is sent, when ReadDID has been called Undocumented Registers the application’s interface with SDL®, declaring properties of"},"Classes/SDLRegisterAppInterfaceResponse.html":{"name":"SDLRegisterAppInterfaceResponse","abstract":" @abstract Register AppInterface Response is sent, when SDLRegisterAppInterface has been called Undocumented Resets the passed global properties to their default values as defined by"},"Classes.html#/c:objc(cs)SDLResetGlobalPropertiesResponse":{"name":"SDLResetGlobalPropertiesResponse","abstract":" Reset Global Properties Response is sent, when SDLResetGlobalProperties has been called Undocumented Creates a full screen overlay containing a large block of formatted text that"},"Classes.html#/c:objc(cs)SDLScrollableMessageResponse":{"name":"SDLScrollableMessageResponse","abstract":" Scrollable Message Response is sent, when SDLScrollableMessage has been called Sends the spatial data gathered from SDLCarWindow or VirtualDisplayEncoder to the HMI. This data will be utilized by the HMI to determine how and when haptic events should occur. SDLSendHapticDataResponse is sent when SDLSendHapticData has been called Undocumented Undocumented Used to set existing local file on SDL as the app’s icon. Not supported on"},"Classes.html#/c:objc(cs)SDLSetAppIconResponse":{"name":"SDLSetAppIconResponse","abstract":" SDLSetAppIconResponse is sent, when SDLSetAppIcon has been called. Used to set an alternate display layout. If not sent, default screen for"},"Classes/SDLSetDisplayLayoutResponse.html":{"name":"SDLSetDisplayLayoutResponse","abstract":" Set Display Layout Response is sent, when SetDisplayLayout has been called Sets value(s) for the specified global property(ies)"},"Classes.html#/c:objc(cs)SDLSetGlobalPropertiesResponse":{"name":"SDLSetGlobalPropertiesResponse","abstract":" Set Global Properties Response is sent, when SDLSetGlobalProperties has been called This RPC allows a remote control type mobile application to"},"Classes/SDLSetInteriorVehicleDataResponse.html":{"name":"SDLSetInteriorVehicleDataResponse","abstract":" Used to set the values of one remote control module Sets the media clock/timer value and the update method (e.g.count-up,"},"Classes.html#/c:objc(cs)SDLSetMediaClockTimerResponse":{"name":"SDLSetMediaClockTimerResponse","abstract":" Set Media Clock Timer Response is sent, when SDLSetMediaClockTimer has been called Updates the application’s display text area, regardless of whether or not"},"Classes/SDLShowConstantTBT.html":{"name":"SDLShowConstantTBT","abstract":" This RPC is used to update the user with navigation information SDLShowConstantTBTResponse is sent, when SDLShowConstantTBT has been called. Show Response is sent, when Show has been called Tire pressure status of a single tire. Creates a full screen or pop-up overlay (depending on platform) with a single user controlled slider Slider Response is sent, when Slider has been called Undocumented Contains information about a SoftButton’s capabilities. Speaks a phrase over the vehicle audio system using SDL’s TTS (text-to-speech) engine. The provided text to be spoken can be simply a text phrase, or it can consist of phoneme specifications to direct SDL’s TTS engine to speak a Speak Response is sent, when Speak has been called Describes the hour, minute and second values used to set the media clock. Undocumented Undocumented Establishes a subscription to button notifications for HMI buttons. Buttons"},"Classes.html#/c:objc(cs)SDLSubscribeButtonResponse":{"name":"SDLSubscribeButtonResponse","abstract":" SubscribeButton Response is sent, when SDLSubscribeButton has been called Subscribes for specific published vehicle data items. The data will be only"},"Classes/SDLSubscribeVehicleDataResponse.html":{"name":"SDLSubscribeVehicleDataResponse","abstract":" Subscribe Vehicle Data Response is sent, when SDLSubscribeVehicleData has been called A SDLSubscribeWaypoints can be sent to subscribe"},"Classes.html#/c:objc(cs)SDLSubscribeWayPointsResponse":{"name":"SDLSubscribeWayPointsResponse","abstract":" Undocumented Specifies the version number of the SDL V4 interface. This is used by both the application and SDL to declare what interface version each is using. Undocumented Undocumented The systemCapabilityType indicates which type of data should be changed and identifies which data object exists in this struct. For example, if the SystemCapability Type is NAVIGATION then a Undocumented Specifies what is to be spoken. This can be simply a text phrase, which SDL will speak according to its own rules. It can also be phonemes from either the Microsoft SAPI phoneme set, or from the LHPLUS phoneme set. It can also be a pre-recorded sound in WAV format (either developer-defined, or provided by the SDL platform). Undocumented Struct defining the characteristics of a displayed field on the HMI. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Terminates an application’s interface registration. This causes SDL® to"},"Classes.html#/c:objc(cs)SDLUnregisterAppInterfaceResponse":{"name":"SDLUnregisterAppInterfaceResponse","abstract":" Unregister AppInterface Response is sent, when SDLUnregisterAppInterface has been called Deletes a subscription to button notifications for the specified button. For"},"Classes.html#/c:objc(cs)SDLUnsubscribeButtonResponse":{"name":"SDLUnsubscribeButtonResponse","abstract":" Unsubscribe Button Response is sent, when SDLUnsubscribeButton has been called This function is used to unsubscribe the notifications from the"},"Classes/SDLUnsubscribeVehicleDataResponse.html":{"name":"SDLUnsubscribeVehicleDataResponse","abstract":" Unsubscribe Vehicle Data Response is sent, when UnsubscribeVehicleData has been called Undocumented Undocumented Updates the list of next maneuvers, which can be requested by the user pressing the softbutton SDLUpdateTurnListResponse is sent, when SDLUpdateTurnList has been called. Undocumented Describes the type of vehicle the mobile phone is connected with. Undocumented Undocumented Undocumented Undocumented Undocumented The following categories are available globally. The following classes are available globally. The following constants are available globally. The following enums are available globally. The following protocols are available globally. The following type definitions are available globally. Undocumented Undocumented Reflects the status of the ambient light sensor"},"Type Definitions.html#/c:SDLAppHMIType.h@T@SDLAppHMIType":{"name":"SDLAppHMIType","abstract":" Enumeration listing possible app hmi types. Indicates reason why app interface was unregistered. The application is being disconnected by SDL. Describes whether or not streaming audio is currently audible to the user. Though provided in every OnHMIStatus notification, this information is only relevant for applications that declare themselves as media apps in RegisterAppInterface Describes different audio type options for PerformAudioPassThru Describes different bit depth options for PerformAudioPassThru Indicates whether the button was depressed or released. A BUTTONUP event will always be preceded by a BUTTONDOWN event. Defines logical buttons which, on a given SDL unit, would correspond to"},"Type Definitions.html#/c:SDLButtonPressMode.h@T@SDLButtonPressMode":{"name":"SDLButtonPressMode","abstract":" Indicates whether this is a LONG or SHORT button press Describes the carmode the vehicle is in. Character sets supported by SDL. The list of potential compass directions. The volume status of a vehicle component. Enumeration listing possible defrost zones. Specifies the mode in which the sendLocation request is sent. Reflects the reported battery status of the connected device, if reported. The supported dimensions of the GPS. Identifies the various display types used by SDL. Enumeration that describes possible states of driver distraction. Reflects the status of the eCall Notification."},"Type Definitions.html#/c:SDLEmergencyEventType.h@T@SDLEmergencyEventType":{"name":"SDLEmergencyEventType","abstract":" Reflects the emergency event status of the vehicle."},"Type Definitions.html#/c:SDLEnum.h@T@SDLEnum":{"name":"SDLEnum","abstract":" Undocumented Undocumented Undocumented A completion handler called after a response from Core to a upload request. A completion handler called after a set of upload requests has completed. In a multiple request send, a handler called after each response from Core to a upload request. A completion handler called after a response from Core to a delete request. A completion handler called after a set of delete requests has completed. A completion handler called after response from Core to a list files request. Enumeration listing possible file types. Reflects the status of the Restraints Control Module fuel pump cutoff."},"Type Definitions.html#/c:SDLGlobalProperty.h@T@SDLGlobalProperty":{"name":"SDLGlobalProperty","abstract":" Properties of a user-initiated VR interaction (i.e. interactions started by the user pressing the PTT button). Specifies current level of the HMI. An HMI level indicates the degree of user interaction possible through the HMI (e.g. TTS only, display only, VR, etc.). The HMI level varies for an application based on the type of display (i.e. Nav or non-Nav) and the user directing Specifies HMI Zones in the vehicle. Reflects the ignition switch stability. Reflects the status of ignition.. The name that identifies the filed."},"Type Definitions.html#/c:SDLImageType.h@T@SDLImageType":{"name":"SDLImageType","abstract":" Contains information about the type of image. For application-initiated interactions (SDLPerformInteraction), this specifies the mode by which the user is prompted and by which the user’s selection is indicated Enumeration listing possible keyboard events."},"Type Definitions.html#/c:SDLKeyboardLayout.h@T@SDLKeyboardLayout":{"name":"SDLKeyboardLayout","abstract":" Enumeration listing possible keyboard layouts"},"Type Definitions.html#/c:SDLKeypressMode.h@T@SDLKeypressMode":{"name":"SDLKeypressMode","abstract":" Enumeration listing possible keyboard events. Specifies the language to be used for TTS, VR, displayed messages/menus For touchscreen interactions, the mode of how the choices are presented. Undocumented A block that takes in a log model and returns whether or not the log passes the filter and should therefore be logged. The SDLMaintenanceModeStatus class. Undocumented Indicates the format of the time displayed on the connected SDL unit. Text Field Types Undocumented Undocumented Undocumented A handler used on SDLPerformAudioPassThru. A handler used on all RPC requests which fires when the response is received. A handler that may optionally be run when an SDLSubscribeButton or SDLSoftButton has a corresponding notification occur. A handler that may optionally be run when an SDLAddCommand has a corresponding notification occur. The selected gear the car is in. Undocumented Undocumented The PermissionObserver is a block that is passed in to some methods that will be stored and called when specified permissions change. Enumeration that describes possible permission states of a policy table entry. Undocumented Undocumented Undocumented Undocumented Reflects the current primary audio source of SDL (if selected). Undocumented List possible states of a remote control radio module. Undocumented Defines the possible result codes returned by SDL to the application in a response to a requested operation Describes different sampling rates for PerformAudioPassThru SoftButtonType (TEXT / IMAGE / BOTH) Undocumented Enumeration that describes system actions that can be triggered. The type of system capability to get more information on Indicates whether or not a user-initiated interaction is in progress, and if so, in what mode (i.e. MENU or VR). Undocumented Undocumented The list of possible alignments of text in a field. May only work on some display types. Names of the text fields that can appear on a SDL display. Undocumented Undocumented Undocumented Undocumented Indicates whether choice/command was selected via VR or via a menu selection (using SEEKRIGHT/SEEKLEFT, TUNEUP, TUNEDOWN, OK buttons) Specifies what function should be performed on the media clock/counter Vehicle Data Activity Status Reflects the status of a vehicle data event; e.g. a seat belt event status. Reflects the status of a vehicle data notification. Vehicle Data Result Code Reflects the status of a binary vehicle data item. Defines the vehicle data types that can be published and/or subscribed to using SDLSubscribeVehicleData Undocumented Enum for each type of video streaming codec Enum for each type of video streaming protocol The VR capabilities of the connected SDL platform. Reflects the status of a cluster instrument warning light. Undocumented Wiper Status Undocumented Undocumented Undocumented A single tap was received A double tap was received Panning started Panning moved between points Panning ended Panning canceled Pinch did start @abstract","parent_name":"SDLTouchManagerDelegate"},"Protocols/SDLTouchManagerDelegate.html#/c:objc(pl)SDLTouchManagerDelegate(im)touchManager:didReceivePinchInView:atCenterPoint:withScale:":{"name":"-touchManager:didReceivePinchInView:atCenterPoint:withScale:","abstract":" Pinch moved and changed scale Pinch did end Pinch canceled Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Called upon a disconnection from the remote system. Called when the HMI level state of this application changes on the remote system. This is equivalent to the application’s state changes in iOS such as foreground, background, or closed. Called when the audio streaming state of this application changes on the remote system. This refers to when streaming audio is audible to the user. Called when the system context of this application changes on the remote system. This refers to whether or not a user-initiated interaction is in progress, and if so, what it is. A simple convenience initializer to create the object. This should not start up the logger. A call to setup the logger in whatever manner it needs to do so. Log a particular log using the model and the formatted log message to the target. Undocumented Undocumented Undocumented A decleration that this NSNumber contains an NSInteger. A declaration that this NSNumber contains an NSUInteger. A declaration that this NSNumber contains a BOOL. A declaration that this NSNumber contains a float. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Every RPC in the group is currently allowed. Every RPC in the group is currently disallowed. Some RPCs in the group are allowed and some disallowed. The current status of the group is unknown. Be notified when all of the RPC in the group are allowed, or, when they all stop being allowed in some sense, that is, when they were all allowed, and now they are not. Be notified when any change in availability occurs among the group. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented A file attempted to send, but a file with that name already exists on the remote head unit, and the file was not configured to overwrite. A file was attempted to be accessed but it does not exist. The file manager attempted to start but encountered an error. The file manager was unable to send this file. The file manager could not find the local file. The file manager could not find the local file. The file manager could not find the local file. The file manager could not find the local file. An RPC request failed to send. Some action was attempted that requires a connection to the remote head unit. Some action was attempted before the ready state was reached. The remote system encountered an unknown error. One or more of the sub-managers failed to start. Registering with the remote system failed. Registering with the remote system was successful, but had a warning. Undocumented Undocumented Undocumented Errors associated with the SDLManager class. Errors associated with the SDLFileManager class. Undocumented Flags used for SDLLogLevel to provide correct enum values. This is purely for internal use. An enum describing a level of logging. The output format of logs; how they will appear when printed out into a string. A permission group type which will be used to tell the system what type of changes you want to be notified about for the group. The status of the group of RPCs permissions. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The App will have default rights. @abstract Communication type of App @abstract App dealing with Media @abstract Messaging App @abstract Navigation App @abstract Information App @abstract App dealing with social media @abstract App dealing with Mobile Projection applications Undocumented @abstract App only for Testing purposes @abstract System App @abstract Remote control @abstract Vehicle ignition turned off. @abstract Bluetooth was turned off, causing termination of a necessary Bluetooth connection. @abstract USB was disconnected, causing termination of a necessary iAP connection. @abstract Application attempted SmartDeviceLink RPC request while HMILevel = NONE. App must have HMILevel other than NONE to issue RPC requests or get notifications or RPC responses. @abstract Either too many – or too many per unit of time – requests were made by the application. @abstract The application has issued requests which cause driver distraction rules to be violated. @abstract The user performed a language change on the SDL platform, causing the application to need to be reregistered for the new language. @abstract The user performed a MASTER RESET on the SDL platform, causing removal of a necessary Bluetooth pairing. @abstract The user restored settings to FACTORY DEFAULTS on the SDL platform. @abstract The app is not being authorized to be connected to SDL. @abstract Currently streaming audio, if any, is audible to user. @abstract Some kind of audio mixing is taking place. Currently streaming audio, if any, is audible to the user at a lowered volume. @abstract Currently streaming audio, if any, is not audible to user. made via VR session. @abstract PCM raw audio @abstract 8 bits per sample @abstract 16 bits per sample @abstract The button was released @abstract The button was depressed @abstract Represents the button usually labeled @abstract Represents the seek-left button. A typical use of this button is for the user to scroll to the left through menu choices one menu item per press. @abstract Represents the seek-right button. A typical use of this button is for the user to scroll to the right through menu choices one menu item per press. @abstract Represents a turn of the tuner knob in the clockwise direction one tick. @abstract Represents a turn of the tuner knob in the counter-clockwise direction one tick. @abstract Represents the preset 0 button. @abstract Represents the preset 1 button. @abstract Represents the preset 2 button. @abstract Represents the preset 3 button. @abstract Represents the preset 4 button. @abstract Represents the preset 5 button. @abstract Represents the preset 6 button. @abstract Represents the preset 7 button. @abstract Represents the preset 8 button. @abstract Represents the preset 9 button. @abstract Represents the Custom button. @abstract Represents the SEARCH button. @abstract Represents AC max button * @abstract Represents AC button * @abstract Represents a Recirculate button @abstract Represents a Fan up button @abstract Represents a fan down button @abstract Represents a temperature up button @abstract Represents a temperature down button @abstract Represents a Defrost max button. @abstract Represents a Defrost button. @abstract Represents a Defrost rear button. @abstract Represents a Upper Vent button. @abstract Represents a Lower vent button. @abstract Represents a volume up button. @abstract Represents a volume down button. @abstract Represents a Eject Button. @abstract Represents a Source button. @abstract Represents a SHUFFLE button. @abstract Represents a Repeat button. @abstract A button was released, after it was pressed for a long time. Actual timing is defined by the head unit and may vary. @abstract A button was released, after it was pressed for a short time. Actual timing is defined by the head unit and may vary. Provides carmode NORMAL to each module. Provides carmode FACTORY to each module. Provides carmode TRANSPORT to each module. Provides carmode CRASH to each module. Undocumented Undocumented Undocumented Undocumented @abstract Direction North @abstract Direction Northwest @abstract Direction West @abstract Direction Southwest @abstract Direction South @abstract Direction Southeast @abstract Direction East @abstract Direction Northeast @abstract Unknown SDLComponentVolumeStatus @abstract Normal SDLComponentVolumeStatus @abstract Low SDLComponentVolumeStatus @abstract Fault SDLComponentVolumeStatus @abstract Alert SDLComponentVolumeStatus @abstract Not supported SDLComponentVolumeStatus @abstract A SDLDefrostZone with the value of FRONT @abstract A SDLDefrostZone with the value of REAR @abstract A SDLDefrostZone with the value of All @abstract A SDLDefrostZone with the value of None @abstract User is prompted on HMI @abstract Set the location as destination without prompting the user @abstract Adds the current location to navigation queue @abstract Device battery level is zero bars @abstract Device battery level is one bar @abstract Device battery level is two bars @abstract Device battery level is three bars @abstract Device battery level is four bars @abstract Device battery level is unknown @abstract No GPS at all @abstract Longitude and latitude of the GPS @abstract Longitude and latitude and altitude of the GPS @abstract This display type provides a 2-line x 20 character Undocumented Undocumented @abstract This display type provides an 8 inch touchscreen display. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Driver distraction rules are in effect. @abstract Driver distraction rules are NOT in effect. No E-Call signal triggered. An E-Call is being in progress. CALL_CANCELLED An E-Call was cancelled by the user. The E-Call sequence is completed. An E-Call could not be connected. E-Call is not configured on this vehicle. E-Call is considered to be complete without Emergency Operator contact. No emergency event has happened. Frontal collision has happened. Side collision has happened. Rear collision has happened. A rollover event has happened. The signal is not supported Emergency status cannot be determined @abstract file type: Bitmap (BMP) @abstract file type: JPEG @abstract file type: PNG @abstract file type: WAVE (WAV) @abstract file type: MP3 @abstract file type: AAC @abstract file type: BINARY @abstract file type: JSON @abstract Fuel is cut off @abstract Fuel is not cut off @abstract Status of the fuel pump cannot be determined @abstract The help prompt to be spoken if the user needs assistance during a user-initiated interaction. @abstract The prompt to be spoken if the user-initiated interaction times out waiting for the user’s verbal input. Undocumented Undocumented Undocumented Undocumented Undocumented The application has full use of the SDL HMI. The app may output via TTS, display, or streaming audio and may gather input via VR, Menu, and button presses This HMI Level is only defined for a media application using an HMI with an 8 inch touchscreen (Nav) system. The application’s Show text is displayed and it receives button presses from media-oriented buttons (SEEKRIGHT, SEEKLEFT, TUNEUP, TUNEDOWN, PRESET_0-9) App cannot interact with user via TTS, VR, Display or Button Presses. App can perform the following operations: Application has been discovered by SDL, but it cannot send any requests or receive any notifications @abstract Indicates HMI available for front seat passengers. @abstract Indicates HMI available for rear seat passengers. @abstract The current ignition switch status is considered not to be stable. @abstract The current ignition switch status is considered to be stable. Undocumented @abstract Ignition status currently unknown @abstract Ignition is off @abstract Ignition is in mode accessory @abstract Ignition is in mode run @abstract Ignition is in mode start @abstract Signal is invalid The image field for SoftButton"},"Constants.html#/c:@SDLImageFieldNameChoiceImage":{"name":"SDLImageFieldNameChoiceImage","abstract":" The first image field for Choice."},"Constants.html#/c:@SDLImageFieldNameChoiceSecondaryImage":{"name":"SDLImageFieldNameChoiceSecondaryImage","abstract":" The scondary image field for Choice."},"Constants.html#/c:@SDLImageFieldNameVoiceRecognitionHelpItem":{"name":"SDLImageFieldNameVoiceRecognitionHelpItem","abstract":" The image field for vrHelpItem."},"Constants.html#/c:@SDLImageFieldNameTurnIcon":{"name":"SDLImageFieldNameTurnIcon","abstract":" The image field for Turn."},"Constants.html#/c:@SDLImageFieldNameMenuIcon":{"name":"SDLImageFieldNameMenuIcon","abstract":" The image field for the menu icon in SetGlobalProperties."},"Constants.html#/c:@SDLImageFieldNameCommandIcon":{"name":"SDLImageFieldNameCommandIcon","abstract":" The image filed for AddCommand."},"Constants.html#/c:@SDLImageFieldNameAppIcon":{"name":"SDLImageFieldNameAppIcon","abstract":" The image field for the app icon (set by setAppIcon)."},"Constants.html#/c:@SDLImageFieldNameGraphic":{"name":"SDLImageFieldNameGraphic","abstract":" The image filed for Show."},"Constants.html#/c:@SDLImageFieldNameShowConstantTBTIcon":{"name":"SDLImageFieldNameShowConstantTBTIcon","abstract":" The primary image field for ShowConstant TBT."},"Constants.html#/c:@SDLImageFieldNameShowConstantTBTNextTurnIcon":{"name":"SDLImageFieldNameShowConstantTBTNextTurnIcon","abstract":" The secondary image field for ShowConstant TBT."},"Constants.html#/c:@SDLImageFieldNameLocationImage":{"name":"SDLImageFieldNameLocationImage","abstract":" The optional image of a destination / location"},"Constants.html#/c:@SDLImageTypeStatic":{"name":"SDLImageTypeStatic","abstract":" @abstract Just the static hex icon value to be used @abstract Binary image file to be used (identifier to be sent by SDLPutFile) @abstract Interaction Mode : Manual Only"},"Constants.html#/c:@SDLInteractionModeVoiceRecognitionOnly":{"name":"SDLInteractionModeVoiceRecognitionOnly","abstract":" @abstract Interaction Mode : VR Only"},"Constants.html#/c:@SDLInteractionModeBoth":{"name":"SDLInteractionModeBoth","abstract":" @abstract Interaction Mode : Manual & VR"},"Constants.html#/c:@SDLKeyboardEventKeypress":{"name":"SDLKeyboardEventKeypress","abstract":" The use has pressed the keyboard key (applies to both SINGLE_KEYPRESS and RESEND_CURRENT_ENTRY modes)."},"Constants.html#/c:@SDLKeyboardEventSubmitted":{"name":"SDLKeyboardEventSubmitted","abstract":" The User has finished entering text from the keyboard and submitted the entry."},"Constants.html#/c:@SDLKeyboardEventCancelled":{"name":"SDLKeyboardEventCancelled","abstract":" The User has pressed the HMI-defined The User has not finished entering text and the keyboard is aborted with the event of higher priority."},"Constants.html#/c:@SDLKeyboardEventVoice":{"name":"SDLKeyboardEventVoice","abstract":" @since SDL 4.0 QWERTY layout (the name comes from the first six keys QWERTZ layout (the name comes from the first six keys AZERTY layout (the name comes from the first six keys SINGLE_KEYPRESS: QUEUE_KEYPRESSES: RESEND_CURRENT_ENTRY: Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Spanish - Mexico @abstract French - Canada @abstract German - Germany @abstract Spanish - Spain @abstract English - Great Britain @abstract Russian - Russia @abstract Turkish - Turkey @abstract Polish - Poland @abstract French - France @abstract Italian - Italy @abstract Swedish - Sweden @abstract Portuguese - Portugal @abstract Dutch (Standard) - Netherlands @abstract English - Australia @abstract Mandarin - China @abstract Mandarin - Taiwan @abstract Japanese - Japan @abstract Arabic - Saudi Arabia @abstract Korean - South Korea @abstract Portuguese - Brazil @abstract Czech - Czech Republic @abstract Danish - Denmark @abstract Norwegian - Norway This mode causes the interaction to display the previous set of choices as icons. This mode causes the interaction to display the previous set of choices as icons along with a search field in the HMI. This mode causes the interaction to display the previous set of choices as a list. This mode causes the interaction to display the previous set of choices as a list along with a search field in the HMI. This mode causes the interaction to immediately display a keyboard entry through the HMI. LockScreen is Not Required LockScreen is Optional LockScreen is Not Required @abstract Maintenance Mode Status : Normal @abstract Maintenance Mode Status : Near @abstract Maintenance Mode Status : Active @abstract Maintenance Mode Status : Feature not present @abstract Media clock format: Clock1 @abstract Media clock format: Clock2 @abstract Media clock format: Clock3 @abstract Media clock format: ClockText1 @abstract Media clock format: ClockText2 @abstract Media clock format: ClockText3 @abstract Media clock format: ClockText4 @abstract SDLMetadataType: mediaTitle @abstract SDLMetadataType: mediaArtist @abstract SDLMetadataType: mediaAlbum @abstract SDLMetadataType: mediaYear @abstract SDLMetadataType: mediaGenre @abstract SDLMetadataType: mediaStation @abstract SDLMetadataType: rating @abstract SDLMetadataType: currentTemperature @abstract SDLMetadataType: maximumTemperature @abstract SDLMetadataType: minimumTemperature @abstract SDLMetadataType: weatherTerm @abstract SDLMetadataType: humidity @abstract A SDLModuleType with the value of CLIMATE @abstract A SDLModuleType with the value of RADIO Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Park @abstract Reverse gear @abstract No gear @abstract: Drive gear @abstract Drive Sport mode @abstract 1st gear hold @abstract First gear @abstract Second gear @abstract Third gear @abstract Fourth gear @abstract Fifth gear @abstract Sixth gear @abstract Seventh gear @abstract Eighth gear @abstract Unknown @abstract Fault @abstract permission: allowed @abstract permission: disallowed @abstract permission: user disallowed @abstract permission: user consent pending Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Currently no source selected @abstract USB is current source @abstract USB2 is current source @abstract Bluetooth Stereo is current source @abstract Line in is current source @abstract iPod is current source @abstract Mobile app is current source Undocumented @abstract Represents AM radio band @abstract Represents FM radio band @abstract Represents XM radio band @abstract Represents Radio state as ACQUIRING @abstract Represents Radio state as ACQUIRED @abstract Represents Radio state as MULTICAST @abstract Represents Radio state as NOT_FOUND Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The request succeeded @abstract Result code : Invalid Data Undocumented @abstract The request is not supported by SDL @abstract The system could not process the request because the necessary memory couldn’t be allocated @abstract There are too many requests pending (means that the response has not been delivered yet). @abstract One of the provided IDs is not valid."},"Constants.html#/c:@SDLResultDuplicateName":{"name":"SDLResultDuplicateName","abstract":" @abstract The provided name or synonym is a duplicate of some already-defined name or synonym. There are already too many registered applications. RegisterApplication has been called again, after a RegisterApplication was successful before. The Head Unit doesn’t support the protocol that is requested by the mobile application. The requested language is currently not supported. Might be because of a mismatch of the currently active language on the head unit and the requested language. A command can not be executed because no application has been registered with RegisterApplication. The data may not be changed, because it is currently in use. For example when trying to delete a command set that is currently involved in an interaction. The user has turned off access to vehicle data, and it is globally unavailable to mobile applications. The requested vehicle data is not available on this vehicle or is not published. The requested command was rejected, e.g. because mobile app is in background and cannot perform any HMI commands. Or an HMI command (e.g. Speak) is rejected because a higher priority HMI command (e.g. Alert) is playing. A command was aborted, for example due to user interaction (e.g. user pressed button). Or an HMI command (e.g. Speak) is aborted because a higher priority HMI command (e.g. Alert) was requested. A command was ignored, because the intended result is already in effect. For example, SetMediaClockTimer was used to pause the media clock although the clock is paused already. A button that was requested for subscription is not supported under the current system. A specified file could not be found on the head unit. Provided data is valid but something went wrong in the lower layers. RPC is not authorized in local policy table. RPC is included in a functional group explicitly blocked by the user. Overlay reached the maximum timeout and closed. User selected to Cancel Route. The RPC (e.g. ReadDID) executed successfully but the data exceeded the platform maximum threshold and thus, only part of the data is available. The user interrupted the RPC (e.g. PerformAudioPassThru) and indicated to start over. Note, the app must issue the new RPC. The RPC (e.g. SubscribeVehicleData) executed successfully but one or more items have a warning or failure. The RPC (e.g. Slider) executed successfully and the user elected to save the current position / value. The certificate provided during authentication is invalid. The certificate provided during authentication is expired. The provided hash ID does not match the hash of the current set of registered data or the core could not resume the previous data. The requested data is not available on this vehicle or is not published for the connected app. The requested data is read only thus cannot be change via remote control . @abstract Sampling rate of 8 kHz @abstract Sampling rate of 16 kHz @abstract Sampling rate of 22 kHz @abstract Sampling rate of 44 kHz @abstract Text kind Softbutton @abstract Image kind Softbutton @abstract Both (Text & Image) kind Softbutton @abstract The SDL platform can speak text phrases. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Default_Action @abstract Steal_Focus @abstract Keep_Context @abstract NAVIGATION @abstract PHONE_CALL @abstract VIDEO_STREAMING @abstract REMOTE_CONTROL @abstract No user interaction (user-initiated or app-initiated) is in progress. @abstract VR-oriented, user-initiated or app-initiated interaction is in-progress. @abstract Menu-oriented, user-initiated or app-initiated interaction is in-progress. @abstract The app’s display HMI is currently being obscured by either a system or other app’s overlay. @abstract Broadcast only to whichever app has an alert currently being displayed. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Reflects the current HMI setting for temperature unit in Celsius"},"Constants.html#/c:@SDLTemperatureUnitFahrenheit":{"name":"SDLTemperatureUnitFahrenheit","abstract":" @abstract Reflects the current HMI setting for temperature unit in Fahrenheit"},"Constants.html#/c:@SDLTextAlignmentLeft":{"name":"SDLTextAlignmentLeft","abstract":" @abstract Text aligned left. @abstract Text aligned right. @abstract Text aligned centered. @abstract The first line of the first set of main fields of the persistent display. Applies to SDLShow. @abstract The second line of the first set of main fields of the persistent display. Applies to SDLShow. @abstract The first line of the second set of main fields of the persistent display. Applies to SDLShow. @abstract The second line of the second set of main fields of the persistent display. Applies to SDLShow. @abstract The status bar on the NGN display. Applies to SDLShow. @abstract Text value for MediaClock field. Must be properly formatted according to MediaClockFormat. Applies to SDLShow. @abstract The track field of NGN type ACMs. This field is only available for media applications on a NGN display. Applies to SDLShow. @abstract The first line of the alert text field. Applies to SDLAlert. @abstract The second line of the alert text field. Applies to SDLAlert. @abstract The third line of the alert text field. Applies to SDLAlert. @abstract Long form body of text that can include newlines and tabs. Applies to SDLScrollableMessage. @abstract First line suggestion for a user response (in the case of VR enabled interaction). @abstract First line of navigation text. @abstract Second line of navigation text. @abstract Estimated Time of Arrival time for navigation. @abstract Total distance to destination for navigation. @abstract First line of text for audio pass thru. @abstract Second line of text for audio pass thru. @abstract Header text for slider. @abstract Footer text for slider Primary text for SDLChoice Secondary text for SDLChoice Tertiary text for SDLChoice Optional text to label an app menu button (for certain touchscreen platforms) Optional name / title of intended location for SDLSendLocation Optional description of intended location / establishment (if applicable) for SDLSendLocation Optional location address (if applicable) for SDLSendLocation Optional hone number of intended location / establishment (if applicable) for SDLSendLocation Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Selection made via menu @abstract Selection made via Voice session @abstract Selection made via Keyboard @abstract Starts the media clock timer counting upward, in increments of 1 second. @abstract Starts the media clock timer counting downward, in increments of 1 second. @abstract Pauses the media clock timer. @abstract Resumes the media clock timer. The timer resumes counting in whatever mode was in effect before pausing (i.e. COUNTUP or COUNTDOWN). @abstract Clear the media clock timer. @abstract SDLVehicleDataActiveStatus : Inactive not confirmed @abstract SDLVehicleDataActiveStatus : Inactive confirmed @abstract SDLVehicleDataActiveStatus : Active not confirmed @abstract SDLVehicleDataActiveStatus : Active confirmed @abstract SDLVehicleDataActiveStatus : Fault Undocumented Undocumented Undocumented @abstract Vehicle data event is not supported @abstract The SDLVehicleDataEventStatus instance with value of FAULT @abstract SDLVehicleDataNotificationStatus: NOT_SUPPORTED @abstract SDLVehicleDataNotificationStatus: NORMAL @abstract SDLVehicleDataNotificationStatus: ACTIVE @abstract SDLVehicleDataNotificationStatus: NOT_USED Individual vehicle data item / DTC / DID request or subscription successful DTC / DID request successful, however, not all active DTCs or full contents of DID location available This vehicle data item is not allowed for this app by SDL The user has not granted access to this type of vehicle data item at this time The ECU ID referenced is not a valid ID on the bus / system The requested vehicle data item / DTC / DID is not currently available or responding on the bus / system The vehicle data item is already subscribed The vehicle data item cannot be unsubscribed because it is not currently subscribed The request for this item is ignored because it is already in progress @abstract No data avaliable @abstract return SDLVehicleDataStatus: OFF @abstract return SDLVehicleDataStatus: ON @abstract SDLVehicleDataType: VEHICLEDATA_GPS @abstract SDLVehicleDataType: VEHICLEDATA_SPEED @abstract SDLVehicleDataType: VEHICLEDATA_RPM @abstract SDLVehicleDataType: VEHICLEDATA_FUELLEVEL @abstract SDLVehicleDataType: VEHICLEDATA_FUELLEVEL_STATE @abstract SDLVehicleDataType: VEHICLEDATA_FUELCONSUMPTION @abstract SDLVehicleDataType: VEHICLEDATA_EXTERNTEMP @abstract SDLVehicleDataType: VEHICLEDATA_VIN @abstract SDLVehicleDataType: VEHICLEDATA_PRNDL @abstract SDLVehicleDataType: VEHICLEDATA_TIREPRESSURE @abstract SDLVehicleDataType: VEHICLEDATA_ODOMETER @abstract SDLVehicleDataType: VEHICLEDATA_BELTSTATUS @abstract SDLVehicleDataType: VEHICLEDATA_BODYINFO @abstract SDLVehicleDataType: VEHICLEDATA_DEVICESTATUS @abstract SDLVehicleDataType: VEHICLEDATA_ECALLINFO @abstract SDLVehicleDataType: VEHICLEDATA_AIRBAGSTATUS @abstract SDLVehicleDataType: VEHICLEDATA_EMERGENCYEVENT @abstract SDLVehicleDataType: VEHICLEDATA_CLUSTERMODESTATUS @abstract SDLVehicleDataType: VEHICLEDATA_MYKEY @abstract SDLVehicleDataType: VEHICLEDATA_BRAKING @abstract SDLVehicleDataType: VEHICLEDATA_WIPERSTATUS @abstract SDLVehicleDataType: VEHICLEDATA_HEADLAMPSTATUS @abstract SDLVehicleDataType: VEHICLEDATA_BATTVOLTAGE @abstract SDLVehicleDataType: VEHICLEDATA_ENGINETORQUE @abstract SDLVehicleDataType: VEHICLEDATA_ACCPEDAL @abstract SDLVehicleDataType: VEHICLEDATA_STEERINGWHEEL @abstract A SDLDefrostZone with the value of UPPER @abstract A SDLDefrostZone with the value of LOWER @abstract A SDLDefrostZone with the value of BOTH @abstract A SDLDefrostZone with the value of NONE @abstract SDLVideoStreamingCodec : H264 @abstract SDLVideoStreamingCodec : H265 @abstract SDLVideoStreamingCodec : Theora @abstract SDLVideoStreamingCodec : VP8 @abstract SDLVideoStreamingCodec : VP9 @abstract SDLVideoStreamingProtocol : RAW @abstract SDLVideoStreamingProtocol : RTP @abstract SDLVideoStreamingProtocol : RTSP @abstract SDLVideoStreamingProtocol : RTMP @abstract SDLVideoStreamingProtocol : WebM @abstract The SDL platform is capable of recognizing spoken text in the current language. @abstract Warninglight Off @abstract Warninglight On @abstract Warninglight is flashing @abstract Not used Undocumented Undocumented @abstract SDLWiperStatus: OFF @abstract SDLWiperStatus: AUTO_OFF @abstract SDLWiperStatus: OFF_MOVING @abstract SDLWiperStatus: MAN_INT_OFF @abstract SDLWiperStatus: MAN_INT_ON @abstract SDLWiperStatus: MAN_LOW @abstract SDLWiperStatus: MAN_HIGH @abstract SDLWiperStatus: MAN_FLICK @abstract SDLWiperStatus: WASH @abstract SDLWiperStatus: AUTO_LOW @abstract SDLWiperStatus: AUTO_HIGH @abstract SDLWiperStatus: COURTESYWIPE @abstract SDLWiperStatus: AUTO_ADJUST @abstract SDLWiperStatus: STALLED @abstract SDLWiperStatus: NO_DATA_EXISTS Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Protocol type, see VideoStreamingProtocol, mandatory @abstract Codec type, see VideoStreamingCodec, mandatory Undocumented Undocumented @abstract The preferred resolution of a video stream for decoding and rendering on HMI, optional @abstract The maximum bitrate of video stream that is supported, in kbps, optional @abstract Detailed information on each format supported by this system, in its preferred order, optional True if the system can utilize the haptic spatial data from the source being streamed. @abstract The make of the vehicle @abstract The model of the vehicle @abstract The model year of the vehicle @abstract The trim of the vehicle Undocumented Undocumented Undocumented Optional, SDLTurn, 1 - 100 entries Required, SDLSoftButton, 0 - 1 Entries @abstract A SDLVehicleDataResult* value. See GPSData. @abstract A SDLVehicleDataResult* value. The vehicle speed in kilometers per hour. @abstract A SDLVehicleDataResult* value. The number of revolutions per minute of the engine. @abstract A SDLVehicleDataResult* value. The fuel level in the tank (percentage) @abstract A SDLVehicleDataResult* value. The fuel level state. @abstract A SDLVehicleDataResult* value. The instantaneous fuel consumption in microlitres. @abstract A SDLVehicleDataResult* value. The external temperature in degrees celsius. @abstract A SDLVehicleDataResult* value. See PRNDL. @abstract A SDLVehicleDataResult* value. See TireStatus. @abstract A SDLVehicleDataResult* value. Odometer in km. @abstract A SDLVehicleDataResult* value. The status of the seat belts. @abstract A SDLVehicleDataResult* value. The body information including power modes. @abstract A SDLVehicleDataResult* value. The device status including signal and battery strength. @abstract A SDLVehicleDataResult* value. The status of the brake pedal. @abstract A SDLVehicleDataResult* value. The status of the wipers. @abstract A SDLVehicleDataResult* value. Status of the head lamps. @abstract A SDLVehicleDataResult* value. Torque value for engine (in Nm) on non-diesel variants. @abstract A SDLVehicleDataResult* value. Accelerator pedal position (percentage depressed) @abstract A SDLVehicleDataResult* value. Current angle of the steering wheel (in deg) Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract A boolean value. If true, unsubscribes Gps data @abstract A boolean value. If true, unsubscribes speed data @abstract A boolean value. If true, unsubscribe data @abstract A boolean value. If true, unsubscribes FuelLevel data @abstract A boolean value. If true, unsubscribes fuelLevel_State data @abstract A boolean value. If true, unsubscribes instantFuelConsumption data @abstract A boolean value. If true, unsubscribes externalTemperature data @abstract A boolean value. If true, unsubscribes Currently selected gear data @abstract A boolean value. If true, unsubscribes tire pressure status data @abstract A boolean value. If true, unsubscribes odometer data @abstract A boolean value. If true, unsubscribes belt Status data @abstract A boolean value. If true, unsubscribes body Information data @abstract A boolean value. If true, unsubscribes device Status data @abstract A boolean value. If true, unsubscribes driver Braking data @abstract A boolean value. If true, unsubscribes wiper Status data @abstract A boolean value. If true, unsubscribes Head Lamp Status data @abstract A boolean value. If true, unsubscribes Engine Torque data @abstract A boolean value. If true, unsubscribes accPedalPosition data Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract A name of the button to unsubscribe from","parent_name":"SDLUnsubscribeButton"},"Classes/SDLTurn.html#/c:objc(cs)SDLTurn(im)initWithNavigationText:turnIcon:":{"name":"-initWithNavigationText:turnIcon:","abstract":" Undocumented Undocumented Undocumented Notified of processed touches such as pinches, pans, and taps @abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(py)tapDistanceThreshold":{"name":"tapDistanceThreshold","abstract":" Distance between two taps on the screen, in the head unit’s coordinate system, used for registering double-tap callbacks. @abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(py)movementTimeThreshold":{"name":"movementTimeThreshold","abstract":" @abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(py)touchEnabled":{"name":"touchEnabled","abstract":" @abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(im)cancelPendingTouches":{"name":"-cancelPendingTouches","abstract":" @abstract","parent_name":"SDLTouchManager"},"Classes/SDLTouchManager.html#/c:objc(cs)SDLTouchManager(im)init":{"name":"-init","abstract":" Undocumented Initialize a touch manager with a hit tester if available Undocumented Undocumented Undocumented A touch’s unique identifier. The application can track the current touch events by id.","parent_name":"SDLTouchEvent"},"Classes/SDLTouchEvent.html#/c:objc(cs)SDLTouchEvent(py)timeStamp":{"name":"timeStamp","abstract":" The time that the touch was recorded. This number can the time since the beginning of the session or something else as long as the units are in milliseconds. Mandatory, array size 1-1000, contains SDLTouchCoord Undocumented Undocumented @abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)identifier":{"name":"identifier","abstract":" @abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)location":{"name":"location","abstract":" @abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)timeStamp":{"name":"timeStamp","abstract":" @abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)isFirstFinger":{"name":"isFirstFinger","abstract":" @abstract","parent_name":"SDLTouch"},"Classes/SDLTouch.html#/c:objc(cs)SDLTouch(py)isSecondFinger":{"name":"isSecondFinger","abstract":" @abstract","parent_name":"SDLTouch"},"Classes/SDLTireStatus.html#/c:objc(cs)SDLTireStatus(py)pressureTelltale":{"name":"pressureTelltale","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The enumeration identifying the field. @abstract The character set that is supported in this field. @abstract The number of characters in one row of this field. @abstract The number of rows for this text field. Undocumented @abstract Temperature Unit @abstract Temperature Value in TemperatureUnit specified unit. Range depends on OEM and is not checked by SDL Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Text to be spoken, or a phoneme specification, or the name of a pre-recorded sound. The contents of this field are indicated by the @abstract The type of information in the Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The major version indicates versions that is not-compatible to previous versions @abstract The minor version indicates a change to a previous version that should still allow to be run on an older version (with limited functionality) @abstract Optional, allows backward-compatible fixes to the API without increasing the minor version of the interface @abstract A SDLVehicleDataResult* value. See GPSData. @abstract A SDLVehicleDataResult* value. The vehicle speed in kilometers per hour. @abstract A SDLVehicleDataResult* value. The number of revolutions per minute of the engine. @abstract A SDLVehicleDataResult* value. The fuel level in the tank (percentage) @abstract A SDLVehicleDataResult* value. The fuel level state. @abstract A SDLVehicleDataResult* value. The instantaneous fuel consumption in microlitres. @abstract A SDLVehicleDataResult* value. The external temperature in degrees celsius. @abstract A SDLVehicleDataResult* value. See PRNDL. @abstract A SDLVehicleDataResult* value. See TireStatus. @abstract A SDLVehicleDataResult* value. Odometer in km. @abstract A SDLVehicleDataResult* value. The status of the seat belts. @abstract A SDLVehicleDataResult* value. The body information including power modes. @abstract A SDLVehicleDataResult* value. The device status including signal and battery strength. @abstract A SDLVehicleDataResult* value. The status of the brake pedal. @abstract A SDLVehicleDataResult* value. The status of the wipers. @abstract A SDLVehicleDataResult* value. Status of the head lamps. @abstract A SDLVehicleDataResult* value. Torque value for engine (in Nm) on non-diesel variants. @abstract A SDLVehicleDataResult* value. Accelerator pedal position (percentage depressed) @abstract A SDLVehicleDataResult* value. Current angle of the steering wheel (in deg) Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract A boolean value. If true, subscribes Gps data @abstract A boolean value. If true, subscribes speed data @abstract A boolean value. If true, subscribes rpm data @abstract A boolean value. If true, subscribes FuelLevel data @abstract A boolean value. If true, subscribes fuelLevel_State data @abstract A boolean value. If true, subscribes instantFuelConsumption data @abstract A boolean value. If true, subscribes externalTemperature data @abstract A boolean value. If true, subscribes Currently selected gear data @abstract A boolean value. If true, subscribes tire pressure status data @abstract A boolean value. If true, subscribes odometer data @abstract A boolean value. If true, subscribes belt Status data @abstract A boolean value. If true, subscribes body Information data @abstract A boolean value. If true, subscribes device Status data @abstract A boolean value. If true, subscribes driver Braking data @abstract A boolean value. If true, subscribes wiper Status data @abstract A boolean value. If true, subscribes Head Lamp Status data @abstract A boolean value. If true, subscribes Engine Torque data @abstract A boolean value. If true, means the accPedalPosition data has been","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)steeringWheelAngle":{"name":"steeringWheelAngle","abstract":" @abstract A boolean value. If true, means the steeringWheelAngle data has been","parent_name":"SDLSubscribeVehicleData"},"Classes/SDLSubscribeVehicleData.html#/c:objc(cs)SDLSubscribeVehicleData(py)eCallInfo":{"name":"eCallInfo","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Construct a SDLSubscribeButton with a handler callback when an event occurs. Undocumented A handler that will let you know when the button you subscribed to is selected. @abstract The name of the button to subscribe to","parent_name":"SDLSubscribeButton"},"Classes/SDLStreamingMediaManager.html#/c:objc(cs)SDLStreamingMediaManager(py)touchManager":{"name":"touchManager","abstract":" Touch Manager responsible for providing touch event notifications. A haptic interface that can be updated to reparse views within the window you’ve provided. Send a Whether or not video streaming is supported Whether or not the video session is connected. Whether or not the video session is encrypted. This may be different than the requestedEncryptionType. Whether or not the audio session is connected. Whether or not the audio session is encrypted. This may be different than the requestedEncryptionType. Whether or not the video stream is paused due to either the application being backgrounded, the HMI state being either NONE or BACKGROUND, or the video stream not being ready. This is the current screen size of a connected display. This will be the size the video encoder uses to encode the raw image data. This is the agreed upon format of video encoder that is in use, or nil if not currently connected. A list of all supported video formats by this manager The pixel buffer pool reference returned back from an active VTCompressionSessionRef encoder. The requested encryption type when a session attempts to connect. This setting applies to both video and audio sessions. Undocumented Create a new streaming media manager for navigation and VPM apps with a specified configuration Start the manager with a completion block that will be called when startup completes. This is used internally. To use an SDLStreamingMediaManager, you should use the manager found on Stop the manager. This method is used internally. This method receives raw image data and will run iOS8+‘s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit. This method receives raw image data and will run iOS8+‘s hardware video encoder to turn the data into a video stream, which will then be passed to the connected head unit. This method receives PCM audio data and will attempt to send that data across to the head unit for immediate playback Set security managers which could be used. This is primarily used with video streaming applications to authenticate and perhaps encrypt traffic data. What encryption level video/audio streaming should be. The default is SDLStreamingEncryptionFlagAuthenticateAndEncrypt. Properties to use for applications that utilitze the video encoder for streaming. See VTCompressionProperties.h for more details. For example, you can set kVTCompressionPropertyKey_ExpectedFrameRate to set your expected framerate. Usable to change run time video stream setup behavior. Only use this and modify the results if you really know what you’re doing. The head unit defaults are generally good. Set the window your video streaming content is within. Create an insecure video streaming configuration. No security managers will be provided and the encryption flag will be set to None. If you’d like custom video encoder settings, you can set the property manually. Manually set all the properties to the streaming media configuration Create a secure configuration for each of the security managers provided. Create a secure configuration for each of the security managers provided. Create an insecure video streaming configuration. No security managers will be provided and the encryption flag will be set to None. If you’d like custom video encoder settings, you can set the property manually. This is equivalent to Undocumented @abstract The hour of the media clock @abstract The minute of the media clock @abstract The second of the media clock Undocumented Undocumented @abstract An array of TTSChunk structs which, taken together, specify the phrase to be spoken @abstract The button supports a short press. @abstract The button supports a LONG press. @abstract The button supports @abstract The button supports referencing a static or dynamic image. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The selected position of the slider. Undocumented Undocumented Undocumented @abstract Represents a number of selectable items on a horizontal axis @abstract An Initial position of slider control @abstract A text header to display @abstract A text footer to display @abstract An App defined timeout @abstract The volume status of a single tire Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The text displayed in a single-line display, or in the upper display","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)mainField2":{"name":"mainField2","abstract":" @abstract The text displayed on the second display line of a two-line display @abstract The text displayed on the first display line of the second page @abstract The text displayed on the second display line of the second page @abstract The alignment that Specifies how mainField1 and mainField2 text","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)statusBar":{"name":"statusBar","abstract":" @abstract Text in the Status Bar @abstract This property is deprecated use SetMediaClockTimer instead.","parent_name":"SDLShow"},"Classes/SDLShow.html#/c:objc(cs)SDLShow(py)mediaTrack":{"name":"mediaTrack","abstract":" @abstract The text in the track field @abstract An image to be shown on supported displays @abstract An image to be shown on supported displays @abstract The the Soft buttons defined by the App @abstract The Custom Presets defined by the App @abstract Text Field Metadata Undocumented Undocumented @abstract A Start Time with specifying hour, minute, second values @abstract An END time of type SDLStartTime, specifying hour, minute, second values @abstract The media clock/timer update mode (COUNTUP/COUNTDOWN/PAUSE/RESUME) The module data to set for the requested remote control module. Undocumented The module data to set for the requested RC module. Undocumented Undocumented Undocumented @abstract Sets a Vector @abstract A Vector @abstract Sets a voice recognition Help Title @abstract Sets the items listed in the VR help screen used in an interaction","parent_name":"SDLSetGlobalProperties"},"Classes/SDLSetGlobalProperties.html#/c:objc(cs)SDLSetGlobalProperties(py)menuTitle":{"name":"menuTitle","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract A display layout. Predefined or dynamically created screen layout.","parent_name":"SDLSetDisplayLayout"},"Classes/SDLSetAppIcon.html#/c:objc(cs)SDLSetAppIcon(im)initWithFileName:":{"name":"-initWithFileName:","abstract":" Undocumented @abstract A file reference name","parent_name":"SDLSetAppIcon"},"Classes/SDLSendLocation.html#/c:objc(cs)SDLSendLocation(im)initWithLongitude:latitude:locationName:locationDescription:address:phoneNumber:image:":{"name":"-initWithLongitude:latitude:locationName:locationDescription:address:phoneNumber:image:","abstract":" Undocumented Undocumented The longitudinal coordinate of the location. The latitudinal coordinate of the location. Name / title of intended location Description of the intended location / establishment Location address for display purposes only Phone number of intended location / establishment Image / icon of intended location Mode in which the sendLocation request is sent Arrival time of Location. If multiple SendLocations are sent, this will be used for sorting as well. Address to be used for setting destination Constructs a new SDLSendHapticData object indicated by the hapticSpatialData parameter Array of spatial data structures that represent the locations of all user controls present on the HMI. This data should be updated if/when the application presents a new screen. When a request is sent, if successful, it will replace all spatial data previously sent through RPC. If an empty array is sent, the existing spatial data will be cleared Undocumented Undocumented @abstract A Body of text that can include newlines and tabs","parent_name":"SDLScrollableMessage"},"Classes/SDLScrollableMessage.html#/c:objc(cs)SDLScrollableMessage(py)timeout":{"name":"timeout","abstract":" @abstract Gets/Sets an App defined timeout. Indicates how long of a timeout in milliseconds from the","parent_name":"SDLScrollableMessage"},"Classes/SDLScrollableMessage.html#/c:objc(cs)SDLScrollableMessage(py)softButtons":{"name":"softButtons","abstract":" @abstract Gets/Sets App defined SoftButtons.If omitted on supported displays, only the","parent_name":"SDLScrollableMessage"},"Classes/SDLScreenParams.html#/c:objc(cs)SDLScreenParams(py)resolution":{"name":"resolution","abstract":" Undocumented Undocumented Undocumented @abstract An array of one or more GlobalProperty enumeration elements","parent_name":"SDLResetGlobalProperties"},"Classes/SDLRemoteControlCapabilities.html#/c:objc(cs)SDLRemoteControlCapabilities(im)initWithClimateControlCapabilities:radioControlCapabilities:buttonCapabilities:":{"name":"-initWithClimateControlCapabilities:radioControlCapabilities:buttonCapabilities:","abstract":" Undocumented @abstract If included, the platform supports RC climate controls.","parent_name":"SDLRemoteControlCapabilities"},"Classes/SDLRemoteControlCapabilities.html#/c:objc(cs)SDLRemoteControlCapabilities(py)radioControlCapabilities":{"name":"radioControlCapabilities","abstract":" @abstract If included, the platform supports RC radio controls.","parent_name":"SDLRemoteControlCapabilities"},"Classes/SDLRemoteControlCapabilities.html#/c:objc(cs)SDLRemoteControlCapabilities(py)buttonCapabilities":{"name":"buttonCapabilities","abstract":" @abstract If included, the platform supports RC button controls with the included button names. The currently active VR+TTS language on Sync. The currently active display language on Sync If returned, the platform supports on-screen SoftButtons If returned, the platform supports custom on-screen Presets Specifies the vehicle’s type Specifies the white-list of supported diagnostic modes (0x00-0xFF) capable for DiagnosticMessage requests. If a mode outside this list is requested, it will be rejected. The SmartDeviceLink version The software version of the system that implements the SmartDeviceLink core Undocumented Undocumented Undocumented Undocumented @abstract The version of the SDL interface @abstract The Mobile Application’s Name, This name is displayed in the SDL Mobile Applications menu. It also serves as the unique identifier of the application for SmartDeviceLink @abstract TTS string for VR recognition of the mobile application name. @abstract A String representing an abbreviated version of the mobile application’s name (if necessary) that will be displayed on the media screen @abstract Defines a additional voice recognition commands @abstract Indicates if the application is a media or a non-media application. @abstract A Language enumeration indicating what language the application intends to use for user interaction (TTS and VR). @abstract An enumeration indicating what language the application intends to use for user interaction (Display). @abstract A list of all applicable app types stating which classifications to be given to the app. @abstract ID used to uniquely identify current state of all app data that can persist through connection cycles (e.g. ignition cycles). @abstract Information about the connecting device @abstract ID used to validate app with policy table entries @abstract Information about the application running Create a Rectangle Create a Rectangle from a CGRect The X-coordinate of the user control","parent_name":"SDLRectangle"},"Classes/SDLRectangle.html#/c:objc(cs)SDLRectangle(py)y":{"name":"y","abstract":" The Y-coordinate of the user control","parent_name":"SDLRectangle"},"Classes/SDLRectangle.html#/c:objc(cs)SDLRectangle(py)width":{"name":"width","abstract":" The width of the user control’s bounding rectangle","parent_name":"SDLRectangle"},"Classes/SDLRectangle.html#/c:objc(cs)SDLRectangle(py)height":{"name":"height","abstract":" The height of the user control’s bounding rectangle","parent_name":"SDLRectangle"},"Classes/SDLReadDIDResponse.html#/c:objc(cs)SDLReadDIDResponse(py)didResult":{"name":"didResult","abstract":" Undocumented Undocumented @abstract An ID of the vehicle module","parent_name":"SDLReadDID"},"Classes/SDLReadDID.html#/c:objc(cs)SDLReadDID(py)didLocation":{"name":"didLocation","abstract":" @abstract Raw data from vehicle data DID location(s)","parent_name":"SDLReadDID"},"Classes/SDLRadioControlData.html#/c:objc(cs)SDLRadioControlData(im)initWithFrequencyInteger:frequencyFraction:band:hdChannel:radioEnable:":{"name":"-initWithFrequencyInteger:frequencyFraction:band:hdChannel:radioEnable:","abstract":" Undocumented @abstract The integer part of the frequency ie for 101.7 this value should be 101 @abstract The fractional part of the frequency for 101.7 is 7 @abstract Radio band value @abstract Read only parameter. See RDSData data type for details. @abstract number of HD sub-channels if available @abstract Current HD sub-channel if available @abstract Signal Strength Value @abstract If the signal strength falls below the set value for this parameter, the radio will tune to an alternative frequency @abstract True if the radio is on, false is the radio is off. When the radio is disabled, no data other than radioEnable is included in a GetInteriorVehicleData response Read only parameter. See RadioState data type for details. Undocumented @abstract The short friendly name of the climate control module.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)radioEnableAvailable":{"name":"radioEnableAvailable","abstract":" @abstract Availability of the control of enable/disable radio.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)radioBandAvailable":{"name":"radioBandAvailable","abstract":" @abstract Availability of the control of radio band.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)radioFrequencyAvailable":{"name":"radioFrequencyAvailable","abstract":" @abstract Availability of the control of radio frequency.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)hdChannelAvailable":{"name":"hdChannelAvailable","abstract":" @abstract Availability of the control of HD radio channel.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)rdsDataAvailable":{"name":"rdsDataAvailable","abstract":" @abstract Availability of the getting Radio Data System (RDS) data.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)availableHDsAvailable":{"name":"availableHDsAvailable","abstract":" @abstract Availability of the getting the number of available HD channels.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)stateAvailable":{"name":"stateAvailable","abstract":" @abstract Availability of the getting the Radio state.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)signalStrengthAvailable":{"name":"signalStrengthAvailable","abstract":" @abstract Availability of the getting the signal strength.","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRadioControlCapabilities.html#/c:objc(cs)SDLRadioControlCapabilities(py)signalChangeThresholdAvailable":{"name":"signalChangeThresholdAvailable","abstract":" @abstract Availability of the getting the signal Change Threshold","parent_name":"SDLRadioControlCapabilities"},"Classes/SDLRPCStruct.html#/c:objc(cs)SDLRPCStruct@store":{"name":"store","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Returns whether or not the containing response is equal to a class, not including subclasses. Returns whether or not the containing response is a kind of class, including subclasses. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Returns whether or not the containing notification is equal to a class, not including subclasses. Returns whether or not the containing notification is a kind of class, including subclasses. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Program Service Name @abstract Radio Text @abstract The clock text in UTC format as YYYY-MM-DDThh:mm:ss.sTZD @abstract Program Identification - the call sign for the radio station @abstract The program type - The region should be used to differentiate between EU","parent_name":"SDLRDSData"},"Classes/SDLRDSData.html#/c:objc(cs)SDLRDSData(py)trafficProgramIdentification":{"name":"trafficProgramIdentification","abstract":" @abstract Traffic Program Identification - Identifies a station that offers traffic @abstract Traffic Announcement Identification - Indicates an ongoing traffic announcement @abstract Region Undocumented Undocumented Undocumented Undocumented A file reference name A FileType value representing a selected file type A value to indicates if the file is meant to persist between","parent_name":"SDLPutFile"},"Classes/SDLPutFile.html#/c:objc(cs)SDLPutFile(py)systemFile":{"name":"systemFile","abstract":" Indicates if the file is meant to be passed through core to elsewhere on the system. If set to TRUE, then the system will instead pass the data thru as it arrives to a predetermined area outside of core. Offset in bytes for resuming partial data chunks. Length in bytes for resuming partial data chunks. If offset is set to 0, then length is the total length of the file to be downloaded Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Puts data into a file on the module","parent_name":"SDLProxy"},"Classes/SDLProtocolMessage.html#/c:objc(cs)SDLProtocolMessage(py)header":{"name":"header","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract If Onscreen custom presets are available. @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)firstTouch":{"name":"firstTouch","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)secondTouch":{"name":"secondTouch","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)distance":{"name":"distance","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)center":{"name":"center","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPinchGesture.html#/c:objc(cs)SDLPinchGesture(py)isValid":{"name":"isValid","abstract":" @abstract","parent_name":"SDLPinchGesture"},"Classes/SDLPhoneCapability.html#/c:objc(cs)SDLPhoneCapability(im)initWithDialNumber:":{"name":"-initWithDialNumber:","abstract":" Undocumented Whether or not the DialNumber RPC is enabled.","parent_name":"SDLPhoneCapability"},"Classes/SDLPermissionManager.html#/c:objc(cs)SDLPermissionManager(im)startWithCompletionHandler:":{"name":"-startWithCompletionHandler:","abstract":" Start the manager with a completion block that will be called when startup completes. This is used internally. To use an SDLPermissionManager, you should use the manager found on Stop the manager. This method is used internally. Determine if an individual RPC is allowed for the current HMI level Determine if all RPCs are allowed for the current HMI level Retrieve a dictionary with keys that are the passed in RPC names, and objects of an NSNumber Add an observer for specified RPC names, with a callback that will be called whenever the value changes, as well as immediately with the current status. Remove every current observer Remove block observers for the specified RPC Undocumented Undocumented Undocumented @abstract ID of the choice that was selected in response to PerformInteraction. @abstract Manually entered text selection, e.g. through keyboard @abstract A SDLTriggerSource object which will be shown in the HMI Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The Text that Displayed when the interaction begins. This text may","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)initialPrompt":{"name":"initialPrompt","abstract":" @abstract An array of one or more TTSChunks that, taken together, specify","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)interactionMode":{"name":"interactionMode","abstract":" @abstract The Indicates mode that indicate how user selects interaction","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)interactionChoiceSetIDList":{"name":"interactionChoiceSetIDList","abstract":" @abstract A Vector @abstract A Vector @abstract An array of TTSChunks which, taken together, specify the phrase to","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)timeout":{"name":"timeout","abstract":" @abstract An Integer value representing the amount of time, in milliseconds,","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)vrHelp":{"name":"vrHelp","abstract":" @abstract A Voice recognition Help, which is a suggested VR Help Items to","parent_name":"SDLPerformInteraction"},"Classes/SDLPerformInteraction.html#/c:objc(cs)SDLPerformInteraction(py)interactionLayout":{"name":"interactionLayout","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented @abstract initial prompt which will be spoken before opening the audio pass","parent_name":"SDLPerformAudioPassThru"},"Classes/SDLPerformAudioPassThru.html#/c:objc(cs)SDLPerformAudioPassThru(py)audioPassThruDisplayText1":{"name":"audioPassThruDisplayText1","abstract":" @abstract a line of text displayed during audio capture","parent_name":"SDLPerformAudioPassThru"},"Classes/SDLPerformAudioPassThru.html#/c:objc(cs)SDLPerformAudioPassThru(py)audioPassThruDisplayText2":{"name":"audioPassThruDisplayText2","abstract":" @abstract A line of text displayed during audio capture","parent_name":"SDLPerformAudioPassThru"},"Classes/SDLPerformAudioPassThru.html#/c:objc(cs)SDLPerformAudioPassThru(py)samplingRate":{"name":"samplingRate","abstract":" @abstract A samplingRate @abstract the maximum duration of audio recording in milliseconds @abstract the quality the audio is recorded - 8 bit or 16 bit @abstract an audioType @abstract a Boolean value representing if the current audio source should be","parent_name":"SDLPerformAudioPassThru"},"Classes/SDLPerformAudioPassThru.html#/c:objc(cs)SDLPerformAudioPassThru(py)audioDataHandler":{"name":"audioDataHandler","abstract":" A handler that will be called whenever an @abstract A set of all parameters that are permitted for this given RPC. @abstract A set of all parameters that are prohibited for this given RPC. @abstract Location address for display purposes only. @abstract A SDLGPSData* value. See GPSData. @abstract The vehicle speed in kilometers per hour. @abstract The number of revolutions per minute of the engine. @abstract The fuel level in the tank (percentage) @abstract A SDLComponentVolumeStatus* value. The fuel level state. @abstract The instantaneous fuel consumption in microlitres. @abstract The external temperature in degrees celsius. @abstract The Vehicle Identification Number @abstract See PRNDL. @abstract A SDLTireStatus* value. See TireStatus. @abstract Odometer reading in km. @abstract A SDLBeltStatus* value. The status of the seat belts. @abstract A SDLBodyInformation* value. The body information including power modes. @abstract A SDLDeviceStatus* value. The device status including signal and battery strength. @abstract A SDLVehicleDataResult* value. The status of the brake pedal. @abstract A SDLWiperStatus* value. The status of the wipers. @abstract A SDLHeadLampStatus* value. Status of the head lamps. @abstract Torque value for engine (in Nm) on non-diesel variants. @abstract Accelerator pedal position (percentage depressed) @abstract Current angle of the steering wheel (in deg) Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Describes change in permissions for a given set of RPCs Get the current driver distraction status(i.e. whether driver distraction rules are in effect, or not) Get user selection status for the application (has the app been selected via hmi or voice command) Get the {@linkplain LockScreenStatus} enumeration, indicating if the lockscreen should be required, optional or off Get HMILevel in effect for the application @abstract Current SDL voice engine (VR+TTS) language @abstract Current display language Undocumented Undocumented Undocumented Undocumented @abstract SDLHMILevel in effect for the application @abstract Current state of audio streaming for the application. When this parameter has a value of NOT_AUDIBLE, the application must stop streaming audio to SDL. @abstract the System Context","parent_name":"SDLOnHMIStatus"},"Classes/SDLOnEncodedSyncPData.html#/c:objc(cs)SDLOnEncodedSyncPData(py)data":{"name":"data","abstract":" Undocumented Undocumented Undocumented @abstract The driver distraction state (i.e. whether driver distraction rules are in effect, or not) @abstract The command ID of the command the user selected. This is the command ID value provided by the application in the SDLAddCommand operation that created the command. @abstract Indicates whether command was selected via voice or via a menu selection (using the OK button). @abstract the button’s name @abstract Indicates whether this is a LONG or SHORT button press event @abstract If ButtonName is @abstract The name of the button @abstract Indicates whether this is an UP or DOWN event @abstract If ButtonName is @abstract The reason application’s interface was terminated Undocumented Undocumented @abstract Name of the country (localized) @abstract countryCode of the country(ISO 3166-2) @abstract postalCode of location (PLZ, ZIP, PIN, CAP etc.) @abstract Portion of country (e.g. state) @abstract Portion of administrativeArea (e.g. county) @abstract Hypernym for city/village @abstract Hypernym for district @abstract Hypernym for street, road etc. @abstract Portion of thoroughfare (e.g. house number) Undocumented Undocumented Undocumented Whether or not the SendLocation RPC is enabled.","parent_name":"SDLNavigationCapability"},"Classes/SDLNavigationCapability.html#/c:objc(cs)SDLNavigationCapability(py)getWayPointsEnabled":{"name":"getWayPointsEnabled","abstract":" Whether or not Waypoint related RPCs are enabled.","parent_name":"SDLNavigationCapability"},"Classes/SDLMyKey.html#/c:objc(cs)SDLMyKey(py)e911Override":{"name":"e911Override","abstract":" Undocumented Undocumented Undocumented The moduleType indicates which type of data should be changed","parent_name":"SDLModuleData"},"Classes/SDLModuleData.html#/c:objc(cs)SDLModuleData(py)radioControlData":{"name":"radioControlData","abstract":" Undocumented Undocumented @abstract Constructs a newly allocated SDLMetadataType object with NSArrays Undocumented @abstract The type of data contained in the @abstract The type of data contained in the @abstract The type of data contained in the @abstract The type of data contained in the Undocumented Undocumented @abstract the unique ID of an existing submenu to which a command will be added","parent_name":"SDLMenuParams"},"Classes/SDLMenuParams.html#/c:objc(cs)SDLMenuParams(py)position":{"name":"position","abstract":" @abstract The position within the items of the parent Command Menu","parent_name":"SDLMenuParams"},"Classes/SDLMenuParams.html#/c:objc(cs)SDLMenuParams(py)menuName":{"name":"menuName","abstract":" @abstract the menu name which appears in menu, representing this command The configuration the manager was set up with. The current HMI level of the running app. The current audio streaming state of the running app. The current system context of the running app. The file manager to be used by the running app. The permission manager monitoring RPC permissions. The streaming media manager to be used for starting video sessions. The response of a register call after it has been received. The manager’s delegate. Undocumented Initialize the manager with a configuration. Call Start the manager, which will tell it to start looking for a connection. Once one does, it will automatically run the setup process and call the readyBlock when done. Stop the manager, it will disconnect if needed and no longer look for a connection. You probably don’t need to call this method ever. Send an RPC request and don’t bother with the response or error. If you need the response or error, call sendRequest:withCompletionHandler: instead. Send an RPC request and set a completion handler that will be called with the response when the response returns. Undocumented Undocumented Undocumented Any modules that do not have an explicitly specified level will by default use this log level Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Sets a configuration to be used by the log manager’s sharedManager. This is generally for internal use and you should set your configuration using SDLManager’s startWithConfiguration: method. Sets a configuration to be used by the log manager. This is generally for internal use and you should set your configuration using SDLManager’s startWithConfiguration: method. Log to the sharedManager’s active log targets. This is used internally to log. If you want to create a log, you should use macros such as Log to this log manager’s active log targets. This is used internally to log. If you want to create a log, you should use macros such as Log to this sharedManager’s active log targets. This is used internally to log. If you want to create a log, you should use macros such as Log to this log manager’s active log targets. This is used internally to log. If you want to create a log, you should use macros such as Log to this sharedManager’s active log targets. This is used internally to log. Log to this manager’s active log targets. This is used internally to log. Undocumented Undocumented Create a new filter with a custom filter block. The filter block will take a log model and return a BOOL of pass / fail. Returns a filter that only allows logs not containing the passed string within their message. Returns a filter that only allows logs containing the passed string within their message. Returns a filter that only allows logs not passing the passed regex against their message. Returns a filter that only allows logs passing the passed regex against their message. Returns a filter that only allows logs not within the specified file modules to be logged. Returns a filter that only allows logs of the specified file modules to be logged. Returns a filter that only allows logs not within the specified files to be logged. Returns a filter that only allows logs within the specified files to be logged. The name of the this module, e.g. All of the files contained within this module. When a log is logged, the The custom level of the log. This is This method is unavailable and may not be used. Returns an initialized Returns an initialized Returns an initialized Returns whether or not this module contains a given file. Any custom logging modules used by the developer’s code. Defaults to none. Where the logs will attempt to output. Defaults to Console. What log filters will run over this session. Defaults to none. How detailed of logs will be output. Defaults to Default. Whether or not logs will be run on a separate queue, asynchronously, allowing the following code to run before the log completes. Or if it will occur synchronously, which will prevent logs from being missed, but will slow down surrounding code. Defaults to YES. Whether or not error logs will be dispatched to loggers asynchronously. Defaults to NO. Any modules that do not have an explicitly specified level will by default use the global log level. Defaults to Error.","parent_name":"SDLLogConfiguration"},"Classes/SDLLogConfiguration.html#/c:objc(cs)SDLLogConfiguration(cm)defaultConfiguration":{"name":"+defaultConfiguration","abstract":" A default logger for production. This sets the format type to Default, the log level to Error, and only enables the ASL logger. A debug logger for use in development. This sets the format type to Detailed, the log level to Debug, and enables the Console and ASL loggers. The app’s icon. This will be set by the lock screen configuration. The vehicle’s designated icon. This will be set by the lock screen manager when it is notified that a lock screen icon has been downloaded. The designated background color set in the lock screen configuration, or the default SDL gray-blue. Whether or not the lock screen should be shown in the If YES, the lock screen should be managed by SDL and automatically engage when necessary. If NO, then the lock screen will never be engaged. The background color of the lock screen. This could be a branding color, or leave at the default for a dark blue-gray. Your app icon as it will appear on the lock screen. A custom view controller that the lock screen will manage the presentation of. Undocumented Use this configuration if you wish to manage a lock screen yourself. This may be useful if the automatic presentation feature of SDLLockScreenManager is failing for some reason. Use this configuration for the basic default lock screen. A custom app icon will not be used. Use this configuration to provide a custom lock screen icon and a custom background color, or nil if you wish to use the default background color. This will use the default lock screen layout. Use this configuration if you wish to provide your own view controller for the lock screen. This view controller’s presentation and dismissal will still be managed by the lock screen manager. Note that you may subclass SDLLockScreenViewController and pass it here to continue to have the vehicle icon set to your view controller by the manager. @abstract Latitude/Longitude of the location @abstract Name of location. @abstract Location address for display purposes only. @abstract Description intended location / establishment. @abstract Phone number of location / establishment. @abstract Image / icon of intended location. @abstract Address to be used by navigation engines for search. @abstract Latitude of the location @abstract Longitude of the location Undocumented Undocumented Undocumented A production configuration that runs using IAP. Additional functionality should be customized on the properties. A debug configuration that runs using TCP. Additional functionality should be customized on the properties. Whether or not debug mode is enabled The ip address at which the library will look for a server The port at which the library will look for a server The full name of the app The app id. This must be the same as the app id received from the SDL developer portal or OEM. A hash id which should be passed to the remote system in the RegisterAppInterface This is an automatically set based on the app type The application type The default language to use An array of all the supported languages The application icon to be used on an app launching screen An abbrevited application name that will be used on the app launching screen if the full one would be truncated A Text to Speech String for voice recognition of the mobile application name. Additional voice recognition commands. May not interfere with any other app name or global commands. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The static hex icon value or the binary image file name identifier (sent by SDLPutFile) @abstract Describes, whether it is a static or dynamic image Undocumented Undocumented @abstract A boolean value. Status of the low beam lamps. @abstract A boolean value. Status of the high beam lamps. Undocumented Undocumented A user control spatial identifier","parent_name":"SDLHapticRect"},"Classes/SDLHapticRect.html#/c:objc(cs)SDLHapticRect(py)rect":{"name":"rect","abstract":" Undocumented @abstract a set of all HMI levels that are permitted for this given RPC @abstract a set of all HMI levels that are prohibited for this given RPC Availability of built in Nav. True: Available, False: Not Available Availability of built in phone. True: Available, False: Not Available Availability of built in video streaming. True: Available, False: Not Available @abstract Array of waypoints Undocumented To request for either the destination","parent_name":"SDLGetWayPoints"},"Classes/SDLGetVehicleDataResponse.html#/c:objc(cs)SDLGetVehicleDataResponse(py)gps":{"name":"gps","abstract":" @abstract A SDLGPSData* value. See GPSData. @abstract The vehicle speed in kilometers per hour. @abstract The number of revolutions per minute of the engine. @abstract The fuel level in the tank (percentage) @abstract A SDLComponentVolumeStatus* value. The fuel level state. @abstract The instantaneous fuel consumption in microlitres. @abstract The external temperature in degrees celsius. @abstract The Vehicle Identification Number @abstract See PRNDL. @abstract A SDLTireStatus* value. See TireStatus. @abstract Odometer reading in km. @abstract A SDLBeltStatus* value. The status of the seat belts. @abstract A SDLBodyInformation* value. The body information including power modes. @abstract A SDLDeviceStatus* value. The device status including signal and battery strength. @abstract A SDLVehicleDataResult* value. The status of the brake pedal. @abstract A SDLWiperStatus* value. The status of the wipers. @abstract A SDLHeadLampStatus* value. Status of the head lamps. @abstract Torque value for engine (in Nm) on non-diesel variants. @abstract Accelerator pedal position (percentage depressed) @abstract Current angle of the steering wheel (in deg) Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract A boolean value. If true, requests Gps data @abstract A boolean value. If true, requests speed data @abstract A boolean value. If true, requests rpm data @abstract A boolean value. If true, requests FuelLevel data @abstract A boolean value. If true, requests fuelLevel_State data @abstract A boolean value. If true, requests instantFuelConsumption data @abstract A boolean value. If true, requests externalTemperature data @abstract A boolean value. If true, requests Vehicle Identification Number @abstract A boolean value. If true, requests Currently selected gear data @abstract A boolean value. If true, requests tire pressure status data @abstract A boolean value. If true, requests odometer data @abstract A boolean value. If true, requests belt Status data @abstract A boolean value. If true, requests body Information data @abstract A boolean value. If true, requests device Status data @abstract A boolean value. If true, requests driver Braking data @abstract A boolean value. If true, requests wiper Status data @abstract A boolean value. If true, requests Head Lamp Status data @abstract A boolean value. If true, requests Engine Torque data @abstract A boolean value. If true, means the accPedalPosition data has been","parent_name":"SDLGetVehicleData"},"Classes/SDLGetVehicleData.html#/c:objc(cs)SDLGetVehicleData(py)steeringWheelAngle":{"name":"steeringWheelAngle","abstract":" @abstract A boolean value. If true, means the steeringWheelAngle data has been","parent_name":"SDLGetVehicleData"},"Classes/SDLGetVehicleData.html#/c:objc(cs)SDLGetVehicleData(py)eCallInfo":{"name":"eCallInfo","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented They type of capability you’d like to receive in the response. Undocumented @abstract It is a conditional-mandatory parameter: must be returned in case Undocumented Undocumented Undocumented The type of a RC module to retrieve module data from the vehicle. If subscribe is true, the head unit will register onInteriorVehicleData notifications for the requested moduelType.","parent_name":"SDLGetInteriorVehicleData"},"Classes/SDLGetDTCsResponse.html#/c:objc(cs)SDLGetDTCsResponse(py)ecuHeader":{"name":"ecuHeader","abstract":" Undocumented Undocumented Undocumented Undocumented @abstract a name of the module to receive the DTC form","parent_name":"SDLGetDTCs"},"Classes/SDLGetDTCs.html#/c:objc(cs)SDLGetDTCs(py)dtcMask":{"name":"dtcMask","abstract":" @abstract DTC Mask Byte to be sent in diagnostic request to module. NSNumber* dtcMask Minvalue:0; Maxvalue:255 @abstract longitude degrees @abstract latitude degrees @abstract utc year @abstract utc month @abstract utc day @abstract utc hours @abstract utc minutes @abstract utc seconds Potential Compass Directions @abstract The 3D positional dilution of precision. @abstract The horizontal dilution of precision @abstract the vertical dilution of precision @abstract What the coordinates are based on @abstract The number of satellites in view The supported dimensions of the GPS @abstract altitude in meters @abstract Heading based on the GPS data. @abstract speed in KPH A set of all names of files known on the remote head unit. Known files can be used or deleted on the remote system. The number of bytes still available for files for this app. The state of the file manager. The currently pending transactions (Upload, Delete, and List Files) in the file manager Whether or not the file manager is suspended. If suspended, the file manager can continue to queue uploads and deletes, but will not actually perform any of those until it is no longer suspended. This can be used for throttling down the file manager if other, important operations are taking place over the accessory connection. Initialize the class…or not, since this method is unavailable. Dependencies must be injected using initWithConnectionManager: Creates a new file manager with a specified connection manager The manager stars up and attempts to fetch its initial list and transfer initial files. Cancels all file manager operations and deletes all associated data. Delete a file stored on the remote system Deletes an array of files on the remote file system. The files are deleted in the order in which they are added to the array, with the first file to be deleted at index 0. The delete queue is sequential, meaning that once a delete request is sent to Core, the queue waits until a response is received from Core before the next the next delete request is sent. Upload a file to the remote file system. If a file with the [SDLFile name] already exists, this will overwrite that file. If you do not want that to happen, check remoteFileNames before uploading, or change allowOverwrite to NO. Uploads an array of files to the remote file system. The files will be uploaded in the order in which they are added to the array, with the first file to be uploaded at index 0. The upload queue is sequential, meaning that once a upload request is sent to Core, the queue waits until a response is received from Core before the next the next upload request is sent. Uploads an array of files to the remote file system. The files will be uploaded in the order in which they are added to the array, with the first file to be uploaded at index 0. The upload queue is sequential, meaning that once a upload request is sent to Core, the queue waits until a response is received from Core before the next the next upload request is sent. A URL to the directory where temporary files are stored. When an SDLFile is created with NSData, it writes to a temporary file until the file manager finishes uploading it. Whether or not the file should persist on disk between car ignition cycles. Whether or not the file should overwrite an existing file on the remote disk with the same name. The name the file should be stored under on the remote disk. This is how the file will be referenced in all later calls. The url the local file is stored at while waiting to push it to the remote system. If the data has not been passed to the file URL, this will be nil. The binary data of the SDLFile. If initialized with data, this will be a relatively quick call, but if initialized with a file URL, this is a rather expensive call the first time. The data will be cached in RAM after the first call. The size of the binary data of the SDLFile. The system will attempt to determine the type of file that you have passed in. It will default to BINARY if it does not recognize the file type or the file type is not supported by SDL. A stream to pull binary data from a SDLFile. The stream only pulls required data from the file on disk or in memory. This reduces memory usage while uploading a large file to the remote system as each chunk of data can be released immediately after it is uploaded. Undocumented The designated initializer for an SDL File. The only major property that is not set using this is Create an SDL file using a local file URL. Create an SDL file using a local file URL. Create an SDL file using raw data. It is strongly preferred to pass a file URL instead of data, as it is currently held in memory until the file is sent. Create an SDL file using raw data. It is strongly preferred to pass a file URL instead of data, as it is currently held in memory until the file is sent. Create an SDL file using raw data. It is strongly preferred to pass a file URL instead of data, as it is currently held in memory until the file is sent. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The type of display @abstract An array of SDLTextField structures, each of which describes a field in the HMI which the application can write to using operations such as SDLShow, SDLSetMediaClockTimer, etc. @abstract An array of SDLImageField elements @abstract An array of SDLMediaClockFormat elements, defining the valid string formats used in specifying the contents of the media clock field @abstract The display’s persistent screen supports. @abstract Number of presets the screen supports @abstract A set of all parameters related to a prescribed screen area (e.g. for video / touch input) @abstract The number of on-screen custom presets available (if any); otherwise omitted Undocumented Up to 40 character string representing the phone number. All characters stripped except for ‘0’-‘9’, ‘*’, ‘#’, ‘,’, ‘;’, and ‘+’ Undocumented Undocumented Name of target ECU Length of message (in bytes) Array of bytes comprising CAN message. @abstract Indicates whether the voice recognition is on or off @abstract Indicates whether the bluetooth connection established @abstract Indicates whether a call is being active @abstract Indicates whether the phone is in roaming mode @abstract Indicates whether a textmessage is available @abstract Battery level status @abstract The status of the stereo audio output channel @abstract The status of the mono audio output channel @abstract Signal level status @abstract The current primary audio source of SDL (if selected). @abstract Indicates if an emergency call is active Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract the MenuID that identifies the SDLSubMenu to be delete","parent_name":"SDLDeleteSubMenu"},"Classes/SDLDeleteInteractionChoiceSet.html#/c:objc(cs)SDLDeleteInteractionChoiceSet(im)initWithId:":{"name":"-initWithId:","abstract":" Undocumented @abstract a unique ID that identifies the Choice Set","parent_name":"SDLDeleteInteractionChoiceSet"},"Classes/SDLDeleteFileResponse.html#/c:objc(cs)SDLDeleteFileResponse(py)spaceAvailable":{"name":"spaceAvailable","abstract":" Undocumented Undocumented @abstract a file reference name","parent_name":"SDLDeleteFile"},"Classes/SDLDeleteCommand.html#/c:objc(cs)SDLDeleteCommand(im)initWithId:":{"name":"-initWithId:","abstract":" Undocumented @abstract the Command ID that identifies the Command to be deleted from Command Menu","parent_name":"SDLDeleteCommand"},"Classes/SDLDateTime.html#/c:objc(cs)SDLDateTime(im)initWithHour:minute:":{"name":"-initWithHour:minute:","abstract":" Undocumented Undocumented Undocumented Undocumented @abstract Milliseconds part of time @abstract Seconds part of time @abstract Minutes part of time @abstract Hour part of time @abstract Day of the month @abstract Month of the year @abstract The year in YYYY format @abstract Time zone offset in Min with regard to UTC @abstract Time zone offset in Hours with regard to UTC Undocumented Undocumented Undocumented Undocumented @abstract A unique ID that identifies the Choice Set @abstract Array of choices, which the user can select by menu or voice recognition The lifecycle configuration. The lock screen configuration. The log configuration. The configuration Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, and logging configuration. Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, and logging configuration. Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, logging, and streaming media configuration. Create a new configuration to be passed into SDLManager with a custom lifecycle, lock screen, logging, and streaming media configuration. Undocumented Undocumented Undocumented Undocumented Undocumented @abstract Speed of Fan in integer @abstract The Current Temperature in SDLTemperature @abstract Desired Temperature in SDLTemperature @abstract Represents if AC is enabled. @abstract Represents if circulation of air is enabled. @abstract Represents if auto mode is enabled. @abstract Represents the kind of defrost zone @abstract Represents if dual mode is enabled. @abstract Represents if ac max is enabled. @abstract Represents the kind of Ventilation zone Undocumented @abstract The short friendly name of the climate control module.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)fanSpeedAvailable":{"name":"fanSpeedAvailable","abstract":" @abstract Availability of the control of fan speed.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)desiredTemperatureAvailable":{"name":"desiredTemperatureAvailable","abstract":" @abstract Availability of the control of desired temperature.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)acEnableAvailable":{"name":"acEnableAvailable","abstract":" @abstract Availability of the control of turn on/off AC.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)acMaxEnableAvailable":{"name":"acMaxEnableAvailable","abstract":" @abstract Availability of the control of enable/disable air conditioning is ON on the maximum level.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)circulateAirEnableAvailable":{"name":"circulateAirEnableAvailable","abstract":" @abstract Availability of the control of enable/disable circulate Air mode.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)autoModeEnableAvailable":{"name":"autoModeEnableAvailable","abstract":" @abstract Availability of the control of enable/disable auto mode.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)dualModeEnableAvailable":{"name":"dualModeEnableAvailable","abstract":" @abstract Availability of the control of enable/disable dual mode.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)defrostZoneAvailable":{"name":"defrostZoneAvailable","abstract":" @abstract Availability of the control of defrost zones.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)defrostZone":{"name":"defrostZone","abstract":" @abstract A set of all defrost zones that are controllable. @abstract Availability of the control of air ventilation mode.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLClimateControlCapabilities.html#/c:objc(cs)SDLClimateControlCapabilities(py)ventilationMode":{"name":"ventilationMode","abstract":" @abstract A set of all ventilation modes that are controllable.","parent_name":"SDLClimateControlCapabilities"},"Classes/SDLChoice.html#/c:objc(cs)SDLChoice(im)initWithId:menuName:vrCommands:":{"name":"-initWithId:menuName:vrCommands:","abstract":" Undocumented Undocumented @abstract the application-scoped identifier that uniquely identifies this choice @abstract Text which appears in menu, representing this choice @abstract VR synonyms for this choice @abstract The image of the choice @abstract Optional secondary text to display; e.g. address of POI in a search result entry @abstract Optional tertiary text to display; e.g. distance to POI for a search result entry @abstract Optional secondary image for choice Undocumented Undocumented @abstract The language the app wants to change to @abstract HMI display language Request a new app name registration Request a new TTSName registration. Request a new app short name registration Request a new VR synonyms registration Undocumented The module where the button should be pressed. The name of supported RC climate or radio button. Indicates whether this is a LONG or SHORT button press event. @abstract The name of the SDL HMI button. @abstract A NSNumber value indicates whether the button supports a SHORT press @abstract A NSNumber value indicates whether the button supports a LONG press @abstract A NSNumber value indicates whether the button supports @abstract References signal @abstract References signal @abstract References signal @abstract References signal @abstract References signal @abstract References signal @abstract References signal Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The sampling rate for AudioPassThru @abstract The sample depth in bit for AudioPassThru @abstract The audiotype for AudioPassThru Convenience Helper to create an ephemeral artwork from an image. Convenience Helper to create a persistent artwork from an image. Create a file for transmission to the remote system from a UIImage. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract The String to be displayed in the first field of the display during the Alert @abstract The String to be displayed in the second field of the display during the Alert @abstract the String to be displayed in the third field of the display during the Alert","parent_name":"SDLAlert"},"Classes/SDLAlert.html#/c:objc(cs)SDLAlert(py)ttsChunks":{"name":"ttsChunks","abstract":" @abstract An array which, taken together, specify what is to be spoken to the user @abstract The duration of the displayed portion of the alert, in milliseconds. @abstract Whether the alert tone should be played before the TTS (if any) is spoken. @abstract If supported on the given platform, the alert GUI will include some sort of animation indicating that loading of a feature is progressing. e.g. a spinning wheel or hourglass, etc. @abstract App defined SoftButtons. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented @abstract a Menu ID that identifies a sub menu","parent_name":"SDLAddSubMenu"},"Classes/SDLAddSubMenu.html#/c:objc(cs)SDLAddSubMenu(py)position":{"name":"position","abstract":" @abstract a position of menu","parent_name":"SDLAddSubMenu"},"Classes/SDLAddSubMenu.html#/c:objc(cs)SDLAddSubMenu(py)menuName":{"name":"menuName","abstract":" @abstract a menuName which is displayed representing this submenu item","parent_name":"SDLAddSubMenu"},"Classes/SDLAddCommand.html#/c:objc(cs)SDLAddCommand(im)initWithHandler:":{"name":"-initWithHandler:","abstract":" Construct a SDLAddCommand with a handler callback when an event occurs. Undocumented Undocumented Undocumented A handler that will let you know when the button you created is subscribed. @abstract A Unique Command ID that identifies the command @abstract a SDLMenuParams pointer which will defined the command and how it is added to the Command Menu @abstract An array of strings to be used as VR synonyms for this command. @abstract Image struct containing a static or dynamic icon Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented This class will add a command to the application’s Command Menu SDLMenuParams SDLAddCommandResponse is sent, when SDLAddCommand has been called Add a SDLSubMenu to the Command Menu"},"Classes.html#/c:objc(cs)SDLAddSubMenuResponse":{"name":"SDLAddSubMenuResponse","abstract":" SDLAddSubMenuResponse is sent, when SDLAddSubMenu has been called"},"Classes/SDLAirbagStatus.html":{"name":"SDLAirbagStatus","abstract":" Undocumented Shows an alert which typically consists of text-to-speech message and text on the display. At least either alertText1, alertText2 or TTSChunks need to be provided. @since SmartDeviceLink 1.0 SDLAlertManeuverResponse is sent, when SDLAlertManeuver has been called. Sent after SDLAlert has been sent"},"Classes/SDLAppInfo.html":{"name":"SDLAppInfo","abstract":" Undocumented Undocumented Describes different audio type configurations for SDLPerformAudioPassThru, e.g. {8kHz,8-bit,PCM}"},"Classes/SDLBeltStatus.html":{"name":"SDLBeltStatus","abstract":" Undocumented The body information including power modes. Provides information about the capabilities of a SDL HMI button. This RPC allows a remote control type mobile application to simulate a hardware button press event. Undocumented If the app recognizes during the app registration that the SDL HMI language (voice/TTS and/or display) does not match the app language, the app will be able (but does not need) to change this registration with changeRegistration prior to app being brought into focus. SDLChangeRegistrationResponse is sent, when SDLChangeRegistration has been called A choice is an option which a user can select either via the menu or via voice recognition (VR) during an application initiated interaction."},"Classes/SDLClimateControlCapabilities.html":{"name":"SDLClimateControlCapabilities","abstract":" Contains information about a climate control module’s capabilities. Undocumented Undocumented Undocumented Creates a Choice Set which can be used in subsequent SDLPerformInteraction Operations. SDLCreateInteractionChoiceSetResponse is sent, when SDLCreateInteractionChoiceSet"},"Classes/SDLDIDResult.html":{"name":"SDLDIDResult","abstract":" Undocumented Undocumented Removes a command from the Command Menu"},"Classes.html#/c:objc(cs)SDLDeleteCommandResponse":{"name":"SDLDeleteCommandResponse","abstract":" SDLDeleteCommandResponse is sent, when SDLDeleteCommand has been called Used to delete a file resident on the SDL module in the app’s local cache."},"Classes/SDLDeleteFileResponse.html":{"name":"SDLDeleteFileResponse","abstract":" Delete File Response is sent, when DeleteFile has been called Deletes an existing Choice Set identified by the parameter"},"Classes.html#/c:objc(cs)SDLDeleteInteractionChoiceSetResponse":{"name":"SDLDeleteInteractionChoiceSetResponse","abstract":" SDLDeleteInteractionChoiceSetResponse is sent, when SDLDeleteInteractionChoiceSet has been called Deletes a submenu from the Command Menu"},"Classes.html#/c:objc(cs)SDLDeleteSubMenuResponse":{"name":"SDLDeleteSubMenuResponse","abstract":" SDLDeleteSubMenuResponse is sent, when SDLDeleteSubMenu has been called Undocumented Describes the status related to a connected mobile device or SDL and if or how it is represented in the vehicle. Non periodic vehicle diagnostic request SDLDiagnosticMessageResponse is sent, when SDLDiagnosticMessage has been called. This RPC is used to tell the head unit to use bluetooth to dial a phone number using the phone. Indicates the result, success, or failure of the SDLDialNumber request. Contains information about the display for the SDL system to which the application is currently connected. Undocumented Undocumented Undocumented Undocumented When this request is invoked, the audio capture stops SDLEndAudioPassThruResponse is sent, when SDLEndAudioPassThru has been called Undocumented The SDLFileManager is an RPC manager for the remote file system. After it starts, it will attempt to communicate with the remote file system to get the names of all files. Deleting and Uploading will them queue these changes as transactions. If a delete succeeds, the local list of remote files will remove that file name, and likewise, if an upload succeeds, the local list of remote files will now include that file name. Describes the GPS data. Not all data will be available on all carlines. Generic Response is sent, when the name of a received msg cannot be"},"Classes/SDLGetDTCs.html":{"name":"SDLGetDTCs","abstract":" This RPC allows to request diagnostic module trouble codes from a certain"},"Classes/SDLGetDTCsResponse.html":{"name":"SDLGetDTCsResponse","abstract":" SDLGetDTCsResponse is sent, when SDLGetDTCs has been called Reads the current status value of specified remote control module (type)."},"Classes/SDLGetInteriorVehicleDataResponse.html":{"name":"SDLGetInteriorVehicleDataResponse","abstract":" Undocumented Undocumented Undocumented Requests surrent values of specific published vehicle data items."},"Classes/SDLGetVehicleDataResponse.html":{"name":"SDLGetVehicleDataResponse","abstract":" Get Vehicle Data Response is sent, when SDLGetVehicleData has been called Undocumented Undocumented Undocumented Defining sets of HMI levels, which are permitted or prohibited for a given RPC. Defines spatial for each user control object for video streaming application Status of the head lamps Undocumented Specifies, which image shall be used, e.g. in SDLAlerts or on SDLSoftbuttons provided the display supports it. Undocumented Undocumented Undocumented Configuration options for SDLManager Requests the current list of resident filenames for the registered app. Not"},"Classes/SDLListFilesResponse.html":{"name":"SDLListFilesResponse","abstract":" SDLListFilesResponse is sent, when SDLListFiles has been called Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented This is the central manager of logging. A developer should not have to interact with this class, it is exclusively used internally. The Apple System Log target is an iOS 2.0+ compatible log target that logs to both the Console and to the System Log. The File log will log to a text file on the iPhone in Documents/smartdevicelink/log/#appName##datetime##.log. It will log up to 3 logs which will rollover. OS_LOG is an iOS 10+ only logging system that logs to the Console and the Apple system console. This is an improved replacement for Apple SysLog (SDLLogTargetAppleSystemLog). Undocumented Used when adding a sub menu to an application menu or existing sub menu. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Notifies an application that its interface registration has been terminated. This means that all SDL resources associated with the application are discarded, including the Command Menu, Choice Sets, button subscriptions, etc. Binary data is in binary part of hybrid msg. Notifies application that user has depressed or released a button to which"},"Classes/SDLOnButtonPress.html":{"name":"SDLOnButtonPress","abstract":" Notifies application of button press events for buttons to which the"},"Classes/SDLOnCommand.html":{"name":"SDLOnCommand","abstract":" This is called when a command was selected via VR after pressing the PTT button, or selected from the menu after"},"Classes/SDLOnDriverDistraction.html":{"name":"SDLOnDriverDistraction","abstract":" Notifies the application of the current driver distraction state (whether driver distraction rules are in effect, or"},"Classes/SDLOnEncodedSyncPData.html":{"name":"SDLOnEncodedSyncPData","abstract":" Undocumented Notifies an application that HMI conditions have changed for the application. This indicates whether the application"},"Classes/SDLOnHashChange.html":{"name":"SDLOnHashChange","abstract":" Undocumented Undocumented Undocumented Provides information to what language the SDL HMI language was changed Provides update to app of which sets of functions are available Undocumented Undocumented Undocumented Undocumented Request vehicle data. Undocumented Defining sets of parameters, which are permitted or prohibited for a given RPC. This will open an audio pass thru session. By doing so the app can receive"},"Classes.html#/c:objc(cs)SDLPerformAudioPassThruResponse":{"name":"SDLPerformAudioPassThruResponse","abstract":" Perform Audio Pass Thru Response is sent, when PerformAudioPassThru has been called Performs an application-initiated interaction in which the user can select a"},"Classes/SDLPerformInteractionResponse.html":{"name":"SDLPerformInteractionResponse","abstract":" PerformInteraction Response is sent, when SDLPerformInteraction has been called Undocumented Undocumented Undocumented Undocumented Contains information about on-screen preset capabilities. Undocumented Undocumented Undocumented Undocumented Undocumented Used to push a binary data onto the SDL module from a mobile device, such as"},"Classes/SDLPutFileResponse.html":{"name":"SDLPutFileResponse","abstract":" Put File Response is sent, when SDLPutFile has been called Include the data defined in Radio Data System,"},"Classes/SDLRPCMessage.html":{"name":"SDLRPCMessage","abstract":" Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Contains information about a radio control module’s capabilities. Include information (both read-only and changeable data) about a remote control radio module. Non periodic vehicle data read request. This is an RPC to get diagnostics"},"Classes/SDLReadDIDResponse.html":{"name":"SDLReadDIDResponse","abstract":" Read DID Response is sent, when ReadDID has been called Undocumented Registers the application’s interface with SDL®, declaring properties of"},"Classes/SDLRegisterAppInterfaceResponse.html":{"name":"SDLRegisterAppInterfaceResponse","abstract":" @abstract Register AppInterface Response is sent, when SDLRegisterAppInterface has been called Undocumented Resets the passed global properties to their default values as defined by"},"Classes.html#/c:objc(cs)SDLResetGlobalPropertiesResponse":{"name":"SDLResetGlobalPropertiesResponse","abstract":" Reset Global Properties Response is sent, when SDLResetGlobalProperties has been called Undocumented Creates a full screen overlay containing a large block of formatted text that"},"Classes.html#/c:objc(cs)SDLScrollableMessageResponse":{"name":"SDLScrollableMessageResponse","abstract":" Scrollable Message Response is sent, when SDLScrollableMessage has been called Sends the spatial data gathered from SDLCarWindow or VirtualDisplayEncoder to the HMI. This data will be utilized by the HMI to determine how and when haptic events should occur. SDLSendHapticDataResponse is sent when SDLSendHapticData has been called Undocumented Undocumented Used to set existing local file on SDL as the app’s icon. Not supported on"},"Classes.html#/c:objc(cs)SDLSetAppIconResponse":{"name":"SDLSetAppIconResponse","abstract":" SDLSetAppIconResponse is sent, when SDLSetAppIcon has been called. Used to set an alternate display layout. If not sent, default screen for"},"Classes/SDLSetDisplayLayoutResponse.html":{"name":"SDLSetDisplayLayoutResponse","abstract":" Set Display Layout Response is sent, when SetDisplayLayout has been called Sets value(s) for the specified global property(ies)"},"Classes.html#/c:objc(cs)SDLSetGlobalPropertiesResponse":{"name":"SDLSetGlobalPropertiesResponse","abstract":" Set Global Properties Response is sent, when SDLSetGlobalProperties has been called This RPC allows a remote control type mobile application to"},"Classes/SDLSetInteriorVehicleDataResponse.html":{"name":"SDLSetInteriorVehicleDataResponse","abstract":" Used to set the values of one remote control module Sets the media clock/timer value and the update method (e.g.count-up,"},"Classes.html#/c:objc(cs)SDLSetMediaClockTimerResponse":{"name":"SDLSetMediaClockTimerResponse","abstract":" Set Media Clock Timer Response is sent, when SDLSetMediaClockTimer has been called Updates the application’s display text area, regardless of whether or not"},"Classes/SDLShowConstantTBT.html":{"name":"SDLShowConstantTBT","abstract":" This RPC is used to update the user with navigation information SDLShowConstantTBTResponse is sent, when SDLShowConstantTBT has been called. Show Response is sent, when Show has been called Tire pressure status of a single tire. Creates a full screen or pop-up overlay (depending on platform) with a single user controlled slider Slider Response is sent, when Slider has been called Undocumented Contains information about a SoftButton’s capabilities. Speaks a phrase over the vehicle audio system using SDL’s TTS (text-to-speech) engine. The provided text to be spoken can be simply a text phrase, or it can consist of phoneme specifications to direct SDL’s TTS engine to speak a Speak Response is sent, when Speak has been called Describes the hour, minute and second values used to set the media clock. Undocumented Undocumented Establishes a subscription to button notifications for HMI buttons. Buttons"},"Classes.html#/c:objc(cs)SDLSubscribeButtonResponse":{"name":"SDLSubscribeButtonResponse","abstract":" SubscribeButton Response is sent, when SDLSubscribeButton has been called Subscribes for specific published vehicle data items. The data will be only"},"Classes/SDLSubscribeVehicleDataResponse.html":{"name":"SDLSubscribeVehicleDataResponse","abstract":" Subscribe Vehicle Data Response is sent, when SDLSubscribeVehicleData has been called A SDLSubscribeWaypoints can be sent to subscribe"},"Classes.html#/c:objc(cs)SDLSubscribeWayPointsResponse":{"name":"SDLSubscribeWayPointsResponse","abstract":" Undocumented Specifies the version number of the SDL V4 interface. This is used by both the application and SDL to declare what interface version each is using. Undocumented Undocumented The systemCapabilityType indicates which type of data should be changed and identifies which data object exists in this struct. For example, if the SystemCapability Type is NAVIGATION then a Undocumented Specifies what is to be spoken. This can be simply a text phrase, which SDL will speak according to its own rules. It can also be phonemes from either the Microsoft SAPI phoneme set, or from the LHPLUS phoneme set. It can also be a pre-recorded sound in WAV format (either developer-defined, or provided by the SDL platform). Undocumented Struct defining the characteristics of a displayed field on the HMI. Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Undocumented Terminates an application’s interface registration. This causes SDL® to"},"Classes.html#/c:objc(cs)SDLUnregisterAppInterfaceResponse":{"name":"SDLUnregisterAppInterfaceResponse","abstract":" Unregister AppInterface Response is sent, when SDLUnregisterAppInterface has been called Deletes a subscription to button notifications for the specified button. For"},"Classes.html#/c:objc(cs)SDLUnsubscribeButtonResponse":{"name":"SDLUnsubscribeButtonResponse","abstract":" Unsubscribe Button Response is sent, when SDLUnsubscribeButton has been called This function is used to unsubscribe the notifications from the"},"Classes/SDLUnsubscribeVehicleDataResponse.html":{"name":"SDLUnsubscribeVehicleDataResponse","abstract":" Unsubscribe Vehicle Data Response is sent, when UnsubscribeVehicleData has been called Undocumented Undocumented Updates the list of next maneuvers, which can be requested by the user pressing the softbutton SDLUpdateTurnListResponse is sent, when SDLUpdateTurnList has been called. Undocumented Describes the type of vehicle the mobile phone is connected with. Undocumented Undocumented Undocumented Undocumented Undocumented The following categories are available globally. The following classes are available globally. The following constants are available globally. The following enumerations are available globally. The following protocols are available globally. The following type definitions are available globally.SDLManager
.onAudioPassThru
notification is received.CUSTOM_BUTTON
, this references the integer ID passed by a custom button. (e.g. softButton ID)CUSTOM_BUTTON
, this references the integer ID passed by a custom button. (e.g. softButton ID)mainField1
text field, Optional.mainField2
text field, Optional.mainField3
text field, Optional.mainField4
text field, Optional.startWithHandler
to begin waiting for a connection.SDLLogD
.SDLLogD
.SDLLogD
.SDLLogD
.Transport
__FILE__
(in Obj-C) or #file
(in Swift) is automatically captured and checked to see if any module has a file in this set that matches. If it does, it will be logged using the module’s log level and the module’s name will be printed in the formatted log.SDLLogLevelDefault
(whatever the current global log level is) by default.SDLLogFileModule
that contains a custom name, set of files, and associated log level.SDLLogFileModule
that contains a custom name and set of files. The logging level is the same as the current global logging file by using SDLLogLevelDefault
.SDLLogFileModule
that contains a custom name and set of files. The logging level is the same as the current global logging file by using SDLLogLevelDefault
.lock screen optional
state. Defaults to ‘NO’.subscribe
parameter was present in the related request.","parent_name":"SDLGetInteriorVehicleDataResponse"},"Classes/SDLGetInteriorVehicleData.html#/c:objc(cs)SDLGetInteriorVehicleData(im)initWithModuleType:":{"name":"-initWithModuleType:","abstract":"overwrite
, which defaults to NO.button down
and button up
PrkBrkActv_B_Actl
.Ignition_Switch_Stable
. See IgnitionStableStatus.Ignition_status
. See IgnitionStatus.DrStatDrv_B_Actl
.DrStatPsngr_B_Actl
.DrStatRl_B_Actl
.DrStatRr_B_Actl
.To help prevent driver distraction, any SmartDeviceLink application is required to implement a lockscreen that must be enforced while the application is active on the system while the vehicle is in motion."},"Classes/SDLOnPermissionsChange.html":{"name":"SDLOnPermissionsChange","abstract":"
speech-sculpted
phrase.navigationCapability
should exist.focus
to other applications (e.g. phone, other mobile applications, etc.)OK
. A typical use of this button is for the user to press it to make a selection.dot matrix
display.Cancel
button."},"Constants.html#/c:@SDLKeyboardEventAborted":{"name":"SDLKeyboardEventAborted","abstract":"
appearing on the top left letter row of the keyboard and read from left to right)"},"Constants.html#/c:@SDLKeyboardLayoutQWERTZ":{"name":"SDLKeyboardLayoutQWERTZ","abstract":"
appearing on the top left letter row of the keyboard and read from left to right)"},"Constants.html#/c:@SDLKeyboardLayoutAZERTY":{"name":"SDLKeyboardLayoutAZERTY","abstract":"
appearing on the top left letter row of the keyboard and read from left to right)"},"Constants.html#/c:@SDLKeypressModeSingleKeypress":{"name":"SDLKeypressModeSingleKeypress","abstract":"
Each and every User`s keypress must be reported (new notification for every newly entered single symbol)."},"Constants.html#/c:@SDLKeypressModeQueueKeypresses":{"name":"SDLKeypressModeQueueKeypresses","abstract":"
The whole entry is reported only after the User submits it (by ‘Search’ button click displayed on touchscreen keyboard)"},"Constants.html#/c:@SDLKeypressModeResendCurrentEntry":{"name":"SDLKeypressModeResendCurrentEntry","abstract":"
The whole entry must be reported each and every time the User makes a new keypress
(new notification with all previously entered symbols and a newly entered one appended)."},"Constants.html#/c:@SDLLanguageEnSa":{"name":"SDLLanguageEnSa","abstract":"type
field.text
field (e.g. phrase to be spoken, phoneme specification, name of pre-recorded sound).SDLDidUpdateProjectionView
notification or call the updateInterfaceLayout
method to reparse. The output
of this haptic interface occurs in the touchManager
property where it will call the delegate.SDLManager
.init
.button down
and button up
.SDLManager
.onAudioPassThru
notification is received.CUSTOM_BUTTON
, this references the integer ID passed by a custom button. (e.g. softButton ID)CUSTOM_BUTTON
, this references the integer ID passed by a custom button. (e.g. softButton ID)mainField1
text field, Optional.mainField2
text field, Optional.mainField3
text field, Optional.mainField4
text field, Optional.startWithHandler
to begin waiting for a connection.SDLLogD
.SDLLogD
.SDLLogD
.SDLLogD
.Transport
__FILE__
(in Obj-C) or #file
(in Swift) is automatically captured and checked to see if any module has a file in this set that matches. If it does, it will be logged using the module’s log level and the module’s name will be printed in the formatted log.SDLLogLevelDefault
(whatever the current global log level is) by default.SDLLogFileModule
that contains a custom name, set of files, and associated log level.SDLLogFileModule
that contains a custom name and set of files. The logging level is the same as the current global logging file by using SDLLogLevelDefault
.SDLLogFileModule
that contains a custom name and set of files. The logging level is the same as the current global logging file by using SDLLogLevelDefault
.lock screen optional
state. Defaults to ‘NO’.subscribe
parameter was present in the related request.","parent_name":"SDLGetInteriorVehicleDataResponse"},"Classes/SDLGetInteriorVehicleData.html#/c:objc(cs)SDLGetInteriorVehicleData(im)initWithModuleType:":{"name":"-initWithModuleType:","abstract":"overwrite
, which defaults to NO.button down
and button up
PrkBrkActv_B_Actl
.Ignition_Switch_Stable
. See IgnitionStableStatus.Ignition_status
. See IgnitionStatus.DrStatDrv_B_Actl
.DrStatPsngr_B_Actl
.DrStatRl_B_Actl
.DrStatRr_B_Actl
.To help prevent driver distraction, any SmartDeviceLink application is required to implement a lockscreen that must be enforced while the application is active on the system while the vehicle is in motion."},"Classes/SDLOnPermissionsChange.html":{"name":"SDLOnPermissionsChange","abstract":"
speech-sculpted
phrase.navigationCapability
should exist.