summaryrefslogtreecommitdiff
path: root/docs/index.html
blob: 9a2e49fa83a2864e77fbe7a70f5b225be39bf6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
- name: Categories
  sub_nav:
    - name: NSString(SDLEnum)
      url: Categories/NSString(SDLEnum).html
- name: Classes
  sub_nav:
    - name: SDLAbstractProtocol
      url: Classes/SDLAbstractProtocol.html
    - name: SDLAbstractTransport
      url: Classes/SDLAbstractTransport.html
    - name: SDLAddCommand
      url: Classes/SDLAddCommand.html
    - name: SDLAddCommandResponse
      url: Classes.html#/c:objc(cs)SDLAddCommandResponse
    - name: SDLAddSubMenu
      url: Classes/SDLAddSubMenu.html
    - name: SDLAddSubMenuResponse
      url: Classes.html#/c:objc(cs)SDLAddSubMenuResponse
    - name: SDLAirbagStatus
      url: Classes/SDLAirbagStatus.html
    - name: SDLAlert
      url: Classes/SDLAlert.html
    - name: SDLAlertManeuver
      url: Classes/SDLAlertManeuver.html
    - name: SDLAlertManeuverResponse
      url: Classes.html#/c:objc(cs)SDLAlertManeuverResponse
    - name: SDLAlertResponse
      url: Classes/SDLAlertResponse.html
    - name: SDLAppInfo
      url: Classes/SDLAppInfo.html
    - name: SDLArtwork
      url: Classes/SDLArtwork.html
    - name: SDLAudioPassThruCapabilities
      url: Classes/SDLAudioPassThruCapabilities.html
    - name: SDLBeltStatus
      url: Classes/SDLBeltStatus.html
    - name: SDLBodyInformation
      url: Classes/SDLBodyInformation.html
    - name: SDLButtonCapabilities
      url: Classes/SDLButtonCapabilities.html
    - name: SDLButtonPress
      url: Classes/SDLButtonPress.html
    - name: SDLButtonPressResponse
      url: Classes.html#/c:objc(cs)SDLButtonPressResponse
    - name: SDLChangeRegistration
      url: Classes/SDLChangeRegistration.html
    - name: SDLChangeRegistrationResponse
      url: Classes.html#/c:objc(cs)SDLChangeRegistrationResponse
    - name: SDLChoice
      url: Classes/SDLChoice.html
    - name: SDLClimateControlCapabilities
      url: Classes/SDLClimateControlCapabilities.html
    - name: SDLClimateControlData
      url: Classes/SDLClimateControlData.html
    - name: SDLClusterModeStatus
      url: Classes/SDLClusterModeStatus.html
    - name: SDLConfiguration
      url: Classes/SDLConfiguration.html
    - name: SDLCreateInteractionChoiceSet
      url: Classes/SDLCreateInteractionChoiceSet.html
    - name: SDLCreateInteractionChoiceSetResponse
      url: Classes.html#/c:objc(cs)SDLCreateInteractionChoiceSetResponse
    - name: SDLDIDResult
      url: Classes/SDLDIDResult.html
    - name: SDLDateTime
      url: Classes/SDLDateTime.html
    - name: SDLDeleteCommand
      url: Classes/SDLDeleteCommand.html
    - name: SDLDeleteCommandResponse
      url: Classes.html#/c:objc(cs)SDLDeleteCommandResponse
    - name: SDLDeleteFile
      url: Classes/SDLDeleteFile.html
    - name: SDLDeleteFileResponse
      url: Classes/SDLDeleteFileResponse.html
    - name: SDLDeleteInteractionChoiceSet
      url: Classes/SDLDeleteInteractionChoiceSet.html
    - name: SDLDeleteInteractionChoiceSetResponse
      url: Classes.html#/c:objc(cs)SDLDeleteInteractionChoiceSetResponse
    - name: SDLDeleteSubMenu
      url: Classes/SDLDeleteSubMenu.html
    - name: SDLDeleteSubMenuResponse
      url: Classes.html#/c:objc(cs)SDLDeleteSubMenuResponse
    - name: SDLDeviceInfo
      url: Classes/SDLDeviceInfo.html
    - name: SDLDeviceStatus
      url: Classes/SDLDeviceStatus.html
    - name: SDLDiagnosticMessage
      url: Classes/SDLDiagnosticMessage.html
    - name: SDLDiagnosticMessageResponse
      url: Classes/SDLDiagnosticMessageResponse.html
    - name: SDLDialNumber
      url: Classes/SDLDialNumber.html
    - name: SDLDialNumberResponse
      url: Classes.html#/c:objc(cs)SDLDialNumberResponse
    - name: SDLDisplayCapabilities
      url: Classes/SDLDisplayCapabilities.html
    - name: SDLECallInfo
      url: Classes/SDLECallInfo.html
    - name: SDLEmergencyEvent
      url: Classes/SDLEmergencyEvent.html
    - name: SDLEncodedSyncPData
      url: Classes/SDLEncodedSyncPData.html
    - name: SDLEncodedSyncPDataResponse
      url: Classes.html#/c:objc(cs)SDLEncodedSyncPDataResponse
    - name: SDLEndAudioPassThru
      url: Classes.html#/c:objc(cs)SDLEndAudioPassThru
    - name: SDLEndAudioPassThruResponse
      url: Classes.html#/c:objc(cs)SDLEndAudioPassThruResponse
    - name: SDLFile
      url: Classes/SDLFile.html
    - name: SDLFileManager
      url: Classes/SDLFileManager.html
    - name: SDLGPSData
      url: Classes/SDLGPSData.html
    - name: SDLGenericResponse
      url: Classes.html#/c:objc(cs)SDLGenericResponse
    - name: SDLGetDTCs
      url: Classes/SDLGetDTCs.html
    - name: SDLGetDTCsResponse
      url: Classes/SDLGetDTCsResponse.html
    - name: SDLGetInteriorVehicleData
      url: Classes/SDLGetInteriorVehicleData.html
    - name: SDLGetInteriorVehicleDataResponse
      url: Classes/SDLGetInteriorVehicleDataResponse.html
    - name: SDLGetSystemCapability
      url: Classes/SDLGetSystemCapability.html
    - name: SDLGetSystemCapabilityResponse
      url: Classes/SDLGetSystemCapabilityResponse.html
    - name: SDLGetVehicleData
      url: Classes/SDLGetVehicleData.html
    - name: SDLGetVehicleDataResponse
      url: Classes/SDLGetVehicleDataResponse.html
    - name: SDLGetWayPoints
      url: Classes/SDLGetWayPoints.html
    - name: SDLGetWayPointsResponse
      url: Classes/SDLGetWayPointsResponse.html
    - name: SDLHMICapabilities
      url: Classes/SDLHMICapabilities.html
    - name: SDLHMIPermissions
      url: Classes/SDLHMIPermissions.html
    - name: SDLHapticRect
      url: Classes/SDLHapticRect.html
    - name: SDLHeadLampStatus
      url: Classes/SDLHeadLampStatus.html
    - name: SDLIAPTransport
      url: Classes/SDLIAPTransport.html
    - name: SDLImage
      url: Classes/SDLImage.html
    - name: SDLImageField
      url: Classes/SDLImageField.html
    - name: SDLImageResolution
      url: Classes/SDLImageResolution.html
    - name: SDLKeyboardProperties
      url: Classes/SDLKeyboardProperties.html
    - name: SDLLifecycleConfiguration
      url: Classes/SDLLifecycleConfiguration.html
    - name: SDLListFiles
      url: Classes.html#/c:objc(cs)SDLListFiles
    - name: SDLListFilesResponse
      url: Classes/SDLListFilesResponse.html
    - name: SDLLocationCoordinate
      url: Classes/SDLLocationCoordinate.html
    - name: SDLLocationDetails
      url: Classes/SDLLocationDetails.html
    - name: SDLLockScreenConfiguration
      url: Classes/SDLLockScreenConfiguration.html
    - name: SDLLockScreenViewController
      url: Classes/SDLLockScreenViewController.html
    - name: SDLLogConfiguration
      url: Classes/SDLLogConfiguration.html
    - name: SDLLogFileModule
      url: Classes/SDLLogFileModule.html
    - name: SDLLogFilter
      url: Classes/SDLLogFilter.html
    - name: SDLLogManager
      url: Classes/SDLLogManager.html
    - name: SDLLogTargetAppleSystemLog
      url: Classes.html#/c:objc(cs)SDLLogTargetAppleSystemLog
    - name: SDLLogTargetFile
      url: Classes.html#/c:objc(cs)SDLLogTargetFile
    - name: SDLLogTargetOSLog
      url: Classes.html#/c:objc(cs)SDLLogTargetOSLog
    - name: SDLManager
      url: Classes/SDLManager.html
    - name: SDLMenuParams
      url: Classes/SDLMenuParams.html
    - name: SDLMetadataTags
      url: Classes/SDLMetadataTags.html
    - name: SDLModuleData
      url: Classes/SDLModuleData.html
    - name: SDLMyKey
      url: Classes/SDLMyKey.html
    - name: SDLNavigationCapability
      url: Classes/SDLNavigationCapability.html
    - name: SDLNotificationConstants
      url: Classes/SDLNotificationConstants.html
    - name: SDLOasisAddress
      url: Classes/SDLOasisAddress.html
    - name: SDLOnAppInterfaceUnregistered
      url: Classes/SDLOnAppInterfaceUnregistered.html
    - name: SDLOnAudioPassThru
      url: Classes.html#/c:objc(cs)SDLOnAudioPassThru
    - name: SDLOnButtonEvent
      url: Classes/SDLOnButtonEvent.html
    - name: SDLOnButtonPress
      url: Classes/SDLOnButtonPress.html
    - name: SDLOnCommand
      url: Classes/SDLOnCommand.html
    - name: SDLOnDriverDistraction
      url: Classes/SDLOnDriverDistraction.html
    - name: SDLOnEncodedSyncPData
      url: Classes/SDLOnEncodedSyncPData.html
    - name: SDLOnHMIStatus
      url: Classes/SDLOnHMIStatus.html
    - name: SDLOnHashChange
      url: Classes/SDLOnHashChange.html
    - name: SDLOnInteriorVehicleData
      url: Classes/SDLOnInteriorVehicleData.html
    - name: SDLOnKeyboardInput
      url: Classes/SDLOnKeyboardInput.html
    - name: SDLOnLanguageChange
      url: Classes/SDLOnLanguageChange.html
    - name: SDLOnLockScreenStatus
      url: Classes/SDLOnLockScreenStatus.html
    - name: SDLOnPermissionsChange
      url: Classes/SDLOnPermissionsChange.html
    - name: SDLOnSyncPData
      url: Classes/SDLOnSyncPData.html
    - name: SDLOnSystemRequest
      url: Classes/SDLOnSystemRequest.html
    - name: SDLOnTBTClientState
      url: Classes/SDLOnTBTClientState.html
    - name: SDLOnTouchEvent
      url: Classes/SDLOnTouchEvent.html
    - name: SDLOnVehicleData
      url: Classes/SDLOnVehicleData.html
    - name: SDLOnWayPointChange
      url: Classes/SDLOnWayPointChange.html
    - name: SDLParameterPermissions
      url: Classes/SDLParameterPermissions.html
    - name: SDLPerformAudioPassThru
      url: Classes/SDLPerformAudioPassThru.html
    - name: SDLPerformAudioPassThruResponse
      url: Classes.html#/c:objc(cs)SDLPerformAudioPassThruResponse
    - name: SDLPerformInteraction
      url: Classes/SDLPerformInteraction.html
    - name: SDLPerformInteractionResponse
      url: Classes/SDLPerformInteractionResponse.html
    - name: SDLPermissionItem
      url: Classes/SDLPermissionItem.html
    - name: SDLPermissionManager
      url: Classes/SDLPermissionManager.html
    - name: SDLPhoneCapability
      url: Classes/SDLPhoneCapability.html
    - name: SDLPinchGesture
      url: Classes/SDLPinchGesture.html
    - name: SDLPresetBankCapabilities
      url: Classes/SDLPresetBankCapabilities.html
    - name: SDLProtocol
      url: Classes/SDLProtocol.html
    - name: SDLProtocolHeader
      url: Classes/SDLProtocolHeader.html
    - name: SDLProtocolMessage
      url: Classes/SDLProtocolMessage.html
    - name: SDLProxy
      url: Classes/SDLProxy.html
    - name: SDLProxyFactory
      url: Classes/SDLProxyFactory.html
    - name: SDLPutFile
      url: Classes/SDLPutFile.html
    - name: SDLPutFileResponse
      url: Classes/SDLPutFileResponse.html
    - name: SDLRDSData
      url: Classes/SDLRDSData.html
    - name: SDLRPCMessage
      url: Classes/SDLRPCMessage.html
    - name: SDLRPCNotification
      url: Classes.html#/c:objc(cs)SDLRPCNotification
    - name: SDLRPCNotificationNotification
      url: Classes/SDLRPCNotificationNotification.html
    - name: SDLRPCRequest
      url: Classes/SDLRPCRequest.html
    - name: SDLRPCResponse
      url: Classes/SDLRPCResponse.html
    - name: SDLRPCResponseNotification
      url: Classes/SDLRPCResponseNotification.html
    - name: SDLRPCStruct
      url: Classes/SDLRPCStruct.html
    - name: SDLRadioControlCapabilities
      url: Classes/SDLRadioControlCapabilities.html
    - name: SDLRadioControlData
      url: Classes/SDLRadioControlData.html
    - name: SDLReadDID
      url: Classes/SDLReadDID.html
    - name: SDLReadDIDResponse
      url: Classes/SDLReadDIDResponse.html
    - name: SDLRectangle
      url: Classes/SDLRectangle.html
    - name: SDLRegisterAppInterface
      url: Classes/SDLRegisterAppInterface.html
    - name: SDLRegisterAppInterfaceResponse
      url: Classes/SDLRegisterAppInterfaceResponse.html
    - name: SDLRemoteControlCapabilities
      url: Classes/SDLRemoteControlCapabilities.html
    - name: SDLResetGlobalProperties
      url: Classes/SDLResetGlobalProperties.html
    - name: SDLResetGlobalPropertiesResponse
      url: Classes.html#/c:objc(cs)SDLResetGlobalPropertiesResponse
    - name: SDLScreenParams
      url: Classes/SDLScreenParams.html
    - name: SDLScrollableMessage
      url: Classes/SDLScrollableMessage.html
    - name: SDLScrollableMessageResponse
      url: Classes.html#/c:objc(cs)SDLScrollableMessageResponse
    - name: SDLSendHapticData
      url: Classes/SDLSendHapticData.html
    - name: SDLSendHapticDataResponse
      url: Classes.html#/c:objc(cs)SDLSendHapticDataResponse
    - name: SDLSendLocation
      url: Classes/SDLSendLocation.html
    - name: SDLSendLocationResponse
      url: Classes.html#/c:objc(cs)SDLSendLocationResponse
    - name: SDLSetAppIcon
      url: Classes/SDLSetAppIcon.html
    - name: SDLSetAppIconResponse
      url: Classes.html#/c:objc(cs)SDLSetAppIconResponse
    - name: SDLSetDisplayLayout
      url: Classes/SDLSetDisplayLayout.html
    - name: SDLSetDisplayLayoutResponse
      url: Classes/SDLSetDisplayLayoutResponse.html
    - name: SDLSetGlobalProperties
      url: Classes/SDLSetGlobalProperties.html
    - name: SDLSetGlobalPropertiesResponse
      url: Classes.html#/c:objc(cs)SDLSetGlobalPropertiesResponse
    - name: SDLSetInteriorVehicleData
      url: Classes/SDLSetInteriorVehicleData.html
    - name: SDLSetInteriorVehicleDataResponse
      url: Classes/SDLSetInteriorVehicleDataResponse.html
    - name: SDLSetMediaClockTimer
      url: Classes/SDLSetMediaClockTimer.html
    - name: SDLSetMediaClockTimerResponse
      url: Classes.html#/c:objc(cs)SDLSetMediaClockTimerResponse
    - name: SDLShow
      url: Classes/SDLShow.html
    - name: SDLShowConstantTBT
      url: Classes/SDLShowConstantTBT.html
    - name: SDLShowConstantTBTResponse
      url: Classes.html#/c:objc(cs)SDLShowConstantTBTResponse
    - name: SDLShowResponse
      url: Classes.html#/c:objc(cs)SDLShowResponse
    - name: SDLSingleTireStatus
      url: Classes/SDLSingleTireStatus.html
    - name: SDLSlider
      url: Classes/SDLSlider.html
    - name: SDLSliderResponse
      url: Classes/SDLSliderResponse.html
    - name: SDLSoftButton
      url: Classes/SDLSoftButton.html
    - name: SDLSoftButtonCapabilities
      url: Classes/SDLSoftButtonCapabilities.html
    - name: SDLSpeak
      url: Classes/SDLSpeak.html
    - name: SDLSpeakResponse
      url: Classes.html#/c:objc(cs)SDLSpeakResponse
    - name: SDLStartTime
      url: Classes/SDLStartTime.html
    - name: SDLStreamingMediaConfiguration
      url: Classes/SDLStreamingMediaConfiguration.html
    - name: SDLStreamingMediaManager
      url: Classes/SDLStreamingMediaManager.html
    - name: SDLSubscribeButton
      url: Classes/SDLSubscribeButton.html
    - name: SDLSubscribeButtonResponse
      url: Classes.html#/c:objc(cs)SDLSubscribeButtonResponse
    - name: SDLSubscribeVehicleData
      url: Classes/SDLSubscribeVehicleData.html
    - name: SDLSubscribeVehicleDataResponse
      url: Classes/SDLSubscribeVehicleDataResponse.html
    - name: SDLSubscribeWayPoints
      url: Classes.html#/c:objc(cs)SDLSubscribeWayPoints
    - name: SDLSubscribeWayPointsResponse
      url: Classes.html#/c:objc(cs)SDLSubscribeWayPointsResponse
    - name: SDLSyncMsgVersion
      url: Classes/SDLSyncMsgVersion.html
    - name: SDLSyncPData
      url: Classes.html#/c:objc(cs)SDLSyncPData
    - name: SDLSyncPDataResponse
      url: Classes.html#/c:objc(cs)SDLSyncPDataResponse
    - name: SDLSystemCapability
      url: Classes/SDLSystemCapability.html
    - name: SDLTCPTransport
      url: Classes/SDLTCPTransport.html
    - name: SDLTTSChunk
      url: Classes/SDLTTSChunk.html
    - name: SDLTemperature
      url: Classes/SDLTemperature.html
    - name: SDLTextField
      url: Classes/SDLTextField.html
    - name: SDLTireStatus
      url: Classes/SDLTireStatus.html
    - name: SDLTouch
      url: Classes/SDLTouch.html
    - name: SDLTouchCoord
      url: Classes/SDLTouchCoord.html
    - name: SDLTouchEvent
      url: Classes/SDLTouchEvent.html
    - name: SDLTouchEventCapabilities
      url: Classes/SDLTouchEventCapabilities.html
    - name: SDLTouchManager
      url: Classes/SDLTouchManager.html
    - name: SDLTurn
      url: Classes/SDLTurn.html
    - name: SDLUnregisterAppInterface
      url: Classes.html#/c:objc(cs)SDLUnregisterAppInterface
    - name: SDLUnregisterAppInterfaceResponse
      url: Classes.html#/c:objc(cs)SDLUnregisterAppInterfaceResponse
    - name: SDLUnsubscribeButton
      url: Classes/SDLUnsubscribeButton.html
    - name: SDLUnsubscribeButtonResponse
      url: Classes.html#/c:objc(cs)SDLUnsubscribeButtonResponse
    - name: SDLUnsubscribeVehicleData
      url: Classes/SDLUnsubscribeVehicleData.html
    - name: SDLUnsubscribeVehicleDataResponse
      url: Classes/SDLUnsubscribeVehicleDataResponse.html
    - name: SDLUnsubscribeWayPoints
      url: Classes.html#/c:objc(cs)SDLUnsubscribeWayPoints
    - name: SDLUnsubscribeWayPointsResponse
      url: Classes.html#/c:objc(cs)SDLUnsubscribeWayPointsResponse
    - name: SDLUpdateTurnList
      url: Classes/SDLUpdateTurnList.html
    - name: SDLUpdateTurnListResponse
      url: Classes.html#/c:objc(cs)SDLUpdateTurnListResponse
    - name: SDLVRHelpItem
      url: Classes/SDLVRHelpItem.html
    - name: SDLVehicleDataResult
      url: Classes/SDLVehicleDataResult.html
    - name: SDLVehicleType
      url: Classes/SDLVehicleType.html
    - name: SDLVideoStreamingCapability
      url: Classes/SDLVideoStreamingCapability.html
    - name: SDLVideoStreamingFormat
      url: Classes/SDLVideoStreamingFormat.html
- name: Constants
  sub_nav:
    - name: SDLAmbientLightStatusDay
      url: Constants.html#/c:@SDLAmbientLightStatusDay
    - name: SDLAmbientLightStatusInvalid
      url: Constants.html#/c:@SDLAmbientLightStatusInvalid
    - name: SDLAmbientLightStatusNight
      url: Constants.html#/c:@SDLAmbientLightStatusNight
    - name: SDLAmbientLightStatusTwilight1
      url: Constants.html#/c:@SDLAmbientLightStatusTwilight1
    - name: SDLAmbientLightStatusTwilight2
      url: Constants.html#/c:@SDLAmbientLightStatusTwilight2
    - name: SDLAmbientLightStatusTwilight3
      url: Constants.html#/c:@SDLAmbientLightStatusTwilight3
    - name: SDLAmbientLightStatusTwilight4
      url: Constants.html#/c:@SDLAmbientLightStatusTwilight4
    - name: SDLAmbientLightStatusUnknown
      url: Constants.html#/c:@SDLAmbientLightStatusUnknown
    - name: SDLAppHMITypeBackgroundProcess
      url: Constants.html#/c:@SDLAppHMITypeBackgroundProcess
    - name: SDLAppHMITypeCommunication
      url: Constants.html#/c:@SDLAppHMITypeCommunication
    - name: SDLAppHMITypeDefault
      url: Constants.html#/c:@SDLAppHMITypeDefault
    - name: SDLAppHMITypeInformation
      url: Constants.html#/c:@SDLAppHMITypeInformation
    - name: SDLAppHMITypeMedia
      url: Constants.html#/c:@SDLAppHMITypeMedia
    - name: SDLAppHMITypeMessaging
      url: Constants.html#/c:@SDLAppHMITypeMessaging
    - name: SDLAppHMITypeNavigation
      url: Constants.html#/c:@SDLAppHMITypeNavigation
    - name: SDLAppHMITypeProjection
      url: Constants.html#/c:@SDLAppHMITypeProjection
    - name: SDLAppHMITypeRemoteControl
      url: Constants.html#/c:@SDLAppHMITypeRemoteControl
    - name: SDLAppHMITypeSocial
      url: Constants.html#/c:@SDLAppHMITypeSocial
    - name: SDLAppHMITypeSystem
      url: Constants.html#/c:@SDLAppHMITypeSystem
    - name: SDLAppHMITypeTesting
      url: Constants.html#/c:@SDLAppHMITypeTesting
    - name: SDLAppInterfaceUnregisteredReasonAppUnauthorized
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonAppUnauthorized
    - name: SDLAppInterfaceUnregisteredReasonBluetoothOff
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonBluetoothOff
    - name: SDLAppInterfaceUnregisteredReasonDriverDistractionViolation
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonDriverDistractionViolation
    - name: SDLAppInterfaceUnregisteredReasonFactoryDefaults
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonFactoryDefaults
    - name: SDLAppInterfaceUnregisteredReasonIgnitionOff
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonIgnitionOff
    - name: SDLAppInterfaceUnregisteredReasonLanguageChange
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonLanguageChange
    - name: SDLAppInterfaceUnregisteredReasonMasterReset
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonMasterReset
    - name: SDLAppInterfaceUnregisteredReasonRequestWhileInNoneHMILevel
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonRequestWhileInNoneHMILevel
    - name: SDLAppInterfaceUnregisteredReasonTooManyRequests
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonTooManyRequests
    - name: SDLAppInterfaceUnregisteredReasonUSBDisconnected
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonUSBDisconnected
    - name: SDLAudioStreamDidStartNotification
      url: Constants.html#/c:@SDLAudioStreamDidStartNotification
    - name: SDLAudioStreamDidStopNotification
      url: Constants.html#/c:@SDLAudioStreamDidStopNotification
    - name: SDLAudioStreamingStateAttenuated
      url: Constants.html#/c:@SDLAudioStreamingStateAttenuated
    - name: SDLAudioStreamingStateAudible
      url: Constants.html#/c:@SDLAudioStreamingStateAudible
    - name: SDLAudioStreamingStateNotAudible
      url: Constants.html#/c:@SDLAudioStreamingStateNotAudible
    - name: SDLAudioTypePCM
      url: Constants.html#/c:@SDLAudioTypePCM
    - name: SDLBitsPerSample16Bit
      url: Constants.html#/c:@SDLBitsPerSample16Bit
    - name: SDLBitsPerSample8Bit
      url: Constants.html#/c:@SDLBitsPerSample8Bit
    - name: SDLButtonEventModeButtonDown
      url: Constants.html#/c:@SDLButtonEventModeButtonDown
    - name: SDLButtonEventModeButtonUp
      url: Constants.html#/c:@SDLButtonEventModeButtonUp
    - name: SDLButtonNameAC
      url: Constants.html#/c:@SDLButtonNameAC
    - name: SDLButtonNameACMax
      url: Constants.html#/c:@SDLButtonNameACMax
    - name: SDLButtonNameCustomButton
      url: Constants.html#/c:@SDLButtonNameCustomButton
    - name: SDLButtonNameDefrost
      url: Constants.html#/c:@SDLButtonNameDefrost
    - name: SDLButtonNameDefrostMax
      url: Constants.html#/c:@SDLButtonNameDefrostMax
    - name: SDLButtonNameDefrostRear
      url: Constants.html#/c:@SDLButtonNameDefrostRear
    - name: SDLButtonNameEject
      url: Constants.html#/c:@SDLButtonNameEject
    - name: SDLButtonNameFanDown
      url: Constants.html#/c:@SDLButtonNameFanDown
    - name: SDLButtonNameFanUp
      url: Constants.html#/c:@SDLButtonNameFanUp
    - name: SDLButtonNameLowerVent
      url: Constants.html#/c:@SDLButtonNameLowerVent
    - name: SDLButtonNameOk
      url: Constants.html#/c:@SDLButtonNameOk
    - name: SDLButtonNamePreset0
      url: Constants.html#/c:@SDLButtonNamePreset0
    - name: SDLButtonNamePreset1
      url: Constants.html#/c:@SDLButtonNamePreset1
    - name: SDLButtonNamePreset2
      url: Constants.html#/c:@SDLButtonNamePreset2
    - name: SDLButtonNamePreset3
      url: Constants.html#/c:@SDLButtonNamePreset3
    - name: SDLButtonNamePreset4
      url: Constants.html#/c:@SDLButtonNamePreset4
    - name: SDLButtonNamePreset5
      url: Constants.html#/c:@SDLButtonNamePreset5
    - name: SDLButtonNamePreset6
      url: Constants.html#/c:@SDLButtonNamePreset6
    - name: SDLButtonNamePreset7
      url: Constants.html#/c:@SDLButtonNamePreset7
    - name: SDLButtonNamePreset8
      url: Constants.html#/c:@SDLButtonNamePreset8
    - name: SDLButtonNamePreset9
      url: Constants.html#/c:@SDLButtonNamePreset9
    - name: SDLButtonNameRecirculate
      url: Constants.html#/c:@SDLButtonNameRecirculate
    - name: SDLButtonNameRepeat
      url: Constants.html#/c:@SDLButtonNameRepeat
    - name: SDLButtonNameSearch
      url: Constants.html#/c:@SDLButtonNameSearch
    - name: SDLButtonNameSeekLeft
      url: Constants.html#/c:@SDLButtonNameSeekLeft
    - name: SDLButtonNameSeekRight
      url: Constants.html#/c:@SDLButtonNameSeekRight
    - name: SDLButtonNameShuffle
      url: Constants.html#/c:@SDLButtonNameShuffle
    - name: SDLButtonNameSource
      url: Constants.html#/c:@SDLButtonNameSource
    - name: SDLButtonNameTempDown
      url: Constants.html#/c:@SDLButtonNameTempDown
    - name: SDLButtonNameTempUp
      url: Constants.html#/c:@SDLButtonNameTempUp
    - name: SDLButtonNameTuneDown
      url: Constants.html#/c:@SDLButtonNameTuneDown
    - name: SDLButtonNameTuneUp
      url: Constants.html#/c:@SDLButtonNameTuneUp
    - name: SDLButtonNameUpperVent
      url: Constants.html#/c:@SDLButtonNameUpperVent
    - name: SDLButtonNameVolumeDown
      url: Constants.html#/c:@SDLButtonNameVolumeDown
    - name: SDLButtonNameVolumeUp
      url: Constants.html#/c:@SDLButtonNameVolumeUp
    - name: SDLButtonPressModeLong
      url: Constants.html#/c:@SDLButtonPressModeLong
    - name: SDLButtonPressModeShort
      url: Constants.html#/c:@SDLButtonPressModeShort
    - name: SDLCarModeStatusCrash
      url: Constants.html#/c:@SDLCarModeStatusCrash
    - name: SDLCarModeStatusFactory
      url: Constants.html#/c:@SDLCarModeStatusFactory
    - name: SDLCarModeStatusNormal
      url: Constants.html#/c:@SDLCarModeStatusNormal
    - name: SDLCarModeStatusTransport
      url: Constants.html#/c:@SDLCarModeStatusTransport
    - name: SDLCharacterSetCID1
      url: Constants.html#/c:@SDLCharacterSetCID1
    - name: SDLCharacterSetCID2
      url: Constants.html#/c:@SDLCharacterSetCID2
    - name: SDLCharacterSetType2
      url: Constants.html#/c:@SDLCharacterSetType2
    - name: SDLCharacterSetType5
      url: Constants.html#/c:@SDLCharacterSetType5
    - name: SDLCompassDirectionEast
      url: Constants.html#/c:@SDLCompassDirectionEast
    - name: SDLCompassDirectionNorth
      url: Constants.html#/c:@SDLCompassDirectionNorth
    - name: SDLCompassDirectionNortheast
      url: Constants.html#/c:@SDLCompassDirectionNortheast
    - name: SDLCompassDirectionNorthwest
      url: Constants.html#/c:@SDLCompassDirectionNorthwest
    - name: SDLCompassDirectionSouth
      url: Constants.html#/c:@SDLCompassDirectionSouth
    - name: SDLCompassDirectionSoutheast
      url: Constants.html#/c:@SDLCompassDirectionSoutheast
    - name: SDLCompassDirectionSouthwest
      url: Constants.html#/c:@SDLCompassDirectionSouthwest
    - name: SDLCompassDirectionWest
      url: Constants.html#/c:@SDLCompassDirectionWest
    - name: SDLComponentVolumeStatusAlert
      url: Constants.html#/c:@SDLComponentVolumeStatusAlert
    - name: SDLComponentVolumeStatusFault
      url: Constants.html#/c:@SDLComponentVolumeStatusFault
    - name: SDLComponentVolumeStatusLow
      url: Constants.html#/c:@SDLComponentVolumeStatusLow
    - name: SDLComponentVolumeStatusNormal
      url: Constants.html#/c:@SDLComponentVolumeStatusNormal
    - name: SDLComponentVolumeStatusNotSupported
      url: Constants.html#/c:@SDLComponentVolumeStatusNotSupported
    - name: SDLComponentVolumeStatusUnknown
      url: Constants.html#/c:@SDLComponentVolumeStatusUnknown
    - name: SDLDefaultScreenSize
      url: Constants.html#/c:@SDLDefaultScreenSize
    - name: SDLDefrostZoneAll
      url: Constants.html#/c:@SDLDefrostZoneAll
    - name: SDLDefrostZoneFront
      url: Constants.html#/c:@SDLDefrostZoneFront
    - name: SDLDefrostZoneNone
      url: Constants.html#/c:@SDLDefrostZoneNone
    - name: SDLDefrostZoneRear
      url: Constants.html#/c:@SDLDefrostZoneRear
    - name: SDLDeliveryModeDestination
      url: Constants.html#/c:@SDLDeliveryModeDestination
    - name: SDLDeliveryModePrompt
      url: Constants.html#/c:@SDLDeliveryModePrompt
    - name: SDLDeliveryModeQueue
      url: Constants.html#/c:@SDLDeliveryModeQueue
    - name: SDLDeviceLevelStatusFourBars
      url: Constants.html#/c:@SDLDeviceLevelStatusFourBars
    - name: SDLDeviceLevelStatusNotProvided
      url: Constants.html#/c:@SDLDeviceLevelStatusNotProvided
    - name: SDLDeviceLevelStatusOneBar
      url: Constants.html#/c:@SDLDeviceLevelStatusOneBar
    - name: SDLDeviceLevelStatusThreeBars
      url: Constants.html#/c:@SDLDeviceLevelStatusThreeBars
    - name: SDLDeviceLevelStatusTwoBars
      url: Constants.html#/c:@SDLDeviceLevelStatusTwoBars
    - name: SDLDeviceLevelStatusZeroBars
      url: Constants.html#/c:@SDLDeviceLevelStatusZeroBars
    - name: SDLDidBecomeReady
      url: Constants.html#/c:@SDLDidBecomeReady
    - name: SDLDidChangeDriverDistractionStateNotification
      url: Constants.html#/c:@SDLDidChangeDriverDistractionStateNotification
    - name: SDLDidChangeHMIStatusNotification
      url: Constants.html#/c:@SDLDidChangeHMIStatusNotification
    - name: SDLDidChangeLanguageNotification
      url: Constants.html#/c:@SDLDidChangeLanguageNotification
    - name: SDLDidChangeLockScreenStatusNotification
      url: Constants.html#/c:@SDLDidChangeLockScreenStatusNotification
    - name: SDLDidChangePermissionsNotification
      url: Constants.html#/c:@SDLDidChangePermissionsNotification
    - name: SDLDidChangeTurnByTurnStateNotification
      url: Constants.html#/c:@SDLDidChangeTurnByTurnStateNotification
    - name: SDLDidReceiveAddCommandResponse
      url: Constants.html#/c:@SDLDidReceiveAddCommandResponse
    - name: SDLDidReceiveAddSubMenuResponse
      url: Constants.html#/c:@SDLDidReceiveAddSubMenuResponse
    - name: SDLDidReceiveAlertManeuverResponse
      url: Constants.html#/c:@SDLDidReceiveAlertManeuverResponse
    - name: SDLDidReceiveAlertResponse
      url: Constants.html#/c:@SDLDidReceiveAlertResponse
    - name: SDLDidReceiveAppUnregisteredNotification
      url: Constants.html#/c:@SDLDidReceiveAppUnregisteredNotification
    - name: SDLDidReceiveAudioPassThruNotification
      url: Constants.html#/c:@SDLDidReceiveAudioPassThruNotification
    - name: SDLDidReceiveButtonEventNotification
      url: Constants.html#/c:@SDLDidReceiveButtonEventNotification
    - name: SDLDidReceiveButtonPressNotification
      url: Constants.html#/c:@SDLDidReceiveButtonPressNotification
    - name: SDLDidReceiveButtonPressResponse
      url: Constants.html#/c:@SDLDidReceiveButtonPressResponse
    - name: SDLDidReceiveChangeRegistrationResponse
      url: Constants.html#/c:@SDLDidReceiveChangeRegistrationResponse
    - name: SDLDidReceiveCommandNotification
      url: Constants.html#/c:@SDLDidReceiveCommandNotification
    - name: SDLDidReceiveCreateInteractionChoiceSetResponse
      url: Constants.html#/c:@SDLDidReceiveCreateInteractionChoiceSetResponse
    - name: SDLDidReceiveDeleteCommandResponse
      url: Constants.html#/c:@SDLDidReceiveDeleteCommandResponse
    - name: SDLDidReceiveDeleteFileResponse
      url: Constants.html#/c:@SDLDidReceiveDeleteFileResponse
    - name: SDLDidReceiveDeleteInteractionChoiceSetResponse
      url: Constants.html#/c:@SDLDidReceiveDeleteInteractionChoiceSetResponse
    - name: SDLDidReceiveDeleteSubmenuResponse
      url: Constants.html#/c:@SDLDidReceiveDeleteSubmenuResponse
    - name: SDLDidReceiveDiagnosticMessageResponse
      url: Constants.html#/c:@SDLDidReceiveDiagnosticMessageResponse
    - name: SDLDidReceiveDialNumberResponse
      url: Constants.html#/c:@SDLDidReceiveDialNumberResponse
    - name: SDLDidReceiveEncodedDataNotification
      url: Constants.html#/c:@SDLDidReceiveEncodedDataNotification
    - name: SDLDidReceiveEncodedSyncPDataResponse
      url: Constants.html#/c:@SDLDidReceiveEncodedSyncPDataResponse
    - name: SDLDidReceiveEndAudioPassThruResponse
      url: Constants.html#/c:@SDLDidReceiveEndAudioPassThruResponse
    - name: SDLDidReceiveError
      url: Constants.html#/c:@SDLDidReceiveError
    - name: SDLDidReceiveGenericResponse
      url: Constants.html#/c:@SDLDidReceiveGenericResponse
    - name: SDLDidReceiveGetDTCsResponse
      url: Constants.html#/c:@SDLDidReceiveGetDTCsResponse
    - name: SDLDidReceiveGetInteriorVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveGetInteriorVehicleDataResponse
    - name: SDLDidReceiveGetSystemCapabilitiesResponse
      url: Constants.html#/c:@SDLDidReceiveGetSystemCapabilitiesResponse
    - name: SDLDidReceiveGetVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveGetVehicleDataResponse
    - name: SDLDidReceiveGetWaypointsResponse
      url: Constants.html#/c:@SDLDidReceiveGetWaypointsResponse
    - name: SDLDidReceiveInteriorVehicleDataNotification
      url: Constants.html#/c:@SDLDidReceiveInteriorVehicleDataNotification
    - name: SDLDidReceiveKeyboardInputNotification
      url: Constants.html#/c:@SDLDidReceiveKeyboardInputNotification
    - name: SDLDidReceiveListFilesResponse
      url: Constants.html#/c:@SDLDidReceiveListFilesResponse
    - name: SDLDidReceiveLockScreenIcon
      url: Constants.html#/c:@SDLDidReceiveLockScreenIcon
    - name: SDLDidReceiveNewHashNotification
      url: Constants.html#/c:@SDLDidReceiveNewHashNotification
    - name: SDLDidReceivePerformAudioPassThruResponse
      url: Constants.html#/c:@SDLDidReceivePerformAudioPassThruResponse
    - name: SDLDidReceivePerformInteractionResponse
      url: Constants.html#/c:@SDLDidReceivePerformInteractionResponse
    - name: SDLDidReceivePutFileResponse
      url: Constants.html#/c:@SDLDidReceivePutFileResponse
    - name: SDLDidReceiveReadDIDResponse
      url: Constants.html#/c:@SDLDidReceiveReadDIDResponse
    - name: SDLDidReceiveRegisterAppInterfaceResponse
      url: Constants.html#/c:@SDLDidReceiveRegisterAppInterfaceResponse
    - name: SDLDidReceiveResetGlobalPropertiesResponse
      url: Constants.html#/c:@SDLDidReceiveResetGlobalPropertiesResponse
    - name: SDLDidReceiveScrollableMessageResponse
      url: Constants.html#/c:@SDLDidReceiveScrollableMessageResponse
    - name: SDLDidReceiveSendHapticDataResponse
      url: Constants.html#/c:@SDLDidReceiveSendHapticDataResponse
    - name: SDLDidReceiveSendLocationResponse
      url: Constants.html#/c:@SDLDidReceiveSendLocationResponse
    - name: SDLDidReceiveSetAppIconResponse
      url: Constants.html#/c:@SDLDidReceiveSetAppIconResponse
    - name: SDLDidReceiveSetDisplayLayoutResponse
      url: Constants.html#/c:@SDLDidReceiveSetDisplayLayoutResponse
    - name: SDLDidReceiveSetGlobalPropertiesResponse
      url: Constants.html#/c:@SDLDidReceiveSetGlobalPropertiesResponse
    - name: SDLDidReceiveSetInteriorVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveSetInteriorVehicleDataResponse
    - name: SDLDidReceiveSetMediaClockTimerResponse
      url: Constants.html#/c:@SDLDidReceiveSetMediaClockTimerResponse
    - name: SDLDidReceiveShowConstantTBTResponse
      url: Constants.html#/c:@SDLDidReceiveShowConstantTBTResponse
    - name: SDLDidReceiveShowResponse
      url: Constants.html#/c:@SDLDidReceiveShowResponse
    - name: SDLDidReceiveSliderResponse
      url: Constants.html#/c:@SDLDidReceiveSliderResponse
    - name: SDLDidReceiveSpeakResponse
      url: Constants.html#/c:@SDLDidReceiveSpeakResponse
    - name: SDLDidReceiveSubscribeButtonResponse
      url: Constants.html#/c:@SDLDidReceiveSubscribeButtonResponse
    - name: SDLDidReceiveSubscribeVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveSubscribeVehicleDataResponse
    - name: SDLDidReceiveSubscribeWaypointsResponse
      url: Constants.html#/c:@SDLDidReceiveSubscribeWaypointsResponse
    - name: SDLDidReceiveSyncPDataResponse
      url: Constants.html#/c:@SDLDidReceiveSyncPDataResponse
    - name: SDLDidReceiveSystemRequestNotification
      url: Constants.html#/c:@SDLDidReceiveSystemRequestNotification
    - name: SDLDidReceiveTouchEventNotification
      url: Constants.html#/c:@SDLDidReceiveTouchEventNotification
    - name: SDLDidReceiveUnregisterAppInterfaceResponse
      url: Constants.html#/c:@SDLDidReceiveUnregisterAppInterfaceResponse
    - name: SDLDidReceiveUnsubscribeButtonResponse
      url: Constants.html#/c:@SDLDidReceiveUnsubscribeButtonResponse
    - name: SDLDidReceiveUnsubscribeVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveUnsubscribeVehicleDataResponse
    - name: SDLDidReceiveUnsubscribeWaypointsResponse
      url: Constants.html#/c:@SDLDidReceiveUnsubscribeWaypointsResponse
    - name: SDLDidReceiveUpdateTurnListResponse
      url: Constants.html#/c:@SDLDidReceiveUpdateTurnListResponse
    - name: SDLDidReceiveVehicleDataNotification
      url: Constants.html#/c:@SDLDidReceiveVehicleDataNotification
    - name: SDLDidReceiveVehicleIconNotification
      url: Constants.html#/c:@SDLDidReceiveVehicleIconNotification
    - name: SDLDidReceiveWaypointNotification
      url: Constants.html#/c:@SDLDidReceiveWaypointNotification
    - name: SDLDidUpdateProjectionView
      url: Constants.html#/c:@SDLDidUpdateProjectionView
    - name: SDLDimension2D
      url: Constants.html#/c:@SDLDimension2D
    - name: SDLDimension3D
      url: Constants.html#/c:@SDLDimension3D
    - name: SDLDimensionNoFix
      url: Constants.html#/c:@SDLDimensionNoFix
    - name: SDLDisplayTypeCID
      url: Constants.html#/c:@SDLDisplayTypeCID
    - name: SDLDisplayTypeGen26DMA
      url: Constants.html#/c:@SDLDisplayTypeGen26DMA
    - name: SDLDisplayTypeGen28DMA
      url: Constants.html#/c:@SDLDisplayTypeGen28DMA
    - name: SDLDisplayTypeGen38Inch
      url: Constants.html#/c:@SDLDisplayTypeGen38Inch
    - name: SDLDisplayTypeGeneric
      url: Constants.html#/c:@SDLDisplayTypeGeneric
    - name: SDLDisplayTypeMFD3
      url: Constants.html#/c:@SDLDisplayTypeMFD3
    - name: SDLDisplayTypeMFD4
      url: Constants.html#/c:@SDLDisplayTypeMFD4
    - name: SDLDisplayTypeMFD5
      url: Constants.html#/c:@SDLDisplayTypeMFD5
    - name: SDLDisplayTypeNGN
      url: Constants.html#/c:@SDLDisplayTypeNGN
    - name: SDLDisplayTypeType2
      url: Constants.html#/c:@SDLDisplayTypeType2
    - name: SDLDisplayTypeType5
      url: Constants.html#/c:@SDLDisplayTypeType5
    - name: SDLDriverDistractionStateOff
      url: Constants.html#/c:@SDLDriverDistractionStateOff
    - name: SDLDriverDistractionStateOn
      url: Constants.html#/c:@SDLDriverDistractionStateOn
    - name: SDLECallConfirmationStatusCancelled
      url: Constants.html#/c:@SDLECallConfirmationStatusCancelled
    - name: SDLECallConfirmationStatusCompleteDTMFTimeout
      url: Constants.html#/c:@SDLECallConfirmationStatusCompleteDTMFTimeout
    - name: SDLECallConfirmationStatusCompleted
      url: Constants.html#/c:@SDLECallConfirmationStatusCompleted
    - name: SDLECallConfirmationStatusConfiguredOff
      url: Constants.html#/c:@SDLECallConfirmationStatusConfiguredOff
    - name: SDLECallConfirmationStatusInProgress
      url: Constants.html#/c:@SDLECallConfirmationStatusInProgress
    - name: SDLECallConfirmationStatusNormal
      url: Constants.html#/c:@SDLECallConfirmationStatusNormal
    - name: SDLECallConfirmationStatusUnsuccessful
      url: Constants.html#/c:@SDLECallConfirmationStatusUnsuccessful
    - name: SDLEmergencyEventTypeFault
      url: Constants.html#/c:@SDLEmergencyEventTypeFault
    - name: SDLEmergencyEventTypeFrontal
      url: Constants.html#/c:@SDLEmergencyEventTypeFrontal
    - name: SDLEmergencyEventTypeNoEvent
      url: Constants.html#/c:@SDLEmergencyEventTypeNoEvent
    - name: SDLEmergencyEventTypeNotSupported
      url: Constants.html#/c:@SDLEmergencyEventTypeNotSupported
    - name: SDLEmergencyEventTypeRear
      url: Constants.html#/c:@SDLEmergencyEventTypeRear
    - name: SDLEmergencyEventTypeRollover
      url: Constants.html#/c:@SDLEmergencyEventTypeRollover
    - name: SDLEmergencyEventTypeSide
      url: Constants.html#/c:@SDLEmergencyEventTypeSide
    - name: SDLFileTypeAAC
      url: Constants.html#/c:@SDLFileTypeAAC
    - name: SDLFileTypeBMP
      url: Constants.html#/c:@SDLFileTypeBMP
    - name: SDLFileTypeBinary
      url: Constants.html#/c:@SDLFileTypeBinary
    - name: SDLFileTypeJPEG
      url: Constants.html#/c:@SDLFileTypeJPEG
    - name: SDLFileTypeJSON
      url: Constants.html#/c:@SDLFileTypeJSON
    - name: SDLFileTypeMP3
      url: Constants.html#/c:@SDLFileTypeMP3
    - name: SDLFileTypePNG
      url: Constants.html#/c:@SDLFileTypePNG
    - name: SDLFileTypeWAV
      url: Constants.html#/c:@SDLFileTypeWAV
    - name: SDLFuelCutoffStatusFault
      url: Constants.html#/c:@SDLFuelCutoffStatusFault
    - name: SDLFuelCutoffStatusNormalOperation
      url: Constants.html#/c:@SDLFuelCutoffStatusNormalOperation
    - name: SDLFuelCutoffStatusTerminateFuel
      url: Constants.html#/c:@SDLFuelCutoffStatusTerminateFuel
    - name: SDLGlobalPropertyHelpPrompt
      url: Constants.html#/c:@SDLGlobalPropertyHelpPrompt
    - name: SDLGlobalPropertyKeyboard
      url: Constants.html#/c:@SDLGlobalPropertyKeyboard
    - name: SDLGlobalPropertyMenuIcon
      url: Constants.html#/c:@SDLGlobalPropertyMenuIcon
    - name: SDLGlobalPropertyMenuName
      url: Constants.html#/c:@SDLGlobalPropertyMenuName
    - name: SDLGlobalPropertyTimeoutPrompt
      url: Constants.html#/c:@SDLGlobalPropertyTimeoutPrompt
    - name: SDLGlobalPropertyVoiceRecognitionHelpItems
      url: Constants.html#/c:@SDLGlobalPropertyVoiceRecognitionHelpItems
    - name: SDLGlobalPropertyVoiceRecognitionHelpTitle
      url: Constants.html#/c:@SDLGlobalPropertyVoiceRecognitionHelpTitle
    - name: SDLHMILevelBackground
      url: Constants.html#/c:@SDLHMILevelBackground
    - name: SDLHMILevelFull
      url: Constants.html#/c:@SDLHMILevelFull
    - name: SDLHMILevelLimited
      url: Constants.html#/c:@SDLHMILevelLimited
    - name: SDLHMILevelNone
      url: Constants.html#/c:@SDLHMILevelNone
    - name: SDLHMIZoneCapabilitiesBack
      url: Constants.html#/c:@SDLHMIZoneCapabilitiesBack
    - name: SDLHMIZoneCapabilitiesFront
      url: Constants.html#/c:@SDLHMIZoneCapabilitiesFront
    - name: SDLIgnitionStableStatusMissingFromTransmitter
      url: Constants.html#/c:@SDLIgnitionStableStatusMissingFromTransmitter
    - name: SDLIgnitionStableStatusNotStable
      url: Constants.html#/c:@SDLIgnitionStableStatusNotStable
    - name: SDLIgnitionStableStatusStable
      url: Constants.html#/c:@SDLIgnitionStableStatusStable
    - name: SDLIgnitionStatusAccessory
      url: Constants.html#/c:@SDLIgnitionStatusAccessory
    - name: SDLIgnitionStatusInvalid
      url: Constants.html#/c:@SDLIgnitionStatusInvalid
    - name: SDLIgnitionStatusOff
      url: Constants.html#/c:@SDLIgnitionStatusOff
    - name: SDLIgnitionStatusRun
      url: Constants.html#/c:@SDLIgnitionStatusRun
    - name: SDLIgnitionStatusStart
      url: Constants.html#/c:@SDLIgnitionStatusStart
    - name: SDLIgnitionStatusUnknown
      url: Constants.html#/c:@SDLIgnitionStatusUnknown
    - name: SDLImageFieldNameAppIcon
      url: Constants.html#/c:@SDLImageFieldNameAppIcon
    - name: SDLImageFieldNameChoiceImage
      url: Constants.html#/c:@SDLImageFieldNameChoiceImage
    - name: SDLImageFieldNameChoiceSecondaryImage
      url: Constants.html#/c:@SDLImageFieldNameChoiceSecondaryImage
    - name: SDLImageFieldNameCommandIcon
      url: Constants.html#/c:@SDLImageFieldNameCommandIcon
    - name: SDLImageFieldNameGraphic
      url: Constants.html#/c:@SDLImageFieldNameGraphic
    - name: SDLImageFieldNameLocationImage
      url: Constants.html#/c:@SDLImageFieldNameLocationImage
    - name: SDLImageFieldNameMenuIcon
      url: Constants.html#/c:@SDLImageFieldNameMenuIcon
    - name: SDLImageFieldNameShowConstantTBTIcon
      url: Constants.html#/c:@SDLImageFieldNameShowConstantTBTIcon
    - name: SDLImageFieldNameShowConstantTBTNextTurnIcon
      url: Constants.html#/c:@SDLImageFieldNameShowConstantTBTNextTurnIcon
    - name: SDLImageFieldNameSoftButtonImage
      url: Constants.html#/c:@SDLImageFieldNameSoftButtonImage
    - name: SDLImageFieldNameTurnIcon
      url: Constants.html#/c:@SDLImageFieldNameTurnIcon
    - name: SDLImageFieldNameVoiceRecognitionHelpItem
      url: Constants.html#/c:@SDLImageFieldNameVoiceRecognitionHelpItem
    - name: SDLImageTypeDynamic
      url: Constants.html#/c:@SDLImageTypeDynamic
    - name: SDLImageTypeStatic
      url: Constants.html#/c:@SDLImageTypeStatic
    - name: SDLInteractionModeBoth
      url: Constants.html#/c:@SDLInteractionModeBoth
    - name: SDLInteractionModeManualOnly
      url: Constants.html#/c:@SDLInteractionModeManualOnly
    - name: SDLInteractionModeVoiceRecognitionOnly
      url: Constants.html#/c:@SDLInteractionModeVoiceRecognitionOnly
    - name: SDLKeyboardEventAborted
      url: Constants.html#/c:@SDLKeyboardEventAborted
    - name: SDLKeyboardEventCancelled
      url: Constants.html#/c:@SDLKeyboardEventCancelled
    - name: SDLKeyboardEventKeypress
      url: Constants.html#/c:@SDLKeyboardEventKeypress
    - name: SDLKeyboardEventSubmitted
      url: Constants.html#/c:@SDLKeyboardEventSubmitted
    - name: SDLKeyboardEventVoice
      url: Constants.html#/c:@SDLKeyboardEventVoice
    - name: SDLKeyboardLayoutAZERTY
      url: Constants.html#/c:@SDLKeyboardLayoutAZERTY
    - name: SDLKeyboardLayoutQWERTY
      url: Constants.html#/c:@SDLKeyboardLayoutQWERTY
    - name: SDLKeyboardLayoutQWERTZ
      url: Constants.html#/c:@SDLKeyboardLayoutQWERTZ
    - name: SDLKeypressModeQueueKeypresses
      url: Constants.html#/c:@SDLKeypressModeQueueKeypresses
    - name: SDLKeypressModeResendCurrentEntry
      url: Constants.html#/c:@SDLKeypressModeResendCurrentEntry
    - name: SDLKeypressModeSingleKeypress
      url: Constants.html#/c:@SDLKeypressModeSingleKeypress
    - name: SDLLanguageArSa
      url: Constants.html#/c:@SDLLanguageArSa
    - name: SDLLanguageCsCz
      url: Constants.html#/c:@SDLLanguageCsCz
    - name: SDLLanguageDaDk
      url: Constants.html#/c:@SDLLanguageDaDk
    - name: SDLLanguageDeDe
      url: Constants.html#/c:@SDLLanguageDeDe
    - name: SDLLanguageElGr
      url: Constants.html#/c:@SDLLanguageElGr
    - name: SDLLanguageEnAu
      url: Constants.html#/c:@SDLLanguageEnAu
    - name: SDLLanguageEnGb
      url: Constants.html#/c:@SDLLanguageEnGb
    - name: SDLLanguageEnIn
      url: Constants.html#/c:@SDLLanguageEnIn
    - name: SDLLanguageEnSa
      url: Constants.html#/c:@SDLLanguageEnSa
    - name: SDLLanguageEnUs
      url: Constants.html#/c:@SDLLanguageEnUs
    - name: SDLLanguageEsEs
      url: Constants.html#/c:@SDLLanguageEsEs
    - name: SDLLanguageEsMx
      url: Constants.html#/c:@SDLLanguageEsMx
    - name: SDLLanguageFiFi
      url: Constants.html#/c:@SDLLanguageFiFi
    - name: SDLLanguageFrCa
      url: Constants.html#/c:@SDLLanguageFrCa
    - name: SDLLanguageFrFr
      url: Constants.html#/c:@SDLLanguageFrFr
    - name: SDLLanguageHeIl
      url: Constants.html#/c:@SDLLanguageHeIl
    - name: SDLLanguageHiIn
      url: Constants.html#/c:@SDLLanguageHiIn
    - name: SDLLanguageHuHu
      url: Constants.html#/c:@SDLLanguageHuHu
    - name: SDLLanguageIdId
      url: Constants.html#/c:@SDLLanguageIdId
    - name: SDLLanguageItIt
      url: Constants.html#/c:@SDLLanguageItIt
    - name: SDLLanguageJaJp
      url: Constants.html#/c:@SDLLanguageJaJp
    - name: SDLLanguageKoKr
      url: Constants.html#/c:@SDLLanguageKoKr
    - name: SDLLanguageMsMy
      url: Constants.html#/c:@SDLLanguageMsMy
    - name: SDLLanguageNlBe
      url: Constants.html#/c:@SDLLanguageNlBe
    - name: SDLLanguageNlNl
      url: Constants.html#/c:@SDLLanguageNlNl
    - name: SDLLanguageNoNo
      url: Constants.html#/c:@SDLLanguageNoNo
    - name: SDLLanguagePlPl
      url: Constants.html#/c:@SDLLanguagePlPl
    - name: SDLLanguagePtBr
      url: Constants.html#/c:@SDLLanguagePtBr
    - name: SDLLanguagePtPt
      url: Constants.html#/c:@SDLLanguagePtPt
    - name: SDLLanguageRoRo
      url: Constants.html#/c:@SDLLanguageRoRo
    - name: SDLLanguageRuRu
      url: Constants.html#/c:@SDLLanguageRuRu
    - name: SDLLanguageSkSk
      url: Constants.html#/c:@SDLLanguageSkSk
    - name: SDLLanguageSvSe
      url: Constants.html#/c:@SDLLanguageSvSe
    - name: SDLLanguageThTh
      url: Constants.html#/c:@SDLLanguageThTh
    - name: SDLLanguageTrTr
      url: Constants.html#/c:@SDLLanguageTrTr
    - name: SDLLanguageUkUa
      url: Constants.html#/c:@SDLLanguageUkUa
    - name: SDLLanguageViVn
      url: Constants.html#/c:@SDLLanguageViVn
    - name: SDLLanguageZhCn
      url: Constants.html#/c:@SDLLanguageZhCn
    - name: SDLLanguageZhTw
      url: Constants.html#/c:@SDLLanguageZhTw
    - name: SDLLayoutModeIconOnly
      url: Constants.html#/c:@SDLLayoutModeIconOnly
    - name: SDLLayoutModeIconWithSearch
      url: Constants.html#/c:@SDLLayoutModeIconWithSearch
    - name: SDLLayoutModeKeyboard
      url: Constants.html#/c:@SDLLayoutModeKeyboard
    - name: SDLLayoutModeListOnly
      url: Constants.html#/c:@SDLLayoutModeListOnly
    - name: SDLLayoutModeListWithSearch
      url: Constants.html#/c:@SDLLayoutModeListWithSearch
    - name: SDLLockScreenStatusOff
      url: Constants.html#/c:@SDLLockScreenStatusOff
    - name: SDLLockScreenStatusOptional
      url: Constants.html#/c:@SDLLockScreenStatusOptional
    - name: SDLLockScreenStatusRequired
      url: Constants.html#/c:@SDLLockScreenStatusRequired
    - name: SDLMaintenanceModeStatusActive
      url: Constants.html#/c:@SDLMaintenanceModeStatusActive
    - name: SDLMaintenanceModeStatusFeatureNotPresent
      url: Constants.html#/c:@SDLMaintenanceModeStatusFeatureNotPresent
    - name: SDLMaintenanceModeStatusNear
      url: Constants.html#/c:@SDLMaintenanceModeStatusNear
    - name: SDLMaintenanceModeStatusNormal
      url: Constants.html#/c:@SDLMaintenanceModeStatusNormal
    - name: SDLMediaClockFormatClock1
      url: Constants.html#/c:@SDLMediaClockFormatClock1
    - name: SDLMediaClockFormatClock2
      url: Constants.html#/c:@SDLMediaClockFormatClock2
    - name: SDLMediaClockFormatClock3
      url: Constants.html#/c:@SDLMediaClockFormatClock3
    - name: SDLMediaClockFormatClockText1
      url: Constants.html#/c:@SDLMediaClockFormatClockText1
    - name: SDLMediaClockFormatClockText2
      url: Constants.html#/c:@SDLMediaClockFormatClockText2
    - name: SDLMediaClockFormatClockText3
      url: Constants.html#/c:@SDLMediaClockFormatClockText3
    - name: SDLMediaClockFormatClockText4
      url: Constants.html#/c:@SDLMediaClockFormatClockText4
    - name: SDLMetadataTypeCurrentTemperature
      url: Constants.html#/c:@SDLMetadataTypeCurrentTemperature
    - name: SDLMetadataTypeHumidity
      url: Constants.html#/c:@SDLMetadataTypeHumidity
    - name: SDLMetadataTypeMaximumTemperature
      url: Constants.html#/c:@SDLMetadataTypeMaximumTemperature
    - name: SDLMetadataTypeMediaAlbum
      url: Constants.html#/c:@SDLMetadataTypeMediaAlbum
    - name: SDLMetadataTypeMediaArtist
      url: Constants.html#/c:@SDLMetadataTypeMediaArtist
    - name: SDLMetadataTypeMediaGenre
      url: Constants.html#/c:@SDLMetadataTypeMediaGenre
    - name: SDLMetadataTypeMediaStation
      url: Constants.html#/c:@SDLMetadataTypeMediaStation
    - name: SDLMetadataTypeMediaTitle
      url: Constants.html#/c:@SDLMetadataTypeMediaTitle
    - name: SDLMetadataTypeMediaYear
      url: Constants.html#/c:@SDLMetadataTypeMediaYear
    - name: SDLMetadataTypeMinimumTemperature
      url: Constants.html#/c:@SDLMetadataTypeMinimumTemperature
    - name: SDLMetadataTypeRating
      url: Constants.html#/c:@SDLMetadataTypeRating
    - name: SDLMetadataTypeWeatherTerm
      url: Constants.html#/c:@SDLMetadataTypeWeatherTerm
    - name: SDLModuleTypeClimate
      url: Constants.html#/c:@SDLModuleTypeClimate
    - name: SDLModuleTypeRadio
      url: Constants.html#/c:@SDLModuleTypeRadio
    - name: SDLNotificationUserInfoObject
      url: Constants.html#/c:@SDLNotificationUserInfoObject
    - name: SDLPRNDLDrive
      url: Constants.html#/c:@SDLPRNDLDrive
    - name: SDLPRNDLEighth
      url: Constants.html#/c:@SDLPRNDLEighth
    - name: SDLPRNDLFault
      url: Constants.html#/c:@SDLPRNDLFault
    - name: SDLPRNDLFifth
      url: Constants.html#/c:@SDLPRNDLFifth
    - name: SDLPRNDLFirst
      url: Constants.html#/c:@SDLPRNDLFirst
    - name: SDLPRNDLFourth
      url: Constants.html#/c:@SDLPRNDLFourth
    - name: SDLPRNDLLowGear
      url: Constants.html#/c:@SDLPRNDLLowGear
    - name: SDLPRNDLNeutral
      url: Constants.html#/c:@SDLPRNDLNeutral
    - name: SDLPRNDLPark
      url: Constants.html#/c:@SDLPRNDLPark
    - name: SDLPRNDLReverse
      url: Constants.html#/c:@SDLPRNDLReverse
    - name: SDLPRNDLSecond
      url: Constants.html#/c:@SDLPRNDLSecond
    - name: SDLPRNDLSeventh
      url: Constants.html#/c:@SDLPRNDLSeventh
    - name: SDLPRNDLSixth
      url: Constants.html#/c:@SDLPRNDLSixth
    - name: SDLPRNDLSport
      url: Constants.html#/c:@SDLPRNDLSport
    - name: SDLPRNDLThird
      url: Constants.html#/c:@SDLPRNDLThird
    - name: SDLPRNDLUnknown
      url: Constants.html#/c:@SDLPRNDLUnknown
    - name: SDLPermissionStatusAllowed
      url: Constants.html#/c:@SDLPermissionStatusAllowed
    - name: SDLPermissionStatusDisallowed
      url: Constants.html#/c:@SDLPermissionStatusDisallowed
    - name: SDLPermissionStatusUserConsentPending
      url: Constants.html#/c:@SDLPermissionStatusUserConsentPending
    - name: SDLPermissionStatusUserDisallowed
      url: Constants.html#/c:@SDLPermissionStatusUserDisallowed
    - name: SDLPowerModeQualificationStatusEvaluationInProgress
      url: Constants.html#/c:@SDLPowerModeQualificationStatusEvaluationInProgress
    - name: SDLPowerModeQualificationStatusNotDefined
      url: Constants.html#/c:@SDLPowerModeQualificationStatusNotDefined
    - name: SDLPowerModeQualificationStatusOk
      url: Constants.html#/c:@SDLPowerModeQualificationStatusOk
    - name: SDLPowerModeQualificationStatusUndefined
      url: Constants.html#/c:@SDLPowerModeQualificationStatusUndefined
    - name: SDLPowerModeStatusAccessory
      url: Constants.html#/c:@SDLPowerModeStatusAccessory
    - name: SDLPowerModeStatusCrank
      url: Constants.html#/c:@SDLPowerModeStatusCrank
    - name: SDLPowerModeStatusIgnitionOn
      url: Constants.html#/c:@SDLPowerModeStatusIgnitionOn
    - name: SDLPowerModeStatusKeyApproved
      url: Constants.html#/c:@SDLPowerModeStatusKeyApproved
    - name: SDLPowerModeStatusKeyOut
      url: Constants.html#/c:@SDLPowerModeStatusKeyOut
    - name: SDLPowerModeStatusKeyRecentlyOut
      url: Constants.html#/c:@SDLPowerModeStatusKeyRecentlyOut
    - name: SDLPowerModeStatusPostAccessory
      url: Constants.html#/c:@SDLPowerModeStatusPostAccessory
    - name: SDLPowerModeStatusPostIgnition
      url: Constants.html#/c:@SDLPowerModeStatusPostIgnition
    - name: SDLPowerModeStatusRunning
      url: Constants.html#/c:@SDLPowerModeStatusRunning
    - name: SDLPredefinedLayoutDefault
      url: Constants.html#/c:@SDLPredefinedLayoutDefault
    - name: SDLPredefinedLayoutDoubleGraphicWithSoftButtons
      url: Constants.html#/c:@SDLPredefinedLayoutDoubleGraphicWithSoftButtons
    - name: SDLPredefinedLayoutGraphicWithText
      url: Constants.html#/c:@SDLPredefinedLayoutGraphicWithText
    - name: SDLPredefinedLayoutGraphicWithTextAndSoftButtons
      url: Constants.html#/c:@SDLPredefinedLayoutGraphicWithTextAndSoftButtons
    - name: SDLPredefinedLayoutGraphicWithTextButtons
      url: Constants.html#/c:@SDLPredefinedLayoutGraphicWithTextButtons
    - name: SDLPredefinedLayoutGraphicWithTiles
      url: Constants.html#/c:@SDLPredefinedLayoutGraphicWithTiles
    - name: SDLPredefinedLayoutLargeGraphicOnly
      url: Constants.html#/c:@SDLPredefinedLayoutLargeGraphicOnly
    - name: SDLPredefinedLayoutLargeGraphicWithSoftButtons
      url: Constants.html#/c:@SDLPredefinedLayoutLargeGraphicWithSoftButtons
    - name: SDLPredefinedLayoutMedia
      url: Constants.html#/c:@SDLPredefinedLayoutMedia
    - name: SDLPredefinedLayoutNavigationFullscreenMap
      url: Constants.html#/c:@SDLPredefinedLayoutNavigationFullscreenMap
    - name: SDLPredefinedLayoutNavigationKeyboard
      url: Constants.html#/c:@SDLPredefinedLayoutNavigationKeyboard
    - name: SDLPredefinedLayoutNavigationList
      url: Constants.html#/c:@SDLPredefinedLayoutNavigationList
    - name: SDLPredefinedLayoutNonMedia
      url: Constants.html#/c:@SDLPredefinedLayoutNonMedia
    - name: SDLPredefinedLayoutOnscreenPresets
      url: Constants.html#/c:@SDLPredefinedLayoutOnscreenPresets
    - name: SDLPredefinedLayoutTextAndSoftButtonsWithGraphic
      url: Constants.html#/c:@SDLPredefinedLayoutTextAndSoftButtonsWithGraphic
    - name: SDLPredefinedLayoutTextButtonsOnly
      url: Constants.html#/c:@SDLPredefinedLayoutTextButtonsOnly
    - name: SDLPredefinedLayoutTextButtonsWithGraphic
      url: Constants.html#/c:@SDLPredefinedLayoutTextButtonsWithGraphic
    - name: SDLPredefinedLayoutTextWithGraphic
      url: Constants.html#/c:@SDLPredefinedLayoutTextWithGraphic
    - name: SDLPredefinedLayoutTilesOnly
      url: Constants.html#/c:@SDLPredefinedLayoutTilesOnly
    - name: SDLPredefinedLayoutTilesWithGraphic
      url: Constants.html#/c:@SDLPredefinedLayoutTilesWithGraphic
    - name: SDLPrerecordedSpeechHelp
      url: Constants.html#/c:@SDLPrerecordedSpeechHelp
    - name: SDLPrerecordedSpeechInitial
      url: Constants.html#/c:@SDLPrerecordedSpeechInitial
    - name: SDLPrerecordedSpeechListen
      url: Constants.html#/c:@SDLPrerecordedSpeechListen
    - name: SDLPrerecordedSpeechNegative
      url: Constants.html#/c:@SDLPrerecordedSpeechNegative
    - name: SDLPrerecordedSpeechPositive
      url: Constants.html#/c:@SDLPrerecordedSpeechPositive
    - name: SDLPrimaryAudioSourceBluetoothStereo
      url: Constants.html#/c:@SDLPrimaryAudioSourceBluetoothStereo
    - name: SDLPrimaryAudioSourceIpod
      url: Constants.html#/c:@SDLPrimaryAudioSourceIpod
    - name: SDLPrimaryAudioSourceLineIn
      url: Constants.html#/c:@SDLPrimaryAudioSourceLineIn
    - name: SDLPrimaryAudioSourceMobileApp
      url: Constants.html#/c:@SDLPrimaryAudioSourceMobileApp
    - name: SDLPrimaryAudioSourceNoSourceSelected
      url: Constants.html#/c:@SDLPrimaryAudioSourceNoSourceSelected
    - name: SDLPrimaryAudioSourceUSB
      url: Constants.html#/c:@SDLPrimaryAudioSourceUSB
    - name: SDLPrimaryAudioSourceUSB2
      url: Constants.html#/c:@SDLPrimaryAudioSourceUSB2
    - name: SDLProtocolSecurityErrorDomain
      url: Constants.html#/c:@SDLProtocolSecurityErrorDomain
    - name: SDLRadioBandAM
      url: Constants.html#/c:@SDLRadioBandAM
    - name: SDLRadioBandFM
      url: Constants.html#/c:@SDLRadioBandFM
    - name: SDLRadioBandXM
      url: Constants.html#/c:@SDLRadioBandXM
    - name: SDLRadioStateAcquired
      url: Constants.html#/c:@SDLRadioStateAcquired
    - name: SDLRadioStateAcquiring
      url: Constants.html#/c:@SDLRadioStateAcquiring
    - name: SDLRadioStateMulticast
      url: Constants.html#/c:@SDLRadioStateMulticast
    - name: SDLRadioStateNotFound
      url: Constants.html#/c:@SDLRadioStateNotFound
    - name: SDLRequestTypeAuthenticationAck
      url: Constants.html#/c:@SDLRequestTypeAuthenticationAck
    - name: SDLRequestTypeAuthenticationChallenge
      url: Constants.html#/c:@SDLRequestTypeAuthenticationChallenge
    - name: SDLRequestTypeAuthenticationRequest
      url: Constants.html#/c:@SDLRequestTypeAuthenticationRequest
    - name: SDLRequestTypeClimate
      url: Constants.html#/c:@SDLRequestTypeClimate
    - name: SDLRequestTypeDriverProfile
      url: Constants.html#/c:@SDLRequestTypeDriverProfile
    - name: SDLRequestTypeEmergency
      url: Constants.html#/c:@SDLRequestTypeEmergency
    - name: SDLRequestTypeFOTA
      url: Constants.html#/c:@SDLRequestTypeFOTA
    - name: SDLRequestTypeFileResume
      url: Constants.html#/c:@SDLRequestTypeFileResume
    - name: SDLRequestTypeHTTP
      url: Constants.html#/c:@SDLRequestTypeHTTP
    - name: SDLRequestTypeLaunchApp
      url: Constants.html#/c:@SDLRequestTypeLaunchApp
    - name: SDLRequestTypeLockScreenIconURL
      url: Constants.html#/c:@SDLRequestTypeLockScreenIconURL
    - name: SDLRequestTypeMedia
      url: Constants.html#/c:@SDLRequestTypeMedia
    - name: SDLRequestTypeNavigation
      url: Constants.html#/c:@SDLRequestTypeNavigation
    - name: SDLRequestTypePhone
      url: Constants.html#/c:@SDLRequestTypePhone
    - name: SDLRequestTypeProprietary
      url: Constants.html#/c:@SDLRequestTypeProprietary
    - name: SDLRequestTypeQueryApps
      url: Constants.html#/c:@SDLRequestTypeQueryApps
    - name: SDLRequestTypeSettings
      url: Constants.html#/c:@SDLRequestTypeSettings
    - name: SDLRequestTypeTrafficMessageChannel
      url: Constants.html#/c:@SDLRequestTypeTrafficMessageChannel
    - name: SDLRequestTypeVehicleDiagnostics
      url: Constants.html#/c:@SDLRequestTypeVehicleDiagnostics
    - name: SDLRequestTypeVoiceSearch
      url: Constants.html#/c:@SDLRequestTypeVoiceSearch
    - name: SDLResultAborted
      url: Constants.html#/c:@SDLResultAborted
    - name: SDLResultApplicationNotRegistered
      url: Constants.html#/c:@SDLResultApplicationNotRegistered
    - name: SDLResultApplicationRegisteredAlready
      url: Constants.html#/c:@SDLResultApplicationRegisteredAlready
    - name: SDLResultCancelRoute
      url: Constants.html#/c:@SDLResultCancelRoute
    - name: SDLResultCharacterLimitExceeded
      url: Constants.html#/c:@SDLResultCharacterLimitExceeded
    - name: SDLResultDataNotAvailable
      url: Constants.html#/c:@SDLResultDataNotAvailable
    - name: SDLResultDisallowed
      url: Constants.html#/c:@SDLResultDisallowed
    - name: SDLResultDuplicateName
      url: Constants.html#/c:@SDLResultDuplicateName
    - name: SDLResultExpiredCertificate
      url: Constants.html#/c:@SDLResultExpiredCertificate
    - name: SDLResultFileNotFound
      url: Constants.html#/c:@SDLResultFileNotFound
    - name: SDLResultGenericError
      url: Constants.html#/c:@SDLResultGenericError
    - name: SDLResultIgnored
      url: Constants.html#/c:@SDLResultIgnored
    - name: SDLResultInUse
      url: Constants.html#/c:@SDLResultInUse
    - name: SDLResultInvalidCertificate
      url: Constants.html#/c:@SDLResultInvalidCertificate
    - name: SDLResultInvalidData
      url: Constants.html#/c:@SDLResultInvalidData
    - name: SDLResultInvalidId
      url: Constants.html#/c:@SDLResultInvalidId
    - name: SDLResultOutOfMemory
      url: Constants.html#/c:@SDLResultOutOfMemory
    - name: SDLResultReadOnly
      url: Constants.html#/c:@SDLResultReadOnly
    - name: SDLResultRejected
      url: Constants.html#/c:@SDLResultRejected
    - name: SDLResultResumeFailed
      url: Constants.html#/c:@SDLResultResumeFailed
    - name: SDLResultRetry
      url: Constants.html#/c:@SDLResultRetry
    - name: SDLResultSaved
      url: Constants.html#/c:@SDLResultSaved
    - name: SDLResultSuccess
      url: Constants.html#/c:@SDLResultSuccess
    - name: SDLResultTimedOut
      url: Constants.html#/c:@SDLResultTimedOut
    - name: SDLResultTooManyApplications
      url: Constants.html#/c:@SDLResultTooManyApplications
    - name: SDLResultTooManyPendingRequests
      url: Constants.html#/c:@SDLResultTooManyPendingRequests
    - name: SDLResultTruncatedData
      url: Constants.html#/c:@SDLResultTruncatedData
    - name: SDLResultUnsupportedRequest
      url: Constants.html#/c:@SDLResultUnsupportedRequest
    - name: SDLResultUnsupportedResource
      url: Constants.html#/c:@SDLResultUnsupportedResource
    - name: SDLResultUnsupportedVersion
      url: Constants.html#/c:@SDLResultUnsupportedVersion
    - name: SDLResultUserDisallowed
      url: Constants.html#/c:@SDLResultUserDisallowed
    - name: SDLResultVehicleDataNotAllowed
      url: Constants.html#/c:@SDLResultVehicleDataNotAllowed
    - name: SDLResultVehicleDataNotAvailable
      url: Constants.html#/c:@SDLResultVehicleDataNotAvailable
    - name: SDLResultWarnings
      url: Constants.html#/c:@SDLResultWarnings
    - name: SDLResultWrongLanguage
      url: Constants.html#/c:@SDLResultWrongLanguage
    - name: SDLSamplingRate16KHZ
      url: Constants.html#/c:@SDLSamplingRate16KHZ
    - name: SDLSamplingRate22KHZ
      url: Constants.html#/c:@SDLSamplingRate22KHZ
    - name: SDLSamplingRate44KHZ
      url: Constants.html#/c:@SDLSamplingRate44KHZ
    - name: SDLSamplingRate8KHZ
      url: Constants.html#/c:@SDLSamplingRate8KHZ
    - name: SDLSoftButtonTypeBoth
      url: Constants.html#/c:@SDLSoftButtonTypeBoth
    - name: SDLSoftButtonTypeImage
      url: Constants.html#/c:@SDLSoftButtonTypeImage
    - name: SDLSoftButtonTypeText
      url: Constants.html#/c:@SDLSoftButtonTypeText
    - name: SDLSpeechCapabilitiesLHPlusPhonemes
      url: Constants.html#/c:@SDLSpeechCapabilitiesLHPlusPhonemes
    - name: SDLSpeechCapabilitiesPrerecorded
      url: Constants.html#/c:@SDLSpeechCapabilitiesPrerecorded
    - name: SDLSpeechCapabilitiesSAPIPhonemes
      url: Constants.html#/c:@SDLSpeechCapabilitiesSAPIPhonemes
    - name: SDLSpeechCapabilitiesSilence
      url: Constants.html#/c:@SDLSpeechCapabilitiesSilence
    - name: SDLSpeechCapabilitiesText
      url: Constants.html#/c:@SDLSpeechCapabilitiesText
    - name: SDLSystemActionDefaultAction
      url: Constants.html#/c:@SDLSystemActionDefaultAction
    - name: SDLSystemActionKeepContext
      url: Constants.html#/c:@SDLSystemActionKeepContext
    - name: SDLSystemActionStealFocus
      url: Constants.html#/c:@SDLSystemActionStealFocus
    - name: SDLSystemCapabilityTypeNavigation
      url: Constants.html#/c:@SDLSystemCapabilityTypeNavigation
    - name: SDLSystemCapabilityTypePhoneCall
      url: Constants.html#/c:@SDLSystemCapabilityTypePhoneCall
    - name: SDLSystemCapabilityTypeRemoteControl
      url: Constants.html#/c:@SDLSystemCapabilityTypeRemoteControl
    - name: SDLSystemCapabilityTypeVideoStreaming
      url: Constants.html#/c:@SDLSystemCapabilityTypeVideoStreaming
    - name: SDLSystemContextAlert
      url: Constants.html#/c:@SDLSystemContextAlert
    - name: SDLSystemContextHMIObscured
      url: Constants.html#/c:@SDLSystemContextHMIObscured
    - name: SDLSystemContextMain
      url: Constants.html#/c:@SDLSystemContextMain
    - name: SDLSystemContextMenu
      url: Constants.html#/c:@SDLSystemContextMenu
    - name: SDLSystemContextVoiceRecognitionSession
      url: Constants.html#/c:@SDLSystemContextVoiceRecognitionSession
    - name: SDLTBTStateETARequest
      url: Constants.html#/c:@SDLTBTStateETARequest
    - name: SDLTBTStateNextTurnRequest
      url: Constants.html#/c:@SDLTBTStateNextTurnRequest
    - name: SDLTBTStateRouteAccepted
      url: Constants.html#/c:@SDLTBTStateRouteAccepted
    - name: SDLTBTStateRouteCancelled
      url: Constants.html#/c:@SDLTBTStateRouteCancelled
    - name: SDLTBTStateRouteRefused
      url: Constants.html#/c:@SDLTBTStateRouteRefused
    - name: SDLTBTStateRouteStatusRequest
      url: Constants.html#/c:@SDLTBTStateRouteStatusRequest
    - name: SDLTBTStateRouteSummaryRequest
      url: Constants.html#/c:@SDLTBTStateRouteSummaryRequest
    - name: SDLTBTStateRouteUpdateRequest
      url: Constants.html#/c:@SDLTBTStateRouteUpdateRequest
    - name: SDLTBTStateRouteUpdateRequestTimeout
      url: Constants.html#/c:@SDLTBTStateRouteUpdateRequestTimeout
    - name: SDLTBTStateTripStatusRequest
      url: Constants.html#/c:@SDLTBTStateTripStatusRequest
    - name: SDLTemperatureUnitCelsius
      url: Constants.html#/c:@SDLTemperatureUnitCelsius
    - name: SDLTemperatureUnitFahrenheit
      url: Constants.html#/c:@SDLTemperatureUnitFahrenheit
    - name: SDLTextAlignmentCenter
      url: Constants.html#/c:@SDLTextAlignmentCenter
    - name: SDLTextAlignmentLeft
      url: Constants.html#/c:@SDLTextAlignmentLeft
    - name: SDLTextAlignmentRight
      url: Constants.html#/c:@SDLTextAlignmentRight
    - name: SDLTextFieldNameAddressLines
      url: Constants.html#/c:@SDLTextFieldNameAddressLines
    - name: SDLTextFieldNameAlertText1
      url: Constants.html#/c:@SDLTextFieldNameAlertText1
    - name: SDLTextFieldNameAlertText2
      url: Constants.html#/c:@SDLTextFieldNameAlertText2
    - name: SDLTextFieldNameAlertText3
      url: Constants.html#/c:@SDLTextFieldNameAlertText3
    - name: SDLTextFieldNameAudioPassThruDisplayText1
      url: Constants.html#/c:@SDLTextFieldNameAudioPassThruDisplayText1
    - name: SDLTextFieldNameAudioPassThruDisplayText2
      url: Constants.html#/c:@SDLTextFieldNameAudioPassThruDisplayText2
    - name: SDLTextFieldNameETA
      url: Constants.html#/c:@SDLTextFieldNameETA
    - name: SDLTextFieldNameInitialInteractionText
      url: Constants.html#/c:@SDLTextFieldNameInitialInteractionText
    - name: SDLTextFieldNameLocationDescription
      url: Constants.html#/c:@SDLTextFieldNameLocationDescription
    - name: SDLTextFieldNameLocationName
      url: Constants.html#/c:@SDLTextFieldNameLocationName
    - name: SDLTextFieldNameMainField1
      url: Constants.html#/c:@SDLTextFieldNameMainField1
    - name: SDLTextFieldNameMainField2
      url: Constants.html#/c:@SDLTextFieldNameMainField2
    - name: SDLTextFieldNameMainField3
      url: Constants.html#/c:@SDLTextFieldNameMainField3
    - name: SDLTextFieldNameMainField4
      url: Constants.html#/c:@SDLTextFieldNameMainField4
    - name: SDLTextFieldNameMediaClock
      url: Constants.html#/c:@SDLTextFieldNameMediaClock
    - name: SDLTextFieldNameMediaTrack
      url: Constants.html#/c:@SDLTextFieldNameMediaTrack
    - name: SDLTextFieldNameMenuName
      url: Constants.html#/c:@SDLTextFieldNameMenuName
    - name: SDLTextFieldNameMenuTitle
      url: Constants.html#/c:@SDLTextFieldNameMenuTitle
    - name: SDLTextFieldNameNavigationText1
      url: Constants.html#/c:@SDLTextFieldNameNavigationText1
    - name: SDLTextFieldNameNavigationText2
      url: Constants.html#/c:@SDLTextFieldNameNavigationText2
    - name: SDLTextFieldNamePhoneNumber
      url: Constants.html#/c:@SDLTextFieldNamePhoneNumber
    - name: SDLTextFieldNameScrollableMessageBody
      url: Constants.html#/c:@SDLTextFieldNameScrollableMessageBody
    - name: SDLTextFieldNameSecondaryText
      url: Constants.html#/c:@SDLTextFieldNameSecondaryText
    - name: SDLTextFieldNameSliderFooter
      url: Constants.html#/c:@SDLTextFieldNameSliderFooter
    - name: SDLTextFieldNameSliderHeader
      url: Constants.html#/c:@SDLTextFieldNameSliderHeader
    - name: SDLTextFieldNameStatusBar
      url: Constants.html#/c:@SDLTextFieldNameStatusBar
    - name: SDLTextFieldNameTertiaryText
      url: Constants.html#/c:@SDLTextFieldNameTertiaryText
    - name: SDLTextFieldNameTotalDistance
      url: Constants.html#/c:@SDLTextFieldNameTotalDistance
    - name: SDLTimerModeDown
      url: Constants.html#/c:@SDLTimerModeDown
    - name: SDLTimerModeNone
      url: Constants.html#/c:@SDLTimerModeNone
    - name: SDLTimerModeUp
      url: Constants.html#/c:@SDLTimerModeUp
    - name: SDLTouchTypeBegin
      url: Constants.html#/c:@SDLTouchTypeBegin
    - name: SDLTouchTypeCancel
      url: Constants.html#/c:@SDLTouchTypeCancel
    - name: SDLTouchTypeEnd
      url: Constants.html#/c:@SDLTouchTypeEnd
    - name: SDLTouchTypeMove
      url: Constants.html#/c:@SDLTouchTypeMove
    - name: SDLTransportDidConnect
      url: Constants.html#/c:@SDLTransportDidConnect
    - name: SDLTransportDidDisconnect
      url: Constants.html#/c:@SDLTransportDidDisconnect
    - name: SDLTriggerSourceKeyboard
      url: Constants.html#/c:@SDLTriggerSourceKeyboard
    - name: SDLTriggerSourceMenu
      url: Constants.html#/c:@SDLTriggerSourceMenu
    - name: SDLTriggerSourceVoiceRecognition
      url: Constants.html#/c:@SDLTriggerSourceVoiceRecognition
    - name: SDLUpdateModeClear
      url: Constants.html#/c:@SDLUpdateModeClear
    - name: SDLUpdateModeCountDown
      url: Constants.html#/c:@SDLUpdateModeCountDown
    - name: SDLUpdateModeCountUp
      url: Constants.html#/c:@SDLUpdateModeCountUp
    - name: SDLUpdateModePause
      url: Constants.html#/c:@SDLUpdateModePause
    - name: SDLUpdateModeResume
      url: Constants.html#/c:@SDLUpdateModeResume
    - name: SDLVRCapabilitiesText
      url: Constants.html#/c:@SDLVRCapabilitiesText
    - name: SDLVehicleDataActiveStatusActiveConfirmed
      url: Constants.html#/c:@SDLVehicleDataActiveStatusActiveConfirmed
    - name: SDLVehicleDataActiveStatusActiveNotConfirmed
      url: Constants.html#/c:@SDLVehicleDataActiveStatusActiveNotConfirmed
    - name: SDLVehicleDataActiveStatusFault
      url: Constants.html#/c:@SDLVehicleDataActiveStatusFault
    - name: SDLVehicleDataActiveStatusInactiveConfirmed
      url: Constants.html#/c:@SDLVehicleDataActiveStatusInactiveConfirmed
    - name: SDLVehicleDataActiveStatusInactiveNotConfirmed
      url: Constants.html#/c:@SDLVehicleDataActiveStatusInactiveNotConfirmed
    - name: SDLVehicleDataEventStatusFault
      url: Constants.html#/c:@SDLVehicleDataEventStatusFault
    - name: SDLVehicleDataEventStatusNo
      url: Constants.html#/c:@SDLVehicleDataEventStatusNo
    - name: SDLVehicleDataEventStatusNoEvent
      url: Constants.html#/c:@SDLVehicleDataEventStatusNoEvent
    - name: SDLVehicleDataEventStatusNotSupported
      url: Constants.html#/c:@SDLVehicleDataEventStatusNotSupported
    - name: SDLVehicleDataEventStatusYes
      url: Constants.html#/c:@SDLVehicleDataEventStatusYes
    - name: SDLVehicleDataNotificationStatusActive
      url: Constants.html#/c:@SDLVehicleDataNotificationStatusActive
    - name: SDLVehicleDataNotificationStatusNormal
      url: Constants.html#/c:@SDLVehicleDataNotificationStatusNormal
    - name: SDLVehicleDataNotificationStatusNotSupported
      url: Constants.html#/c:@SDLVehicleDataNotificationStatusNotSupported
    - name: SDLVehicleDataNotificationStatusNotUsed
      url: Constants.html#/c:@SDLVehicleDataNotificationStatusNotUsed
    - name: SDLVehicleDataResultCodeDataAlreadySubscribed
      url: Constants.html#/c:@SDLVehicleDataResultCodeDataAlreadySubscribed
    - name: SDLVehicleDataResultCodeDataNotSubscribed
      url: Constants.html#/c:@SDLVehicleDataResultCodeDataNotSubscribed
    - name: SDLVehicleDataResultCodeDisallowed
      url: Constants.html#/c:@SDLVehicleDataResultCodeDisallowed
    - name: SDLVehicleDataResultCodeIgnored
      url: Constants.html#/c:@SDLVehicleDataResultCodeIgnored
    - name: SDLVehicleDataResultCodeInvalidId
      url: Constants.html#/c:@SDLVehicleDataResultCodeInvalidId
    - name: SDLVehicleDataResultCodeSuccess
      url: Constants.html#/c:@SDLVehicleDataResultCodeSuccess
    - name: SDLVehicleDataResultCodeTruncatedData
      url: Constants.html#/c:@SDLVehicleDataResultCodeTruncatedData
    - name: SDLVehicleDataResultCodeUserDisallowed
      url: Constants.html#/c:@SDLVehicleDataResultCodeUserDisallowed
    - name: SDLVehicleDataResultCodeVehicleDataNotAvailable
      url: Constants.html#/c:@SDLVehicleDataResultCodeVehicleDataNotAvailable
    - name: SDLVehicleDataStatusNoDataExists
      url: Constants.html#/c:@SDLVehicleDataStatusNoDataExists
    - name: SDLVehicleDataStatusOff
      url: Constants.html#/c:@SDLVehicleDataStatusOff
    - name: SDLVehicleDataStatusOn
      url: Constants.html#/c:@SDLVehicleDataStatusOn
    - name: SDLVehicleDataTypeAccelerationPedal
      url: Constants.html#/c:@SDLVehicleDataTypeAccelerationPedal
    - name: SDLVehicleDataTypeAirbagStatus
      url: Constants.html#/c:@SDLVehicleDataTypeAirbagStatus
    - name: SDLVehicleDataTypeBatteryVoltage
      url: Constants.html#/c:@SDLVehicleDataTypeBatteryVoltage
    - name: SDLVehicleDataTypeBeltStatus
      url: Constants.html#/c:@SDLVehicleDataTypeBeltStatus
    - name: SDLVehicleDataTypeBodyInfo
      url: Constants.html#/c:@SDLVehicleDataTypeBodyInfo
    - name: SDLVehicleDataTypeBraking
      url: Constants.html#/c:@SDLVehicleDataTypeBraking
    - name: SDLVehicleDataTypeClusterModeStatus
      url: Constants.html#/c:@SDLVehicleDataTypeClusterModeStatus
    - name: SDLVehicleDataTypeDeviceStatus
      url: Constants.html#/c:@SDLVehicleDataTypeDeviceStatus
    - name: SDLVehicleDataTypeECallInfo
      url: Constants.html#/c:@SDLVehicleDataTypeECallInfo
    - name: SDLVehicleDataTypeEmergencyEvent
      url: Constants.html#/c:@SDLVehicleDataTypeEmergencyEvent
    - name: SDLVehicleDataTypeEngineTorque
      url: Constants.html#/c:@SDLVehicleDataTypeEngineTorque
    - name: SDLVehicleDataTypeExternalTemperature
      url: Constants.html#/c:@SDLVehicleDataTypeExternalTemperature
    - name: SDLVehicleDataTypeFuelConsumption
      url: Constants.html#/c:@SDLVehicleDataTypeFuelConsumption
    - name: SDLVehicleDataTypeFuelLevel
      url: Constants.html#/c:@SDLVehicleDataTypeFuelLevel
    - name: SDLVehicleDataTypeFuelLevelState
      url: Constants.html#/c:@SDLVehicleDataTypeFuelLevelState
    - name: SDLVehicleDataTypeGPS
      url: Constants.html#/c:@SDLVehicleDataTypeGPS
    - name: SDLVehicleDataTypeHeadlampStatus
      url: Constants.html#/c:@SDLVehicleDataTypeHeadlampStatus
    - name: SDLVehicleDataTypeMyKey
      url: Constants.html#/c:@SDLVehicleDataTypeMyKey
    - name: SDLVehicleDataTypeOdometer
      url: Constants.html#/c:@SDLVehicleDataTypeOdometer
    - name: SDLVehicleDataTypePRNDL
      url: Constants.html#/c:@SDLVehicleDataTypePRNDL
    - name: SDLVehicleDataTypeRPM
      url: Constants.html#/c:@SDLVehicleDataTypeRPM
    - name: SDLVehicleDataTypeSpeed
      url: Constants.html#/c:@SDLVehicleDataTypeSpeed
    - name: SDLVehicleDataTypeSteeringWheel
      url: Constants.html#/c:@SDLVehicleDataTypeSteeringWheel
    - name: SDLVehicleDataTypeTirePressure
      url: Constants.html#/c:@SDLVehicleDataTypeTirePressure
    - name: SDLVehicleDataTypeVIN
      url: Constants.html#/c:@SDLVehicleDataTypeVIN
    - name: SDLVehicleDataTypeWiperStatus
      url: Constants.html#/c:@SDLVehicleDataTypeWiperStatus
    - name: SDLVentilationModeBoth
      url: Constants.html#/c:@SDLVentilationModeBoth
    - name: SDLVentilationModeLower
      url: Constants.html#/c:@SDLVentilationModeLower
    - name: SDLVentilationModeNone
      url: Constants.html#/c:@SDLVentilationModeNone
    - name: SDLVentilationModeUpper
      url: Constants.html#/c:@SDLVentilationModeUpper
    - name: SDLVideoStreamDidStartNotification
      url: Constants.html#/c:@SDLVideoStreamDidStartNotification
    - name: SDLVideoStreamDidStopNotification
      url: Constants.html#/c:@SDLVideoStreamDidStopNotification
    - name: SDLVideoStreamingCodecH264
      url: Constants.html#/c:@SDLVideoStreamingCodecH264
    - name: SDLVideoStreamingCodecH265
      url: Constants.html#/c:@SDLVideoStreamingCodecH265
    - name: SDLVideoStreamingCodecTheora
      url: Constants.html#/c:@SDLVideoStreamingCodecTheora
    - name: SDLVideoStreamingCodecVP8
      url: Constants.html#/c:@SDLVideoStreamingCodecVP8
    - name: SDLVideoStreamingCodecVP9
      url: Constants.html#/c:@SDLVideoStreamingCodecVP9
    - name: SDLVideoStreamingProtocolRAW
      url: Constants.html#/c:@SDLVideoStreamingProtocolRAW
    - name: SDLVideoStreamingProtocolRTMP
      url: Constants.html#/c:@SDLVideoStreamingProtocolRTMP
    - name: SDLVideoStreamingProtocolRTP
      url: Constants.html#/c:@SDLVideoStreamingProtocolRTP
    - name: SDLVideoStreamingProtocolRTSP
      url: Constants.html#/c:@SDLVideoStreamingProtocolRTSP
    - name: SDLVideoStreamingProtocolWebM
      url: Constants.html#/c:@SDLVideoStreamingProtocolWebM
    - name: SDLWarningLightStatusFlash
      url: Constants.html#/c:@SDLWarningLightStatusFlash
    - name: SDLWarningLightStatusNotUsed
      url: Constants.html#/c:@SDLWarningLightStatusNotUsed
    - name: SDLWarningLightStatusOff
      url: Constants.html#/c:@SDLWarningLightStatusOff
    - name: SDLWarningLightStatusOn
      url: Constants.html#/c:@SDLWarningLightStatusOn
    - name: SDLWayPointTypeAll
      url: Constants.html#/c:@SDLWayPointTypeAll
    - name: SDLWayPointTypeDestination
      url: Constants.html#/c:@SDLWayPointTypeDestination
    - name: SDLWiperStatusAutomaticAdjust
      url: Constants.html#/c:@SDLWiperStatusAutomaticAdjust
    - name: SDLWiperStatusAutomaticHigh
      url: Constants.html#/c:@SDLWiperStatusAutomaticHigh
    - name: SDLWiperStatusAutomaticLow
      url: Constants.html#/c:@SDLWiperStatusAutomaticLow
    - name: SDLWiperStatusAutomaticOff
      url: Constants.html#/c:@SDLWiperStatusAutomaticOff
    - name: SDLWiperStatusCourtesyWipe
      url: Constants.html#/c:@SDLWiperStatusCourtesyWipe
    - name: SDLWiperStatusManualFlick
      url: Constants.html#/c:@SDLWiperStatusManualFlick
    - name: SDLWiperStatusManualHigh
      url: Constants.html#/c:@SDLWiperStatusManualHigh
    - name: SDLWiperStatusManualIntervalOff
      url: Constants.html#/c:@SDLWiperStatusManualIntervalOff
    - name: SDLWiperStatusManualIntervalOn
      url: Constants.html#/c:@SDLWiperStatusManualIntervalOn
    - name: SDLWiperStatusManualLow
      url: Constants.html#/c:@SDLWiperStatusManualLow
    - name: SDLWiperStatusNoDataExists
      url: Constants.html#/c:@SDLWiperStatusNoDataExists
    - name: SDLWiperStatusOff
      url: Constants.html#/c:@SDLWiperStatusOff
    - name: SDLWiperStatusOffMoving
      url: Constants.html#/c:@SDLWiperStatusOffMoving
    - name: SDLWiperStatusStalled
      url: Constants.html#/c:@SDLWiperStatusStalled
    - name: SDLWiperStatusWash
      url: Constants.html#/c:@SDLWiperStatusWash
    - name: SmartDeviceLinkVersionNumber
      url: Constants.html#/c:@SmartDeviceLinkVersionNumber
    - name: SmartDeviceLinkVersionString
      url: Constants.html#/c:@SmartDeviceLinkVersionString
- name: Enums
  sub_nav:
    - name: SDLArtworkImageFormat
      url: Enums/SDLArtworkImageFormat.html
    - name: SDLFileManagerError
      url: Enums/SDLFileManagerError.html
    - name: SDLFrameInfo
      url: Enums/SDLFrameInfo.html
    - name: SDLFrameType
      url: Enums/SDLFrameType.html
    - name: SDLLogBytesDirection
      url: Enums/SDLLogBytesDirection.html
    - name: SDLLogFlag
      url: Enums/SDLLogFlag.html
    - name: SDLLogFormatType
      url: Enums/SDLLogFormatType.html
    - name: SDLLogLevel
      url: Enums/SDLLogLevel.html
    - name: SDLManagerError
      url: Enums/SDLManagerError.html
    - name: SDLPermissionGroupStatus
      url: Enums/SDLPermissionGroupStatus.html
    - name: SDLPermissionGroupType
      url: Enums/SDLPermissionGroupType.html
    - name: SDLProtocolError
      url: Enums/SDLProtocolError.html
    - name: SDLRPCMessageType
      url: Enums/SDLRPCMessageType.html
    - name: SDLServiceType
      url: Enums/SDLServiceType.html
    - name: SDLStreamingEncryptionFlag
      url: Enums/SDLStreamingEncryptionFlag.html
- name: Protocols
  sub_nav:
    - name: SDLBool
      url: Protocols.html#/c:objc(pl)SDLBool
    - name: SDLFloat
      url: Protocols.html#/c:objc(pl)SDLFloat
    - name: SDLIAPSessionDelegate
      url: Protocols/SDLIAPSessionDelegate.html
    - name: SDLInt
      url: Protocols.html#/c:objc(pl)SDLInt
    - name: SDLLogTarget
      url: Protocols/SDLLogTarget.html
    - name: SDLManagerDelegate
      url: Protocols/SDLManagerDelegate.html
    - name: SDLProtocolListener
      url: Protocols/SDLProtocolListener.html
    - name: SDLProxyListener
      url: Protocols/SDLProxyListener.html
    - name: SDLSecurityType
      url: Protocols/SDLSecurityType.html
    - name: SDLTouchManagerDelegate
      url: Protocols/SDLTouchManagerDelegate.html
    - name: SDLTransportDelegate
      url: Protocols/SDLTransportDelegate.html
    - name: SDLUInt
      url: Protocols.html#/c:objc(pl)SDLUInt
- name: Type Definitions
  sub_nav:
    - name: SDLAmbientLightStatus
      url: Type Definitions.html#/c:SDLAmbientLightStatus.h@T@SDLAmbientLightStatus
    - name: SDLAppHMIType
      url: Type Definitions.html#/c:SDLAppHMIType.h@T@SDLAppHMIType
    - name: SDLAppInterfaceUnregisteredReason
      url: Type Definitions.html#/c:SDLAppInterfaceUnregisteredReason.h@T@SDLAppInterfaceUnregisteredReason
    - name: SDLAudioPassThruHandler
      url: Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLAudioPassThruHandler
    - name: SDLAudioStreamingState
      url: Type Definitions.html#/c:SDLAudioStreamingState.h@T@SDLAudioStreamingState
    - name: SDLAudioType
      url: Type Definitions.html#/c:SDLAudioType.h@T@SDLAudioType
    - name: SDLBitsPerSample
      url: Type Definitions.html#/c:SDLBitsPerSample.h@T@SDLBitsPerSample
    - name: SDLButtonEventMode
      url: Type Definitions.html#/c:SDLButtonEventMode.h@T@SDLButtonEventMode
    - name: SDLButtonName
      url: Type Definitions.html#/c:SDLButtonName.h@T@SDLButtonName
    - name: SDLButtonPressMode
      url: Type Definitions.html#/c:SDLButtonPressMode.h@T@SDLButtonPressMode
    - name: SDLCarModeStatus
      url: Type Definitions.html#/c:SDLCarModeStatus.h@T@SDLCarModeStatus
    - name: SDLCharacterSet
      url: Type Definitions.html#/c:SDLCharacterSet.h@T@SDLCharacterSet
    - name: SDLCompassDirection
      url: Type Definitions.html#/c:SDLCompassDirection.h@T@SDLCompassDirection
    - name: SDLComponentVolumeStatus
      url: Type Definitions.html#/c:SDLComponentVolumeStatus.h@T@SDLComponentVolumeStatus
    - name: SDLDefrostZone
      url: Type Definitions.html#/c:SDLDefrostZone.h@T@SDLDefrostZone
    - name: SDLDeliveryMode
      url: Type Definitions.html#/c:SDLDeliveryMode.h@T@SDLDeliveryMode
    - name: SDLDeviceLevelStatus
      url: Type Definitions.html#/c:SDLDeviceLevelStatus.h@T@SDLDeviceLevelStatus
    - name: SDLDimension
      url: Type Definitions.html#/c:SDLDimension.h@T@SDLDimension
    - name: SDLDisplayType
      url: Type Definitions.html#/c:SDLDisplayType.h@T@SDLDisplayType
    - name: SDLDriverDistractionState
      url: Type Definitions.html#/c:SDLDriverDistractionState.h@T@SDLDriverDistractionState
    - name: SDLECallConfirmationStatus
      url: Type Definitions.html#/c:SDLECallConfirmationStatus.h@T@SDLECallConfirmationStatus
    - name: SDLEmergencyEventType
      url: Type Definitions.html#/c:SDLEmergencyEventType.h@T@SDLEmergencyEventType
    - name: SDLEnum
      url: Type Definitions.html#/c:SDLEnum.h@T@SDLEnum
    - name: SDLFileManagerDeleteCompletionHandler
      url: Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerDeleteCompletionHandler
    - name: SDLFileManagerListFilesCompletionHandler
      url: Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerListFilesCompletionHandler
    - name: SDLFileManagerMultiDeleteCompletionHandler
      url: Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiDeleteCompletionHandler
    - name: SDLFileManagerMultiUploadCompletionHandler
      url: Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiUploadCompletionHandler
    - name: SDLFileManagerMultiUploadProgressHandler
      url: Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiUploadProgressHandler
    - name: SDLFileManagerStartupCompletionHandler
      url: Type Definitions.html#/c:SDLFileManager.h@T@SDLFileManagerStartupCompletionHandler
    - name: SDLFileManagerUploadCompletionHandler
      url: Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerUploadCompletionHandler
    - name: SDLFileName
      url: Type Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileName
    - name: SDLFileType
      url: Type Definitions.html#/c:SDLFileType.h@T@SDLFileType
    - name: SDLFuelCutoffStatus
      url: Type Definitions.html#/c:SDLFuelCutoffStatus.h@T@SDLFuelCutoffStatus
    - name: SDLGlobalProperty
      url: Type Definitions.html#/c:SDLGlobalProperty.h@T@SDLGlobalProperty
    - name: SDLHMILevel
      url: Type Definitions.html#/c:SDLHMILevel.h@T@SDLHMILevel
    - name: SDLHMIZoneCapabilities
      url: Type Definitions.html#/c:SDLHMIZoneCapabilities.h@T@SDLHMIZoneCapabilities
    - name: SDLIgnitionStableStatus
      url: Type Definitions.html#/c:SDLIgnitionStableStatus.h@T@SDLIgnitionStableStatus
    - name: SDLIgnitionStatus
      url: Type Definitions.html#/c:SDLIgnitionStatus.h@T@SDLIgnitionStatus
    - name: SDLImageFieldName
      url: Type Definitions.html#/c:SDLImageFieldName.h@T@SDLImageFieldName
    - name: SDLImageType
      url: Type Definitions.html#/c:SDLImageType.h@T@SDLImageType
    - name: SDLInteractionMode
      url: Type Definitions.html#/c:SDLInteractionMode.h@T@SDLInteractionMode
    - name: SDLKeyboardEvent
      url: Type Definitions.html#/c:SDLKeyboardEvent.h@T@SDLKeyboardEvent
    - name: SDLKeyboardLayout
      url: Type Definitions.html#/c:SDLKeyboardLayout.h@T@SDLKeyboardLayout
    - name: SDLKeypressMode
      url: Type Definitions.html#/c:SDLKeypressMode.h@T@SDLKeypressMode
    - name: SDLLanguage
      url: Type Definitions.html#/c:SDLLanguage.h@T@SDLLanguage
    - name: SDLLayoutMode
      url: Type Definitions.html#/c:SDLLayoutMode.h@T@SDLLayoutMode
    - name: SDLLockScreenStatus
      url: Type Definitions.html#/c:SDLLockScreenStatus.h@T@SDLLockScreenStatus
    - name: SDLLogFilterBlock
      url: Type Definitions.html#/c:SDLLogConstants.h@T@SDLLogFilterBlock
    - name: SDLMaintenanceModeStatus
      url: Type Definitions.html#/c:SDLMaintenanceModeStatus.h@T@SDLMaintenanceModeStatus
    - name: SDLManagerReadyBlock
      url: Type Definitions.html#/c:SDLManager.h@T@SDLManagerReadyBlock
    - name: SDLMediaClockFormat
      url: Type Definitions.html#/c:SDLMediaClockFormat.h@T@SDLMediaClockFormat
    - name: SDLMetadataType
      url: Type Definitions.html#/c:SDLMetadataType.h@T@SDLMetadataType
    - name: SDLModuleType
      url: Type Definitions.html#/c:SDLModuleType.h@T@SDLModuleType
    - name: SDLNotificationName
      url: Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLNotificationName
    - name: SDLNotificationUserInfoKey
      url: Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLNotificationUserInfoKey
    - name: SDLPRNDL
      url: Type Definitions.html#/c:SDLPRNDL.h@T@SDLPRNDL
    - name: SDLPermissionObserverIdentifier
      url: Type Definitions.html#/c:SDLPermissionConstants.h@T@SDLPermissionObserverIdentifier
    - name: SDLPermissionRPCName
      url: Type Definitions.html#/c:SDLPermissionConstants.h@T@SDLPermissionRPCName
    - name: SDLPermissionStatus
      url: Type Definitions.html#/c:SDLPermissionStatus.h@T@SDLPermissionStatus
    - name: SDLPermissionsChangedHandler
      url: Type Definitions.html#/c:SDLPermissionConstants.h@T@SDLPermissionsChangedHandler
    - name: SDLPowerModeQualificationStatus
      url: Type Definitions.html#/c:SDLPowerModeQualificationStatus.h@T@SDLPowerModeQualificationStatus
    - name: SDLPowerModeStatus
      url: Type Definitions.html#/c:SDLPowerModeStatus.h@T@SDLPowerModeStatus
    - name: SDLPredefinedLayout
      url: Type Definitions.html#/c:SDLPredefinedLayout.h@T@SDLPredefinedLayout
    - name: SDLPrerecordedSpeech
      url: Type Definitions.html#/c:SDLPrerecordedSpeech.h@T@SDLPrerecordedSpeech
    - name: SDLPrimaryAudioSource
      url: Type Definitions.html#/c:SDLPrimaryAudioSource.h@T@SDLPrimaryAudioSource
    - name: SDLRPCButtonNotificationHandler
      url: Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLRPCButtonNotificationHandler
    - name: SDLRPCCommandNotificationHandler
      url: Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLRPCCommandNotificationHandler
    - name: SDLRadioBand
      url: Type Definitions.html#/c:SDLRadioBand.h@T@SDLRadioBand
    - name: SDLRadioState
      url: Type Definitions.html#/c:SDLRadioState.h@T@SDLRadioState
    - name: SDLRequestType
      url: Type Definitions.html#/c:SDLRequestType.h@T@SDLRequestType
    - name: SDLResponseHandler
      url: Type Definitions.html#/c:SDLNotificationConstants.h@T@SDLResponseHandler
    - name: SDLResult
      url: Type Definitions.html#/c:SDLResult.h@T@SDLResult
    - name: SDLSamplingRate
      url: Type Definitions.html#/c:SDLSamplingRate.h@T@SDLSamplingRate
    - name: SDLSoftButtonType
      url: Type Definitions.html#/c:SDLSoftButtonType.h@T@SDLSoftButtonType
    - name: SDLSpeechCapabilities
      url: Type Definitions.html#/c:SDLSpeechCapabilities.h@T@SDLSpeechCapabilities
    - name: SDLSystemAction
      url: Type Definitions.html#/c:SDLSystemAction.h@T@SDLSystemAction
    - name: SDLSystemCapabilityType
      url: Type Definitions.html#/c:SDLSystemCapabilityType.h@T@SDLSystemCapabilityType
    - name: SDLSystemContext
      url: Type Definitions.html#/c:SDLSystemContext.h@T@SDLSystemContext
    - name: SDLTBTState
      url: Type Definitions.html#/c:SDLTBTState.h@T@SDLTBTState
    - name: SDLTemperatureUnit
      url: Type Definitions.html#/c:SDLTemperatureUnit.h@T@SDLTemperatureUnit
    - name: SDLTextAlignment
      url: Type Definitions.html#/c:SDLTextAlignment.h@T@SDLTextAlignment
    - name: SDLTextFieldName
      url: Type Definitions.html#/c:SDLTextFieldName.h@T@SDLTextFieldName
    - name: SDLTimerMode
      url: Type Definitions.html#/c:SDLTimerMode.h@T@SDLTimerMode
    - name: SDLTouchEventHandler
      url: Type Definitions.html#/c:SDLTouchManager.h@T@SDLTouchEventHandler
    - name: SDLTouchIdentifier
      url: Type Definitions/SDLTouchIdentifier.html
    - name: SDLTouchType
      url: Type Definitions.html#/c:SDLTouchType.h@T@SDLTouchType
    - name: SDLTriggerSource
      url: Type Definitions.html#/c:SDLTriggerSource.h@T@SDLTriggerSource
    - name: SDLUpdateMode
      url: Type Definitions.html#/c:SDLUpdateMode.h@T@SDLUpdateMode
    - name: SDLVRCapabilities
      url: Type Definitions.html#/c:SDLVrCapabilities.h@T@SDLVRCapabilities
    - name: SDLVehicleDataActiveStatus
      url: Type Definitions.html#/c:SDLVehicleDataActiveStatus.h@T@SDLVehicleDataActiveStatus
    - name: SDLVehicleDataEventStatus
      url: Type Definitions.html#/c:SDLVehicleDataEventStatus.h@T@SDLVehicleDataEventStatus
    - name: SDLVehicleDataNotificationStatus
      url: Type Definitions.html#/c:SDLVehicleDataNotificationStatus.h@T@SDLVehicleDataNotificationStatus
    - name: SDLVehicleDataResultCode
      url: Type Definitions.html#/c:SDLVehicleDataResultCode.h@T@SDLVehicleDataResultCode
    - name: SDLVehicleDataStatus
      url: Type Definitions.html#/c:SDLVehicleDataStatus.h@T@SDLVehicleDataStatus
    - name: SDLVehicleDataType
      url: Type Definitions.html#/c:SDLVehicleDataType.h@T@SDLVehicleDataType
    - name: SDLVentilationMode
      url: Type Definitions.html#/c:SDLVentilationMode.h@T@SDLVentilationMode
    - name: SDLVideoStreamingCodec
      url: Type Definitions.html#/c:SDLVideoStreamingCodec.h@T@SDLVideoStreamingCodec
    - name: SDLVideoStreamingProtocol
      url: Type Definitions.html#/c:SDLVideoStreamingProtocol.h@T@SDLVideoStreamingProtocol
    - name: SDLWarningLightStatus
      url: Type Definitions.html#/c:SDLWarningLightStatus.h@T@SDLWarningLightStatus
    - name: SDLWayPointType
      url: Type Definitions.html#/c:SDLWayPointType.h@T@SDLWayPointType
    - name: SDLWiperStatus
      url: Type Definitions.html#/c:SDLWiperStatus.h@T@SDLWiperStatus