summaryrefslogtreecommitdiff
path: root/docs/index.html
blob: 3aa4c8c8033be6cced8893931186c6086dfac20d (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
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
- name: Categories
  sub_nav:
    - name: NSString(SDLEnum)
      url: Categories/NSString%28SDLEnum%29.html
- name: Classes
  sub_nav:
    - 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: SDLAlertAudioData
      url: Classes/SDLAlertAudioData.html
    - name: SDLAlertManeuver
      url: Classes/SDLAlertManeuver.html
    - name: SDLAlertManeuverResponse
      url: Classes.html#/c:objc(cs)SDLAlertManeuverResponse
    - name: SDLAlertResponse
      url: Classes/SDLAlertResponse.html
    - name: SDLAlertView
      url: Classes/SDLAlertView.html
    - name: SDLAppCapability
      url: Classes/SDLAppCapability.html
    - name: SDLAppInfo
      url: Classes/SDLAppInfo.html
    - name: SDLAppServiceCapability
      url: Classes/SDLAppServiceCapability.html
    - name: SDLAppServiceData
      url: Classes/SDLAppServiceData.html
    - name: SDLAppServiceManifest
      url: Classes/SDLAppServiceManifest.html
    - name: SDLAppServiceRecord
      url: Classes/SDLAppServiceRecord.html
    - name: SDLAppServicesCapabilities
      url: Classes/SDLAppServicesCapabilities.html
    - name: SDLArtwork
      url: Classes/SDLArtwork.html
    - name: SDLAudioControlCapabilities
      url: Classes/SDLAudioControlCapabilities.html
    - name: SDLAudioControlData
      url: Classes/SDLAudioControlData.html
    - name: SDLAudioData
      url: Classes/SDLAudioData.html
    - name: SDLAudioFile
      url: Classes/SDLAudioFile.html
    - name: SDLAudioPassThruCapabilities
      url: Classes/SDLAudioPassThruCapabilities.html
    - name: SDLAudioStreamManager
      url: Classes/SDLAudioStreamManager.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: SDLCancelInteraction
      url: Classes/SDLCancelInteraction.html
    - name: SDLCancelInteractionResponse
      url: Classes.html#/c:objc(cs)SDLCancelInteractionResponse
    - name: SDLCarWindowViewController
      url: Classes/SDLCarWindowViewController.html
    - name: SDLChangeRegistration
      url: Classes/SDLChangeRegistration.html
    - name: SDLChangeRegistrationResponse
      url: Classes.html#/c:objc(cs)SDLChangeRegistrationResponse
    - name: SDLChoice
      url: Classes/SDLChoice.html
    - name: SDLChoiceCell
      url: Classes/SDLChoiceCell.html
    - name: SDLChoiceSet
      url: Classes/SDLChoiceSet.html
    - name: SDLClimateControlCapabilities
      url: Classes/SDLClimateControlCapabilities.html
    - name: SDLClimateControlData
      url: Classes/SDLClimateControlData.html
    - name: SDLClimateData
      url: Classes/SDLClimateData.html
    - name: SDLCloseApplication
      url: Classes.html#/c:objc(cs)SDLCloseApplication
    - name: SDLCloseApplicationResponse
      url: Classes.html#/c:objc(cs)SDLCloseApplicationResponse
    - name: SDLCloudAppProperties
      url: Classes/SDLCloudAppProperties.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: SDLCreateWindow
      url: Classes/SDLCreateWindow.html
    - name: SDLCreateWindowResponse
      url: Classes.html#/c:objc(cs)SDLCreateWindowResponse
    - 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: SDLDeleteWindow
      url: Classes/SDLDeleteWindow.html
    - name: SDLDeleteWindowResponse
      url: Classes.html#/c:objc(cs)SDLDeleteWindowResponse
    - 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: SDLDisplayCapability
      url: Classes/SDLDisplayCapability.html
    - name: SDLDoorStatus
      url: Classes/SDLDoorStatus.html
    - name: SDLDriverDistractionCapability
      url: Classes/SDLDriverDistractionCapability.html
    - name: SDLDynamicUpdateCapabilities
      url: Classes/SDLDynamicUpdateCapabilities.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: SDLEncryptionConfiguration
      url: Classes/SDLEncryptionConfiguration.html
    - name: SDLEndAudioPassThru
      url: Classes.html#/c:objc(cs)SDLEndAudioPassThru
    - name: SDLEndAudioPassThruResponse
      url: Classes.html#/c:objc(cs)SDLEndAudioPassThruResponse
    - name: SDLEqualizerSettings
      url: Classes/SDLEqualizerSettings.html
    - name: SDLFile
      url: Classes/SDLFile.html
    - name: SDLFileManager
      url: Classes/SDLFileManager.html
    - name: SDLFileManagerConfiguration
      url: Classes/SDLFileManagerConfiguration.html
    - name: SDLFuelRange
      url: Classes/SDLFuelRange.html
    - name: SDLFunctionID
      url: Classes/SDLFunctionID.html
    - name: SDLGPSData
      url: Classes/SDLGPSData.html
    - name: SDLGateStatus
      url: Classes/SDLGateStatus.html
    - name: SDLGearStatus
      url: Classes/SDLGearStatus.html
    - name: SDLGenericResponse
      url: Classes.html#/c:objc(cs)SDLGenericResponse
    - name: SDLGetAppServiceData
      url: Classes/SDLGetAppServiceData.html
    - name: SDLGetAppServiceDataResponse
      url: Classes/SDLGetAppServiceDataResponse.html
    - name: SDLGetCloudAppProperties
      url: Classes/SDLGetCloudAppProperties.html
    - name: SDLGetCloudAppPropertiesResponse
      url: Classes/SDLGetCloudAppPropertiesResponse.html
    - name: SDLGetDTCs
      url: Classes/SDLGetDTCs.html
    - name: SDLGetDTCsResponse
      url: Classes/SDLGetDTCsResponse.html
    - name: SDLGetFile
      url: Classes/SDLGetFile.html
    - name: SDLGetFileResponse
      url: Classes/SDLGetFileResponse.html
    - name: SDLGetInteriorVehicleData
      url: Classes/SDLGetInteriorVehicleData.html
    - name: SDLGetInteriorVehicleDataConsent
      url: Classes/SDLGetInteriorVehicleDataConsent.html
    - name: SDLGetInteriorVehicleDataConsentResponse
      url: Classes/SDLGetInteriorVehicleDataConsentResponse.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: SDLGrid
      url: Classes/SDLGrid.html
    - name: SDLHMICapabilities
      url: Classes/SDLHMICapabilities.html
    - name: SDLHMIPermissions
      url: Classes/SDLHMIPermissions.html
    - name: SDLHMISettingsControlCapabilities
      url: Classes/SDLHMISettingsControlCapabilities.html
    - name: SDLHMISettingsControlData
      url: Classes/SDLHMISettingsControlData.html
    - name: SDLHapticRect
      url: Classes/SDLHapticRect.html
    - name: SDLHeadLampStatus
      url: Classes/SDLHeadLampStatus.html
    - name: SDLImage
      url: Classes/SDLImage.html
    - name: SDLImageField
      url: Classes/SDLImageField.html
    - name: SDLImageResolution
      url: Classes/SDLImageResolution.html
    - name: SDLKeyboardCapabilities
      url: Classes/SDLKeyboardCapabilities.html
    - name: SDLKeyboardLayoutCapability
      url: Classes/SDLKeyboardLayoutCapability.html
    - name: SDLKeyboardProperties
      url: Classes/SDLKeyboardProperties.html
    - name: SDLLifecycleConfiguration
      url: Classes/SDLLifecycleConfiguration.html
    - name: SDLLifecycleConfigurationUpdate
      url: Classes/SDLLifecycleConfigurationUpdate.html
    - name: SDLLightCapabilities
      url: Classes/SDLLightCapabilities.html
    - name: SDLLightControlCapabilities
      url: Classes/SDLLightControlCapabilities.html
    - name: SDLLightControlData
      url: Classes/SDLLightControlData.html
    - name: SDLLightState
      url: Classes/SDLLightState.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: SDLMassageCushionFirmness
      url: Classes/SDLMassageCushionFirmness.html
    - name: SDLMassageModeData
      url: Classes/SDLMassageModeData.html
    - name: SDLMediaServiceData
      url: Classes/SDLMediaServiceData.html
    - name: SDLMediaServiceManifest
      url: Classes.html#/c:objc(cs)SDLMediaServiceManifest
    - name: SDLMenuCell
      url: Classes/SDLMenuCell.html
    - name: SDLMenuConfiguration
      url: Classes/SDLMenuConfiguration.html
    - name: SDLMenuParams
      url: Classes/SDLMenuParams.html
    - name: SDLMetadataTags
      url: Classes/SDLMetadataTags.html
    - name: SDLModuleData
      url: Classes/SDLModuleData.html
    - name: SDLModuleInfo
      url: Classes/SDLModuleInfo.html
    - name: SDLMsgVersion
      url: Classes/SDLMsgVersion.html
    - name: SDLMyKey
      url: Classes/SDLMyKey.html
    - name: SDLNavigationCapability
      url: Classes/SDLNavigationCapability.html
    - name: SDLNavigationInstruction
      url: Classes/SDLNavigationInstruction.html
    - name: SDLNavigationServiceData
      url: Classes/SDLNavigationServiceData.html
    - name: SDLNavigationServiceManifest
      url: Classes/SDLNavigationServiceManifest.html
    - name: SDLNotificationConstants
      url: Classes/SDLNotificationConstants.html
    - name: SDLOasisAddress
      url: Classes/SDLOasisAddress.html
    - name: SDLOnAppCapabilityUpdated
      url: Classes/SDLOnAppCapabilityUpdated.html
    - name: SDLOnAppInterfaceUnregistered
      url: Classes/SDLOnAppInterfaceUnregistered.html
    - name: SDLOnAppServiceData
      url: Classes/SDLOnAppServiceData.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: SDLOnPermissionsChange
      url: Classes/SDLOnPermissionsChange.html
    - name: SDLOnRCStatus
      url: Classes/SDLOnRCStatus.html
    - name: SDLOnSubtleAlertPressed
      url: Classes.html#/c:objc(cs)SDLOnSubtleAlertPressed
    - name: SDLOnSyncPData
      url: Classes/SDLOnSyncPData.html
    - name: SDLOnSystemCapabilityUpdated
      url: Classes/SDLOnSystemCapabilityUpdated.html
    - name: SDLOnSystemRequest
      url: Classes/SDLOnSystemRequest.html
    - name: SDLOnTBTClientState
      url: Classes/SDLOnTBTClientState.html
    - name: SDLOnTouchEvent
      url: Classes/SDLOnTouchEvent.html
    - name: SDLOnUpdateFile
      url: Classes/SDLOnUpdateFile.html
    - name: SDLOnUpdateSubMenu
      url: Classes/SDLOnUpdateSubMenu.html
    - name: SDLOnVehicleData
      url: Classes/SDLOnVehicleData.html
    - name: SDLOnWayPointChange
      url: Classes/SDLOnWayPointChange.html
    - name: SDLParameterPermissions
      url: Classes/SDLParameterPermissions.html
    - name: SDLPerformAppServiceInteraction
      url: Classes/SDLPerformAppServiceInteraction.html
    - name: SDLPerformAppServiceInteractionResponse
      url: Classes/SDLPerformAppServiceInteractionResponse.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: SDLPermissionElement
      url: Classes/SDLPermissionElement.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: SDLPublishAppService
      url: Classes/SDLPublishAppService.html
    - name: SDLPublishAppServiceResponse
      url: Classes/SDLPublishAppServiceResponse.html
    - name: SDLPutFile
      url: Classes/SDLPutFile.html
    - name: SDLPutFileResponse
      url: Classes/SDLPutFileResponse.html
    - name: SDLRDSData
      url: Classes/SDLRDSData.html
    - name: SDLRGBColor
      url: Classes/SDLRGBColor.html
    - name: SDLRPCMessage
      url: Classes/SDLRPCMessage.html
    - name: SDLRPCNotification
      url: Classes.html#/c:objc(cs)SDLRPCNotification
    - name: SDLRPCNotificationNotification
      url: Classes/SDLRPCNotificationNotification.html
    - name: SDLRPCPermissionStatus
      url: Classes/SDLRPCPermissionStatus.html
    - name: SDLRPCRequest
      url: Classes/SDLRPCRequest.html
    - name: SDLRPCRequestNotification
      url: Classes/SDLRPCRequestNotification.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: SDLReleaseInteriorVehicleDataModule
      url: Classes/SDLReleaseInteriorVehicleDataModule.html
    - name: SDLReleaseInteriorVehicleDataModuleResponse
      url: Classes.html#/c:objc(cs)SDLReleaseInteriorVehicleDataModuleResponse
    - name: SDLRemoteControlCapabilities
      url: Classes/SDLRemoteControlCapabilities.html
    - name: SDLResetGlobalProperties
      url: Classes/SDLResetGlobalProperties.html
    - name: SDLResetGlobalPropertiesResponse
      url: Classes.html#/c:objc(cs)SDLResetGlobalPropertiesResponse
    - name: SDLRoofStatus
      url: Classes/SDLRoofStatus.html
    - name: SDLSISData
      url: Classes/SDLSISData.html
    - name: SDLScreenManager
      url: Classes/SDLScreenManager.html
    - name: SDLScreenParams
      url: Classes/SDLScreenParams.html
    - name: SDLScrollableMessage
      url: Classes/SDLScrollableMessage.html
    - name: SDLScrollableMessageResponse
      url: Classes.html#/c:objc(cs)SDLScrollableMessageResponse
    - name: SDLSeatControlCapabilities
      url: Classes/SDLSeatControlCapabilities.html
    - name: SDLSeatControlData
      url: Classes/SDLSeatControlData.html
    - name: SDLSeatLocation
      url: Classes/SDLSeatLocation.html
    - name: SDLSeatLocationCapability
      url: Classes/SDLSeatLocationCapability.html
    - name: SDLSeatMemoryAction
      url: Classes/SDLSeatMemoryAction.html
    - name: SDLSeatOccupancy
      url: Classes/SDLSeatOccupancy.html
    - name: SDLSeatStatus
      url: Classes/SDLSeatStatus.html
    - name: SDLSeekStreamingIndicator
      url: Classes/SDLSeekStreamingIndicator.html
    - 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: SDLSetCloudAppProperties
      url: Classes/SDLSetCloudAppProperties.html
    - name: SDLSetCloudAppPropertiesResponse
      url: Classes.html#/c:objc(cs)SDLSetCloudAppPropertiesResponse
    - 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: SDLShowAppMenu
      url: Classes/SDLShowAppMenu.html
    - name: SDLShowAppMenuResponse
      url: Classes.html#/c:objc(cs)SDLShowAppMenuResponse
    - 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: SDLSoftButtonObject
      url: Classes/SDLSoftButtonObject.html
    - name: SDLSoftButtonState
      url: Classes/SDLSoftButtonState.html
    - name: SDLSpeak
      url: Classes/SDLSpeak.html
    - name: SDLSpeakResponse
      url: Classes.html#/c:objc(cs)SDLSpeakResponse
    - name: SDLStabilityControlsStatus
      url: Classes/SDLStabilityControlsStatus.html
    - name: SDLStartTime
      url: Classes/SDLStartTime.html
    - name: SDLStationIDNumber
      url: Classes/SDLStationIDNumber.html
    - name: SDLStreamingMediaConfiguration
      url: Classes/SDLStreamingMediaConfiguration.html
    - name: SDLStreamingMediaManager
      url: Classes/SDLStreamingMediaManager.html
    - name: SDLStreamingVideoScaleManager
      url: Classes/SDLStreamingVideoScaleManager.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: SDLSubtleAlert
      url: Classes/SDLSubtleAlert.html
    - name: SDLSubtleAlertResponse
      url: Classes/SDLSubtleAlertResponse.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: SDLSystemCapabilityManager
      url: Classes/SDLSystemCapabilityManager.html
    - name: SDLSystemInfo
      url: Classes/SDLSystemInfo.html
    - name: SDLSystemRequest
      url: Classes/SDLSystemRequest.html
    - name: SDLSystemRequestResponse
      url: Classes.html#/c:objc(cs)SDLSystemRequestResponse
    - name: SDLTTSChunk
      url: Classes/SDLTTSChunk.html
    - name: SDLTemperature
      url: Classes/SDLTemperature.html
    - name: SDLTemplateColorScheme
      url: Classes/SDLTemplateColorScheme.html
    - name: SDLTemplateConfiguration
      url: Classes/SDLTemplateConfiguration.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: SDLUnpublishAppService
      url: Classes/SDLUnpublishAppService.html
    - name: SDLUnpublishAppServiceResponse
      url: Classes.html#/c:objc(cs)SDLUnpublishAppServiceResponse
    - 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: SDLVersion
      url: Classes/SDLVersion.html
    - name: SDLVideoStreamingCapability
      url: Classes/SDLVideoStreamingCapability.html
    - name: SDLVideoStreamingFormat
      url: Classes/SDLVideoStreamingFormat.html
    - name: SDLVideoStreamingRange
      url: Classes/SDLVideoStreamingRange.html
    - name: SDLVoiceCommand
      url: Classes/SDLVoiceCommand.html
    - name: SDLWeatherAlert
      url: Classes/SDLWeatherAlert.html
    - name: SDLWeatherData
      url: Classes/SDLWeatherData.html
    - name: SDLWeatherServiceData
      url: Classes/SDLWeatherServiceData.html
    - name: SDLWeatherServiceManifest
      url: Classes/SDLWeatherServiceManifest.html
    - name: SDLWindowCapability
      url: Classes/SDLWindowCapability.html
    - name: SDLWindowState
      url: Classes/SDLWindowState.html
    - name: SDLWindowStatus
      url: Classes/SDLWindowStatus.html
    - name: SDLWindowTypeCapabilities
      url: Classes/SDLWindowTypeCapabilities.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: SDLAppCapabilityTypeVideoStreaming
      url: Constants.html#/c:@SDLAppCapabilityTypeVideoStreaming
    - 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: SDLAppHMITypeWebView
      url: Constants.html#/c:@SDLAppHMITypeWebView
    - 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: SDLAppInterfaceUnregisteredReasonProtocolViolation
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonProtocolViolation
    - name: SDLAppInterfaceUnregisteredReasonRequestWhileInNoneHMILevel
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonRequestWhileInNoneHMILevel
    - name: SDLAppInterfaceUnregisteredReasonResourceConstraint
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonResourceConstraint
    - name: SDLAppInterfaceUnregisteredReasonTooManyRequests
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonTooManyRequests
    - name: SDLAppInterfaceUnregisteredReasonUSBDisconnected
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonUSBDisconnected
    - name: SDLAppInterfaceUnregisteredReasonUnsupportedHMIResource
      url: Constants.html#/c:@SDLAppInterfaceUnregisteredReasonUnsupportedHMIResource
    - name: SDLAppServiceTypeMedia
      url: Constants.html#/c:@SDLAppServiceTypeMedia
    - name: SDLAppServiceTypeNavigation
      url: Constants.html#/c:@SDLAppServiceTypeNavigation
    - name: SDLAppServiceTypeWeather
      url: Constants.html#/c:@SDLAppServiceTypeWeather
    - name: SDLAppStateActive
      url: Constants.html#/c:@SDLAppStateActive
    - name: SDLAppStateInactive
      url: Constants.html#/c:@SDLAppStateInactive
    - name: SDLAudioStreamDidStartNotification
      url: Constants.html#/c:@SDLAudioStreamDidStartNotification
    - name: SDLAudioStreamDidStopNotification
      url: Constants.html#/c:@SDLAudioStreamDidStopNotification
    - name: SDLAudioStreamManagerStateReady
      url: Constants.html#/c:@SDLAudioStreamManagerStateReady
    - name: SDLAudioStreamManagerStateShuttingDown
      url: Constants.html#/c:@SDLAudioStreamManagerStateShuttingDown
    - name: SDLAudioStreamManagerStateStarting
      url: Constants.html#/c:@SDLAudioStreamManagerStateStarting
    - name: SDLAudioStreamManagerStateStopped
      url: Constants.html#/c:@SDLAudioStreamManagerStateStopped
    - name: SDLAudioStreamingIndicatorPause
      url: Constants.html#/c:@SDLAudioStreamingIndicatorPause
    - name: SDLAudioStreamingIndicatorPlay
      url: Constants.html#/c:@SDLAudioStreamingIndicatorPlay
    - name: SDLAudioStreamingIndicatorPlayPause
      url: Constants.html#/c:@SDLAudioStreamingIndicatorPlayPause
    - name: SDLAudioStreamingIndicatorStop
      url: Constants.html#/c:@SDLAudioStreamingIndicatorStop
    - 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: SDLButtonNameNavCenterLocation
      url: Constants.html#/c:@SDLButtonNameNavCenterLocation
    - name: SDLButtonNameNavHeadingToggle
      url: Constants.html#/c:@SDLButtonNameNavHeadingToggle
    - name: SDLButtonNameNavPanDown
      url: Constants.html#/c:@SDLButtonNameNavPanDown
    - name: SDLButtonNameNavPanDownLeft
      url: Constants.html#/c:@SDLButtonNameNavPanDownLeft
    - name: SDLButtonNameNavPanDownRight
      url: Constants.html#/c:@SDLButtonNameNavPanDownRight
    - name: SDLButtonNameNavPanLeft
      url: Constants.html#/c:@SDLButtonNameNavPanLeft
    - name: SDLButtonNameNavPanRight
      url: Constants.html#/c:@SDLButtonNameNavPanRight
    - name: SDLButtonNameNavPanUp
      url: Constants.html#/c:@SDLButtonNameNavPanUp
    - name: SDLButtonNameNavPanUpLeft
      url: Constants.html#/c:@SDLButtonNameNavPanUpLeft
    - name: SDLButtonNameNavPanUpRight
      url: Constants.html#/c:@SDLButtonNameNavPanUpRight
    - name: SDLButtonNameNavRotateClockwise
      url: Constants.html#/c:@SDLButtonNameNavRotateClockwise
    - name: SDLButtonNameNavRotateCounterClockwise
      url: Constants.html#/c:@SDLButtonNameNavRotateCounterClockwise
    - name: SDLButtonNameNavTiltToggle
      url: Constants.html#/c:@SDLButtonNameNavTiltToggle
    - name: SDLButtonNameNavZoomIn
      url: Constants.html#/c:@SDLButtonNameNavZoomIn
    - name: SDLButtonNameNavZoomOut
      url: Constants.html#/c:@SDLButtonNameNavZoomOut
    - name: SDLButtonNameOk
      url: Constants.html#/c:@SDLButtonNameOk
    - name: SDLButtonNamePlayPause
      url: Constants.html#/c:@SDLButtonNamePlayPause
    - 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: SDLCapacityUnitKilograms
      url: Constants.html#/c:@SDLCapacityUnitKilograms
    - name: SDLCapacityUnitKilowatthours
      url: Constants.html#/c:@SDLCapacityUnitKilowatthours
    - name: SDLCapacityUnitLiters
      url: Constants.html#/c:@SDLCapacityUnitLiters
    - 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: SDLCharacterSetAscii
      url: Constants.html#/c:@SDLCharacterSetAscii
    - name: SDLCharacterSetCID1
      url: Constants.html#/c:@SDLCharacterSetCID1
    - name: SDLCharacterSetCID2
      url: Constants.html#/c:@SDLCharacterSetCID2
    - name: SDLCharacterSetIso88591
      url: Constants.html#/c:@SDLCharacterSetIso88591
    - name: SDLCharacterSetType2
      url: Constants.html#/c:@SDLCharacterSetType2
    - name: SDLCharacterSetType5
      url: Constants.html#/c:@SDLCharacterSetType5
    - name: SDLCharacterSetUtf8
      url: Constants.html#/c:@SDLCharacterSetUtf8
    - 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: 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: SDLDidChangePermissionsNotification
      url: Constants.html#/c:@SDLDidChangePermissionsNotification
    - name: SDLDidChangeTurnByTurnStateNotification
      url: Constants.html#/c:@SDLDidChangeTurnByTurnStateNotification
    - name: SDLDidReceiveAddCommandRequest
      url: Constants.html#/c:@SDLDidReceiveAddCommandRequest
    - name: SDLDidReceiveAddCommandResponse
      url: Constants.html#/c:@SDLDidReceiveAddCommandResponse
    - name: SDLDidReceiveAddSubMenuRequest
      url: Constants.html#/c:@SDLDidReceiveAddSubMenuRequest
    - name: SDLDidReceiveAddSubMenuResponse
      url: Constants.html#/c:@SDLDidReceiveAddSubMenuResponse
    - name: SDLDidReceiveAlertManeuverRequest
      url: Constants.html#/c:@SDLDidReceiveAlertManeuverRequest
    - name: SDLDidReceiveAlertManeuverResponse
      url: Constants.html#/c:@SDLDidReceiveAlertManeuverResponse
    - name: SDLDidReceiveAlertRequest
      url: Constants.html#/c:@SDLDidReceiveAlertRequest
    - name: SDLDidReceiveAlertResponse
      url: Constants.html#/c:@SDLDidReceiveAlertResponse
    - name: SDLDidReceiveAppServiceDataNotification
      url: Constants.html#/c:@SDLDidReceiveAppServiceDataNotification
    - 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: SDLDidReceiveButtonPressRequest
      url: Constants.html#/c:@SDLDidReceiveButtonPressRequest
    - name: SDLDidReceiveButtonPressResponse
      url: Constants.html#/c:@SDLDidReceiveButtonPressResponse
    - name: SDLDidReceiveCancelInteractionRequest
      url: Constants.html#/c:@SDLDidReceiveCancelInteractionRequest
    - name: SDLDidReceiveCancelInteractionResponse
      url: Constants.html#/c:@SDLDidReceiveCancelInteractionResponse
    - name: SDLDidReceiveChangeRegistrationRequest
      url: Constants.html#/c:@SDLDidReceiveChangeRegistrationRequest
    - name: SDLDidReceiveChangeRegistrationResponse
      url: Constants.html#/c:@SDLDidReceiveChangeRegistrationResponse
    - name: SDLDidReceiveCloseApplicationRequest
      url: Constants.html#/c:@SDLDidReceiveCloseApplicationRequest
    - name: SDLDidReceiveCloseApplicationResponse
      url: Constants.html#/c:@SDLDidReceiveCloseApplicationResponse
    - name: SDLDidReceiveCommandNotification
      url: Constants.html#/c:@SDLDidReceiveCommandNotification
    - name: SDLDidReceiveCreateInteractionChoiceSetRequest
      url: Constants.html#/c:@SDLDidReceiveCreateInteractionChoiceSetRequest
    - name: SDLDidReceiveCreateInteractionChoiceSetResponse
      url: Constants.html#/c:@SDLDidReceiveCreateInteractionChoiceSetResponse
    - name: SDLDidReceiveCreateWindowRequest
      url: Constants.html#/c:@SDLDidReceiveCreateWindowRequest
    - name: SDLDidReceiveCreateWindowResponse
      url: Constants.html#/c:@SDLDidReceiveCreateWindowResponse
    - name: SDLDidReceiveDeleteCommandRequest
      url: Constants.html#/c:@SDLDidReceiveDeleteCommandRequest
    - name: SDLDidReceiveDeleteCommandResponse
      url: Constants.html#/c:@SDLDidReceiveDeleteCommandResponse
    - name: SDLDidReceiveDeleteFileRequest
      url: Constants.html#/c:@SDLDidReceiveDeleteFileRequest
    - name: SDLDidReceiveDeleteFileResponse
      url: Constants.html#/c:@SDLDidReceiveDeleteFileResponse
    - name: SDLDidReceiveDeleteInteractionChoiceSetRequest
      url: Constants.html#/c:@SDLDidReceiveDeleteInteractionChoiceSetRequest
    - name: SDLDidReceiveDeleteInteractionChoiceSetResponse
      url: Constants.html#/c:@SDLDidReceiveDeleteInteractionChoiceSetResponse
    - name: SDLDidReceiveDeleteSubMenuRequest
      url: Constants.html#/c:@SDLDidReceiveDeleteSubMenuRequest
    - name: SDLDidReceiveDeleteSubmenuResponse
      url: Constants.html#/c:@SDLDidReceiveDeleteSubmenuResponse
    - name: SDLDidReceiveDeleteWindowRequest
      url: Constants.html#/c:@SDLDidReceiveDeleteWindowRequest
    - name: SDLDidReceiveDeleteWindowResponse
      url: Constants.html#/c:@SDLDidReceiveDeleteWindowResponse
    - name: SDLDidReceiveDiagnosticMessageRequest
      url: Constants.html#/c:@SDLDidReceiveDiagnosticMessageRequest
    - name: SDLDidReceiveDiagnosticMessageResponse
      url: Constants.html#/c:@SDLDidReceiveDiagnosticMessageResponse
    - name: SDLDidReceiveDialNumberRequest
      url: Constants.html#/c:@SDLDidReceiveDialNumberRequest
    - name: SDLDidReceiveDialNumberResponse
      url: Constants.html#/c:@SDLDidReceiveDialNumberResponse
    - name: SDLDidReceiveEncodedDataNotification
      url: Constants.html#/c:@SDLDidReceiveEncodedDataNotification
    - name: SDLDidReceiveEncodedSyncPDataRequest
      url: Constants.html#/c:@SDLDidReceiveEncodedSyncPDataRequest
    - name: SDLDidReceiveEncodedSyncPDataResponse
      url: Constants.html#/c:@SDLDidReceiveEncodedSyncPDataResponse
    - name: SDLDidReceiveEndAudioPassThruRequest
      url: Constants.html#/c:@SDLDidReceiveEndAudioPassThruRequest
    - name: SDLDidReceiveEndAudioPassThruResponse
      url: Constants.html#/c:@SDLDidReceiveEndAudioPassThruResponse
    - name: SDLDidReceiveError
      url: Constants.html#/c:@SDLDidReceiveError
    - name: SDLDidReceiveGenericResponse
      url: Constants.html#/c:@SDLDidReceiveGenericResponse
    - name: SDLDidReceiveGetAppServiceDataRequest
      url: Constants.html#/c:@SDLDidReceiveGetAppServiceDataRequest
    - name: SDLDidReceiveGetAppServiceDataResponse
      url: Constants.html#/c:@SDLDidReceiveGetAppServiceDataResponse
    - name: SDLDidReceiveGetCloudAppPropertiesRequest
      url: Constants.html#/c:@SDLDidReceiveGetCloudAppPropertiesRequest
    - name: SDLDidReceiveGetCloudAppPropertiesResponse
      url: Constants.html#/c:@SDLDidReceiveGetCloudAppPropertiesResponse
    - name: SDLDidReceiveGetDTCsRequest
      url: Constants.html#/c:@SDLDidReceiveGetDTCsRequest
    - name: SDLDidReceiveGetDTCsResponse
      url: Constants.html#/c:@SDLDidReceiveGetDTCsResponse
    - name: SDLDidReceiveGetFileRequest
      url: Constants.html#/c:@SDLDidReceiveGetFileRequest
    - name: SDLDidReceiveGetFileResponse
      url: Constants.html#/c:@SDLDidReceiveGetFileResponse
    - name: SDLDidReceiveGetInteriorVehicleDataConsentRequest
      url: Constants.html#/c:@SDLDidReceiveGetInteriorVehicleDataConsentRequest
    - name: SDLDidReceiveGetInteriorVehicleDataConsentResponse
      url: Constants.html#/c:@SDLDidReceiveGetInteriorVehicleDataConsentResponse
    - name: SDLDidReceiveGetInteriorVehicleDataRequest
      url: Constants.html#/c:@SDLDidReceiveGetInteriorVehicleDataRequest
    - name: SDLDidReceiveGetInteriorVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveGetInteriorVehicleDataResponse
    - name: SDLDidReceiveGetSystemCapabilitiesResponse
      url: Constants.html#/c:@SDLDidReceiveGetSystemCapabilitiesResponse
    - name: SDLDidReceiveGetSystemCapabilityRequest
      url: Constants.html#/c:@SDLDidReceiveGetSystemCapabilityRequest
    - name: SDLDidReceiveGetVehicleDataRequest
      url: Constants.html#/c:@SDLDidReceiveGetVehicleDataRequest
    - name: SDLDidReceiveGetVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveGetVehicleDataResponse
    - name: SDLDidReceiveGetWayPointsRequest
      url: Constants.html#/c:@SDLDidReceiveGetWayPointsRequest
    - name: SDLDidReceiveGetWaypointsResponse
      url: Constants.html#/c:@SDLDidReceiveGetWaypointsResponse
    - name: SDLDidReceiveInteriorVehicleDataNotification
      url: Constants.html#/c:@SDLDidReceiveInteriorVehicleDataNotification
    - name: SDLDidReceiveKeyboardInputNotification
      url: Constants.html#/c:@SDLDidReceiveKeyboardInputNotification
    - name: SDLDidReceiveListFilesRequest
      url: Constants.html#/c:@SDLDidReceiveListFilesRequest
    - name: SDLDidReceiveListFilesResponse
      url: Constants.html#/c:@SDLDidReceiveListFilesResponse
    - name: SDLDidReceiveLockScreenIcon
      url: Constants.html#/c:@SDLDidReceiveLockScreenIcon
    - name: SDLDidReceiveNewHashNotification
      url: Constants.html#/c:@SDLDidReceiveNewHashNotification
    - name: SDLDidReceivePerformAppServiceInteractionRequest
      url: Constants.html#/c:@SDLDidReceivePerformAppServiceInteractionRequest
    - name: SDLDidReceivePerformAppServiceInteractionResponse
      url: Constants.html#/c:@SDLDidReceivePerformAppServiceInteractionResponse
    - name: SDLDidReceivePerformAudioPassThruRequest
      url: Constants.html#/c:@SDLDidReceivePerformAudioPassThruRequest
    - name: SDLDidReceivePerformAudioPassThruResponse
      url: Constants.html#/c:@SDLDidReceivePerformAudioPassThruResponse
    - name: SDLDidReceivePerformInteractionRequest
      url: Constants.html#/c:@SDLDidReceivePerformInteractionRequest
    - name: SDLDidReceivePerformInteractionResponse
      url: Constants.html#/c:@SDLDidReceivePerformInteractionResponse
    - name: SDLDidReceivePublishAppServiceRequest
      url: Constants.html#/c:@SDLDidReceivePublishAppServiceRequest
    - name: SDLDidReceivePublishAppServiceResponse
      url: Constants.html#/c:@SDLDidReceivePublishAppServiceResponse
    - name: SDLDidReceivePutFileRequest
      url: Constants.html#/c:@SDLDidReceivePutFileRequest
    - name: SDLDidReceivePutFileResponse
      url: Constants.html#/c:@SDLDidReceivePutFileResponse
    - name: SDLDidReceiveReadDIDRequest
      url: Constants.html#/c:@SDLDidReceiveReadDIDRequest
    - name: SDLDidReceiveReadDIDResponse
      url: Constants.html#/c:@SDLDidReceiveReadDIDResponse
    - name: SDLDidReceiveRegisterAppInterfaceRequest
      url: Constants.html#/c:@SDLDidReceiveRegisterAppInterfaceRequest
    - name: SDLDidReceiveRegisterAppInterfaceResponse
      url: Constants.html#/c:@SDLDidReceiveRegisterAppInterfaceResponse
    - name: SDLDidReceiveReleaseInteriorVehicleDataModuleRequest
      url: Constants.html#/c:@SDLDidReceiveReleaseInteriorVehicleDataModuleRequest
    - name: SDLDidReceiveReleaseInteriorVehicleDataModuleResponse
      url: Constants.html#/c:@SDLDidReceiveReleaseInteriorVehicleDataModuleResponse
    - name: SDLDidReceiveRemoteControlStatusNotification
      url: Constants.html#/c:@SDLDidReceiveRemoteControlStatusNotification
    - name: SDLDidReceiveResetGlobalPropertiesRequest
      url: Constants.html#/c:@SDLDidReceiveResetGlobalPropertiesRequest
    - name: SDLDidReceiveResetGlobalPropertiesResponse
      url: Constants.html#/c:@SDLDidReceiveResetGlobalPropertiesResponse
    - name: SDLDidReceiveScrollableMessageRequest
      url: Constants.html#/c:@SDLDidReceiveScrollableMessageRequest
    - name: SDLDidReceiveScrollableMessageResponse
      url: Constants.html#/c:@SDLDidReceiveScrollableMessageResponse
    - name: SDLDidReceiveSendHapticDataRequest
      url: Constants.html#/c:@SDLDidReceiveSendHapticDataRequest
    - name: SDLDidReceiveSendHapticDataResponse
      url: Constants.html#/c:@SDLDidReceiveSendHapticDataResponse
    - name: SDLDidReceiveSendLocationRequest
      url: Constants.html#/c:@SDLDidReceiveSendLocationRequest
    - name: SDLDidReceiveSendLocationResponse
      url: Constants.html#/c:@SDLDidReceiveSendLocationResponse
    - name: SDLDidReceiveSetAppIconRequest
      url: Constants.html#/c:@SDLDidReceiveSetAppIconRequest
    - name: SDLDidReceiveSetAppIconResponse
      url: Constants.html#/c:@SDLDidReceiveSetAppIconResponse
    - name: SDLDidReceiveSetCloudAppPropertiesRequest
      url: Constants.html#/c:@SDLDidReceiveSetCloudAppPropertiesRequest
    - name: SDLDidReceiveSetCloudAppPropertiesResponse
      url: Constants.html#/c:@SDLDidReceiveSetCloudAppPropertiesResponse
    - name: SDLDidReceiveSetDisplayLayoutRequest
      url: Constants.html#/c:@SDLDidReceiveSetDisplayLayoutRequest
    - name: SDLDidReceiveSetDisplayLayoutResponse
      url: Constants.html#/c:@SDLDidReceiveSetDisplayLayoutResponse
    - name: SDLDidReceiveSetGlobalPropertiesRequest
      url: Constants.html#/c:@SDLDidReceiveSetGlobalPropertiesRequest
    - name: SDLDidReceiveSetGlobalPropertiesResponse
      url: Constants.html#/c:@SDLDidReceiveSetGlobalPropertiesResponse
    - name: SDLDidReceiveSetInteriorVehicleDataRequest
      url: Constants.html#/c:@SDLDidReceiveSetInteriorVehicleDataRequest
    - name: SDLDidReceiveSetInteriorVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveSetInteriorVehicleDataResponse
    - name: SDLDidReceiveSetMediaClockTimerRequest
      url: Constants.html#/c:@SDLDidReceiveSetMediaClockTimerRequest
    - name: SDLDidReceiveSetMediaClockTimerResponse
      url: Constants.html#/c:@SDLDidReceiveSetMediaClockTimerResponse
    - name: SDLDidReceiveShowAppMenuRequest
      url: Constants.html#/c:@SDLDidReceiveShowAppMenuRequest
    - name: SDLDidReceiveShowAppMenuResponse
      url: Constants.html#/c:@SDLDidReceiveShowAppMenuResponse
    - name: SDLDidReceiveShowConstantTBTRequest
      url: Constants.html#/c:@SDLDidReceiveShowConstantTBTRequest
    - name: SDLDidReceiveShowConstantTBTResponse
      url: Constants.html#/c:@SDLDidReceiveShowConstantTBTResponse
    - name: SDLDidReceiveShowRequest
      url: Constants.html#/c:@SDLDidReceiveShowRequest
    - name: SDLDidReceiveShowResponse
      url: Constants.html#/c:@SDLDidReceiveShowResponse
    - name: SDLDidReceiveSliderRequest
      url: Constants.html#/c:@SDLDidReceiveSliderRequest
    - name: SDLDidReceiveSliderResponse
      url: Constants.html#/c:@SDLDidReceiveSliderResponse
    - name: SDLDidReceiveSpeakRequest
      url: Constants.html#/c:@SDLDidReceiveSpeakRequest
    - name: SDLDidReceiveSpeakResponse
      url: Constants.html#/c:@SDLDidReceiveSpeakResponse
    - name: SDLDidReceiveSubscribeButtonRequest
      url: Constants.html#/c:@SDLDidReceiveSubscribeButtonRequest
    - name: SDLDidReceiveSubscribeButtonResponse
      url: Constants.html#/c:@SDLDidReceiveSubscribeButtonResponse
    - name: SDLDidReceiveSubscribeVehicleDataRequest
      url: Constants.html#/c:@SDLDidReceiveSubscribeVehicleDataRequest
    - name: SDLDidReceiveSubscribeVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveSubscribeVehicleDataResponse
    - name: SDLDidReceiveSubscribeWayPointsRequest
      url: Constants.html#/c:@SDLDidReceiveSubscribeWayPointsRequest
    - name: SDLDidReceiveSubscribeWaypointsResponse
      url: Constants.html#/c:@SDLDidReceiveSubscribeWaypointsResponse
    - name: SDLDidReceiveSubtleAlertPressedNotification
      url: Constants.html#/c:@SDLDidReceiveSubtleAlertPressedNotification
    - name: SDLDidReceiveSubtleAlertRequest
      url: Constants.html#/c:@SDLDidReceiveSubtleAlertRequest
    - name: SDLDidReceiveSubtleAlertResponse
      url: Constants.html#/c:@SDLDidReceiveSubtleAlertResponse
    - name: SDLDidReceiveSyncPDataNotification
      url: Constants.html#/c:@SDLDidReceiveSyncPDataNotification
    - name: SDLDidReceiveSyncPDataRequest
      url: Constants.html#/c:@SDLDidReceiveSyncPDataRequest
    - name: SDLDidReceiveSyncPDataResponse
      url: Constants.html#/c:@SDLDidReceiveSyncPDataResponse
    - name: SDLDidReceiveSystemCapabilityUpdatedNotification
      url: Constants.html#/c:@SDLDidReceiveSystemCapabilityUpdatedNotification
    - name: SDLDidReceiveSystemRequestNotification
      url: Constants.html#/c:@SDLDidReceiveSystemRequestNotification
    - name: SDLDidReceiveSystemRequestRequest
      url: Constants.html#/c:@SDLDidReceiveSystemRequestRequest
    - name: SDLDidReceiveSystemRequestResponse
      url: Constants.html#/c:@SDLDidReceiveSystemRequestResponse
    - name: SDLDidReceiveTouchEventNotification
      url: Constants.html#/c:@SDLDidReceiveTouchEventNotification
    - name: SDLDidReceiveUnpublishAppServiceRequest
      url: Constants.html#/c:@SDLDidReceiveUnpublishAppServiceRequest
    - name: SDLDidReceiveUnpublishAppServiceResponse
      url: Constants.html#/c:@SDLDidReceiveUnpublishAppServiceResponse
    - name: SDLDidReceiveUnregisterAppInterfaceRequest
      url: Constants.html#/c:@SDLDidReceiveUnregisterAppInterfaceRequest
    - name: SDLDidReceiveUnregisterAppInterfaceResponse
      url: Constants.html#/c:@SDLDidReceiveUnregisterAppInterfaceResponse
    - name: SDLDidReceiveUnsubscribeButtonRequest
      url: Constants.html#/c:@SDLDidReceiveUnsubscribeButtonRequest
    - name: SDLDidReceiveUnsubscribeButtonResponse
      url: Constants.html#/c:@SDLDidReceiveUnsubscribeButtonResponse
    - name: SDLDidReceiveUnsubscribeVehicleDataRequest
      url: Constants.html#/c:@SDLDidReceiveUnsubscribeVehicleDataRequest
    - name: SDLDidReceiveUnsubscribeVehicleDataResponse
      url: Constants.html#/c:@SDLDidReceiveUnsubscribeVehicleDataResponse
    - name: SDLDidReceiveUnsubscribeWayPointsRequest
      url: Constants.html#/c:@SDLDidReceiveUnsubscribeWayPointsRequest
    - name: SDLDidReceiveUnsubscribeWaypointsResponse
      url: Constants.html#/c:@SDLDidReceiveUnsubscribeWaypointsResponse
    - name: SDLDidReceiveUpdateFileNotification
      url: Constants.html#/c:@SDLDidReceiveUpdateFileNotification
    - name: SDLDidReceiveUpdateSubMenuNotification
      url: Constants.html#/c:@SDLDidReceiveUpdateSubMenuNotification
    - name: SDLDidReceiveUpdateTurnListRequest
      url: Constants.html#/c:@SDLDidReceiveUpdateTurnListRequest
    - 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: SDLDirectionLeft
      url: Constants.html#/c:@SDLDirectionLeft
    - name: SDLDirectionRight
      url: Constants.html#/c:@SDLDirectionRight
    - name: SDLDisplayModeAuto
      url: Constants.html#/c:@SDLDisplayModeAuto
    - name: SDLDisplayModeDay
      url: Constants.html#/c:@SDLDisplayModeDay
    - name: SDLDisplayModeNight
      url: Constants.html#/c:@SDLDisplayModeNight
    - 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: SDLDistanceUnitKilometers
      url: Constants.html#/c:@SDLDistanceUnitKilometers
    - name: SDLDistanceUnitMiles
      url: Constants.html#/c:@SDLDistanceUnitMiles
    - name: SDLDoorStatusTypeAjar
      url: Constants.html#/c:@SDLDoorStatusTypeAjar
    - name: SDLDoorStatusTypeClosed
      url: Constants.html#/c:@SDLDoorStatusTypeClosed
    - name: SDLDoorStatusTypeLocked
      url: Constants.html#/c:@SDLDoorStatusTypeLocked
    - name: SDLDoorStatusTypeRemoved
      url: Constants.html#/c:@SDLDoorStatusTypeRemoved
    - 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: SDLElectronicParkBrakeStatusClosed
      url: Constants.html#/c:@SDLElectronicParkBrakeStatusClosed
    - name: SDLElectronicParkBrakeStatusDriveActive
      url: Constants.html#/c:@SDLElectronicParkBrakeStatusDriveActive
    - name: SDLElectronicParkBrakeStatusFault
      url: Constants.html#/c:@SDLElectronicParkBrakeStatusFault
    - name: SDLElectronicParkBrakeStatusOpen
      url: Constants.html#/c:@SDLElectronicParkBrakeStatusOpen
    - name: SDLElectronicParkBrakeStatusTransition
      url: Constants.html#/c:@SDLElectronicParkBrakeStatusTransition
    - 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: SDLErrorDomainAlertManager
      url: Constants.html#/c:@SDLErrorDomainAlertManager
    - name: SDLErrorDomainAudioStreamManager
      url: Constants.html#/c:@SDLErrorDomainAudioStreamManager
    - name: SDLErrorDomainCacheFileManager
      url: Constants.html#/c:@SDLErrorDomainCacheFileManager
    - name: SDLErrorDomainChoiceSetManager
      url: Constants.html#/c:@SDLErrorDomainChoiceSetManager
    - name: SDLErrorDomainEncryptionLifecycleManager
      url: Constants.html#/c:@SDLErrorDomainEncryptionLifecycleManager
    - name: SDLErrorDomainFileManager
      url: Constants.html#/c:@SDLErrorDomainFileManager
    - name: SDLErrorDomainLifecycleManager
      url: Constants.html#/c:@SDLErrorDomainLifecycleManager
    - name: SDLErrorDomainMenuManager
      url: Constants.html#/c:@SDLErrorDomainMenuManager
    - name: SDLErrorDomainRPCStore
      url: Constants.html#/c:@SDLErrorDomainRPCStore
    - name: SDLErrorDomainSoftButtonManager
      url: Constants.html#/c:@SDLErrorDomainSoftButtonManager
    - name: SDLErrorDomainSubscribeButtonManager
      url: Constants.html#/c:@SDLErrorDomainSubscribeButtonManager
    - name: SDLErrorDomainSystem
      url: Constants.html#/c:@SDLErrorDomainSystem
    - name: SDLErrorDomainSystemCapabilityManager
      url: Constants.html#/c:@SDLErrorDomainSystemCapabilityManager
    - name: SDLErrorDomainTextAndGraphicManager
      url: Constants.html#/c:@SDLErrorDomainTextAndGraphicManager
    - name: SDLErrorDomainTransport
      url: Constants.html#/c:@SDLErrorDomainTransport
    - 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: SDLFuelTypeBattery
      url: Constants.html#/c:@SDLFuelTypeBattery
    - name: SDLFuelTypeCNG
      url: Constants.html#/c:@SDLFuelTypeCNG
    - name: SDLFuelTypeDiesel
      url: Constants.html#/c:@SDLFuelTypeDiesel
    - name: SDLFuelTypeGasoline
      url: Constants.html#/c:@SDLFuelTypeGasoline
    - name: SDLFuelTypeHydrogen
      url: Constants.html#/c:@SDLFuelTypeHydrogen
    - name: SDLFuelTypeLPG
      url: Constants.html#/c:@SDLFuelTypeLPG
    - 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: SDLGlobalPropertyUserLocation
      url: Constants.html#/c:@SDLGlobalPropertyUserLocation
    - 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: SDLHybridAppPreferenceBoth
      url: Constants.html#/c:@SDLHybridAppPreferenceBoth
    - name: SDLHybridAppPreferenceCloud
      url: Constants.html#/c:@SDLHybridAppPreferenceCloud
    - name: SDLHybridAppPreferenceMobile
      url: Constants.html#/c:@SDLHybridAppPreferenceMobile
    - 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: SDLImageFieldNameAlertIcon
      url: Constants.html#/c:@SDLImageFieldNameAlertIcon
    - 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: SDLImageFieldNameMenuCommandSecondaryImage
      url: Constants.html#/c:@SDLImageFieldNameMenuCommandSecondaryImage
    - name: SDLImageFieldNameMenuIcon
      url: Constants.html#/c:@SDLImageFieldNameMenuIcon
    - name: SDLImageFieldNameMenuSubMenuSecondaryImage
      url: Constants.html#/c:@SDLImageFieldNameMenuSubMenuSecondaryImage
    - name: SDLImageFieldNameSecondaryGraphic
      url: Constants.html#/c:@SDLImageFieldNameSecondaryGraphic
    - name: SDLImageFieldNameShowConstantTBTIcon
      url: Constants.html#/c:@SDLImageFieldNameShowConstantTBTIcon
    - name: SDLImageFieldNameShowConstantTBTNextTurnIcon
      url: Constants.html#/c:@SDLImageFieldNameShowConstantTBTNextTurnIcon
    - name: SDLImageFieldNameSoftButtonImage
      url: Constants.html#/c:@SDLImageFieldNameSoftButtonImage
    - name: SDLImageFieldNameSubMenuIcon
      url: Constants.html#/c:@SDLImageFieldNameSubMenuIcon
    - name: SDLImageFieldNameSubtleAlertIcon
      url: Constants.html#/c:@SDLImageFieldNameSubtleAlertIcon
    - 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: SDLKeyboardEventInputKeyMaskDisabled
      url: Constants.html#/c:@SDLKeyboardEventInputKeyMaskDisabled
    - name: SDLKeyboardEventInputKeyMaskEnabled
      url: Constants.html#/c:@SDLKeyboardEventInputKeyMaskEnabled
    - name: SDLKeyboardEventKeypress
      url: Constants.html#/c:@SDLKeyboardEventKeypress
    - name: SDLKeyboardEventSubmitted
      url: Constants.html#/c:@SDLKeyboardEventSubmitted
    - name: SDLKeyboardEventVoice
      url: Constants.html#/c:@SDLKeyboardEventVoice
    - name: SDLKeyboardInputMaskDisableInputKeyMask
      url: Constants.html#/c:@SDLKeyboardInputMaskDisableInputKeyMask
    - name: SDLKeyboardInputMaskEnableInputKeyMask
      url: Constants.html#/c:@SDLKeyboardInputMaskEnableInputKeyMask
    - name: SDLKeyboardInputMaskUserChoiceInputKeyMask
      url: Constants.html#/c:@SDLKeyboardInputMaskUserChoiceInputKeyMask
    - name: SDLKeyboardLayoutAZERTY
      url: Constants.html#/c:@SDLKeyboardLayoutAZERTY
    - name: SDLKeyboardLayoutNumeric
      url: Constants.html#/c:@SDLKeyboardLayoutNumeric
    - 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: SDLLightNameAmbientLights
      url: Constants.html#/c:@SDLLightNameAmbientLights
    - name: SDLLightNameBrakeLights
      url: Constants.html#/c:@SDLLightNameBrakeLights
    - name: SDLLightNameExteriorAllLights
      url: Constants.html#/c:@SDLLightNameExteriorAllLights
    - name: SDLLightNameExteriorFrontLights
      url: Constants.html#/c:@SDLLightNameExteriorFrontLights
    - name: SDLLightNameExteriorLeftLights
      url: Constants.html#/c:@SDLLightNameExteriorLeftLights
    - name: SDLLightNameExteriorLeftPuddleLights
      url: Constants.html#/c:@SDLLightNameExteriorLeftPuddleLights
    - name: SDLLightNameExteriorLeftSpotLights
      url: Constants.html#/c:@SDLLightNameExteriorLeftSpotLights
    - name: SDLLightNameExteriorRearCargoLights
      url: Constants.html#/c:@SDLLightNameExteriorRearCargoLights
    - name: SDLLightNameExteriorRearLights
      url: Constants.html#/c:@SDLLightNameExteriorRearLights
    - name: SDLLightNameExteriorRearTrailerLights
      url: Constants.html#/c:@SDLLightNameExteriorRearTrailerLights
    - name: SDLLightNameExteriorRearTruckBedLights
      url: Constants.html#/c:@SDLLightNameExteriorRearTruckBedLights
    - name: SDLLightNameExteriorRightLights
      url: Constants.html#/c:@SDLLightNameExteriorRightLights
    - name: SDLLightNameExteriorRightPuddleLights
      url: Constants.html#/c:@SDLLightNameExteriorRightPuddleLights
    - name: SDLLightNameExteriorRightSpotLights
      url: Constants.html#/c:@SDLLightNameExteriorRightSpotLights
    - name: SDLLightNameFogLights
      url: Constants.html#/c:@SDLLightNameFogLights
    - name: SDLLightNameFrontLeftDaytimeRunningLight
      url: Constants.html#/c:@SDLLightNameFrontLeftDaytimeRunningLight
    - name: SDLLightNameFrontLeftFogLight
      url: Constants.html#/c:@SDLLightNameFrontLeftFogLight
    - name: SDLLightNameFrontLeftHighBeam
      url: Constants.html#/c:@SDLLightNameFrontLeftHighBeam
    - name: SDLLightNameFrontLeftLowBeam
      url: Constants.html#/c:@SDLLightNameFrontLeftLowBeam
    - name: SDLLightNameFrontLeftParkingLight
      url: Constants.html#/c:@SDLLightNameFrontLeftParkingLight
    - name: SDLLightNameFrontLeftTurnLight
      url: Constants.html#/c:@SDLLightNameFrontLeftTurnLight
    - name: SDLLightNameFrontRightDaytimeRunningLight
      url: Constants.html#/c:@SDLLightNameFrontRightDaytimeRunningLight
    - name: SDLLightNameFrontRightFogLight
      url: Constants.html#/c:@SDLLightNameFrontRightFogLight
    - name: SDLLightNameFrontRightHighBeam
      url: Constants.html#/c:@SDLLightNameFrontRightHighBeam
    - name: SDLLightNameFrontRightLowBeam
      url: Constants.html#/c:@SDLLightNameFrontRightLowBeam
    - name: SDLLightNameFrontRightParkingLight
      url: Constants.html#/c:@SDLLightNameFrontRightParkingLight
    - name: SDLLightNameFrontRightTurnLight
      url: Constants.html#/c:@SDLLightNameFrontRightTurnLight
    - name: SDLLightNameHazardLights
      url: Constants.html#/c:@SDLLightNameHazardLights
    - name: SDLLightNameHighBeams
      url: Constants.html#/c:@SDLLightNameHighBeams
    - name: SDLLightNameLeftTurnLights
      url: Constants.html#/c:@SDLLightNameLeftTurnLights
    - name: SDLLightNameLowBeams
      url: Constants.html#/c:@SDLLightNameLowBeams
    - name: SDLLightNameOverHeadLights
      url: Constants.html#/c:@SDLLightNameOverHeadLights
    - name: SDLLightNameParkingLights
      url: Constants.html#/c:@SDLLightNameParkingLights
    - name: SDLLightNameReadingLights
      url: Constants.html#/c:@SDLLightNameReadingLights
    - name: SDLLightNameRearLeftBrakeLight
      url: Constants.html#/c:@SDLLightNameRearLeftBrakeLight
    - name: SDLLightNameRearLeftFogLight
      url: Constants.html#/c:@SDLLightNameRearLeftFogLight
    - name: SDLLightNameRearLeftTailLight
      url: Constants.html#/c:@SDLLightNameRearLeftTailLight
    - name: SDLLightNameRearLeftTurnLight
      url: Constants.html#/c:@SDLLightNameRearLeftTurnLight
    - name: SDLLightNameRearRegistrationPlateLight
      url: Constants.html#/c:@SDLLightNameRearRegistrationPlateLight
    - name: SDLLightNameRearReversingLights
      url: Constants.html#/c:@SDLLightNameRearReversingLights
    - name: SDLLightNameRearRightBrakeLight
      url: Constants.html#/c:@SDLLightNameRearRightBrakeLight
    - name: SDLLightNameRearRightFogLight
      url: Constants.html#/c:@SDLLightNameRearRightFogLight
    - name: SDLLightNameRearRightTailLight
      url: Constants.html#/c:@SDLLightNameRearRightTailLight
    - name: SDLLightNameRearRightTurnLight
      url: Constants.html#/c:@SDLLightNameRearRightTurnLight
    - name: SDLLightNameRightTurnLights
      url: Constants.html#/c:@SDLLightNameRightTurnLights
    - name: SDLLightNameRunningLights
      url: Constants.html#/c:@SDLLightNameRunningLights
    - name: SDLLightNameSideMarkerLights
      url: Constants.html#/c:@SDLLightNameSideMarkerLights
    - name: SDLLightNameTrunkLights
      url: Constants.html#/c:@SDLLightNameTrunkLights
    - name: SDLLightStatusInvalid
      url: Constants.html#/c:@SDLLightStatusInvalid
    - name: SDLLightStatusOFF
      url: Constants.html#/c:@SDLLightStatusOFF
    - name: SDLLightStatusOn
      url: Constants.html#/c:@SDLLightStatusOn
    - name: SDLLightStatusRampDown
      url: Constants.html#/c:@SDLLightStatusRampDown
    - name: SDLLightStatusRampUp
      url: Constants.html#/c:@SDLLightStatusRampUp
    - name: SDLLightStatusUnknown
      url: Constants.html#/c:@SDLLightStatusUnknown
    - name: SDLLockScreenManagerDidDismissLockScreenViewController
      url: Constants.html#/c:@SDLLockScreenManagerDidDismissLockScreenViewController
    - name: SDLLockScreenManagerDidPresentLockScreenViewController
      url: Constants.html#/c:@SDLLockScreenManagerDidPresentLockScreenViewController
    - name: SDLLockScreenManagerWillDismissLockScreenViewController
      url: Constants.html#/c:@SDLLockScreenManagerWillDismissLockScreenViewController
    - name: SDLLockScreenManagerWillPresentLockScreenViewController
      url: Constants.html#/c:@SDLLockScreenManagerWillPresentLockScreenViewController
    - 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: SDLMassageCushionBackBolsters
      url: Constants.html#/c:@SDLMassageCushionBackBolsters
    - name: SDLMassageCushionBottomLumbar
      url: Constants.html#/c:@SDLMassageCushionBottomLumbar
    - name: SDLMassageCushionMiddleLumbar
      url: Constants.html#/c:@SDLMassageCushionMiddleLumbar
    - name: SDLMassageCushionSeatBolsters
      url: Constants.html#/c:@SDLMassageCushionSeatBolsters
    - name: SDLMassageCushionTopLumbar
      url: Constants.html#/c:@SDLMassageCushionTopLumbar
    - name: SDLMassageModeHigh
      url: Constants.html#/c:@SDLMassageModeHigh
    - name: SDLMassageModeLow
      url: Constants.html#/c:@SDLMassageModeLow
    - name: SDLMassageModeOff
      url: Constants.html#/c:@SDLMassageModeOff
    - name: SDLMassageZoneLumbar
      url: Constants.html#/c:@SDLMassageZoneLumbar
    - name: SDLMassageZoneSeatCushion
      url: Constants.html#/c:@SDLMassageZoneSeatCushion
    - 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: SDLMediaTypeAudiobook
      url: Constants.html#/c:@SDLMediaTypeAudiobook
    - name: SDLMediaTypeMusic
      url: Constants.html#/c:@SDLMediaTypeMusic
    - name: SDLMediaTypeOther
      url: Constants.html#/c:@SDLMediaTypeOther
    - name: SDLMediaTypePodcast
      url: Constants.html#/c:@SDLMediaTypePodcast
    - name: SDLMenuLayoutList
      url: Constants.html#/c:@SDLMenuLayoutList
    - name: SDLMenuLayoutTiles
      url: Constants.html#/c:@SDLMenuLayoutTiles
    - 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: SDLModuleTypeAudio
      url: Constants.html#/c:@SDLModuleTypeAudio
    - name: SDLModuleTypeClimate
      url: Constants.html#/c:@SDLModuleTypeClimate
    - name: SDLModuleTypeHMISettings
      url: Constants.html#/c:@SDLModuleTypeHMISettings
    - name: SDLModuleTypeLight
      url: Constants.html#/c:@SDLModuleTypeLight
    - name: SDLModuleTypeRadio
      url: Constants.html#/c:@SDLModuleTypeRadio
    - name: SDLModuleTypeSeat
      url: Constants.html#/c:@SDLModuleTypeSeat
    - name: SDLNavigationActionCarShuttleTrain
      url: Constants.html#/c:@SDLNavigationActionCarShuttleTrain
    - name: SDLNavigationActionExit
      url: Constants.html#/c:@SDLNavigationActionExit
    - name: SDLNavigationActionFerry
      url: Constants.html#/c:@SDLNavigationActionFerry
    - name: SDLNavigationActionMerge
      url: Constants.html#/c:@SDLNavigationActionMerge
    - name: SDLNavigationActionStay
      url: Constants.html#/c:@SDLNavigationActionStay
    - name: SDLNavigationActionTurn
      url: Constants.html#/c:@SDLNavigationActionTurn
    - name: SDLNavigationActionWaypoint
      url: Constants.html#/c:@SDLNavigationActionWaypoint
    - name: SDLNavigationJunctionAllWayYield
      url: Constants.html#/c:@SDLNavigationJunctionAllWayYield
    - name: SDLNavigationJunctionBifurcation
      url: Constants.html#/c:@SDLNavigationJunctionBifurcation
    - name: SDLNavigationJunctionJughandle
      url: Constants.html#/c:@SDLNavigationJunctionJughandle
    - name: SDLNavigationJunctionMultiCarriageway
      url: Constants.html#/c:@SDLNavigationJunctionMultiCarriageway
    - name: SDLNavigationJunctionRegular
      url: Constants.html#/c:@SDLNavigationJunctionRegular
    - name: SDLNavigationJunctionRoundabout
      url: Constants.html#/c:@SDLNavigationJunctionRoundabout
    - name: SDLNavigationJunctionTraversableRoundabout
      url: Constants.html#/c:@SDLNavigationJunctionTraversableRoundabout
    - name: SDLNavigationJunctionTurnAround
      url: Constants.html#/c:@SDLNavigationJunctionTurnAround
    - 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: SDLPRNDLNinth
      url: Constants.html#/c:@SDLPRNDLNinth
    - 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: SDLPRNDLTenth
      url: Constants.html#/c:@SDLPRNDLTenth
    - 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: SDLPredefinedLayoutWebView
      url: Constants.html#/c:@SDLPredefinedLayoutWebView
    - 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: SDLPrimaryAudioSourceAM
      url: Constants.html#/c:@SDLPrimaryAudioSourceAM
    - name: SDLPrimaryAudioSourceBluetoothStereo
      url: Constants.html#/c:@SDLPrimaryAudioSourceBluetoothStereo
    - name: SDLPrimaryAudioSourceCD
      url: Constants.html#/c:@SDLPrimaryAudioSourceCD
    - name: SDLPrimaryAudioSourceDAB
      url: Constants.html#/c:@SDLPrimaryAudioSourceDAB
    - name: SDLPrimaryAudioSourceFM
      url: Constants.html#/c:@SDLPrimaryAudioSourceFM
    - 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: SDLPrimaryAudioSourceXM
      url: Constants.html#/c:@SDLPrimaryAudioSourceXM
    - name: SDLRPCFunctionNameAddCommand
      url: Constants.html#/c:@SDLRPCFunctionNameAddCommand
    - name: SDLRPCFunctionNameAddSubMenu
      url: Constants.html#/c:@SDLRPCFunctionNameAddSubMenu
    - name: SDLRPCFunctionNameAlert
      url: Constants.html#/c:@SDLRPCFunctionNameAlert
    - name: SDLRPCFunctionNameAlertManeuver
      url: Constants.html#/c:@SDLRPCFunctionNameAlertManeuver
    - name: SDLRPCFunctionNameButtonPress
      url: Constants.html#/c:@SDLRPCFunctionNameButtonPress
    - name: SDLRPCFunctionNameCancelInteraction
      url: Constants.html#/c:@SDLRPCFunctionNameCancelInteraction
    - name: SDLRPCFunctionNameChangeRegistration
      url: Constants.html#/c:@SDLRPCFunctionNameChangeRegistration
    - name: SDLRPCFunctionNameCloseApplication
      url: Constants.html#/c:@SDLRPCFunctionNameCloseApplication
    - name: SDLRPCFunctionNameCreateInteractionChoiceSet
      url: Constants.html#/c:@SDLRPCFunctionNameCreateInteractionChoiceSet
    - name: SDLRPCFunctionNameCreateWindow
      url: Constants.html#/c:@SDLRPCFunctionNameCreateWindow
    - name: SDLRPCFunctionNameDeleteCommand
      url: Constants.html#/c:@SDLRPCFunctionNameDeleteCommand
    - name: SDLRPCFunctionNameDeleteFile
      url: Constants.html#/c:@SDLRPCFunctionNameDeleteFile
    - name: SDLRPCFunctionNameDeleteInteractionChoiceSet
      url: Constants.html#/c:@SDLRPCFunctionNameDeleteInteractionChoiceSet
    - name: SDLRPCFunctionNameDeleteSubMenu
      url: Constants.html#/c:@SDLRPCFunctionNameDeleteSubMenu
    - name: SDLRPCFunctionNameDeleteWindow
      url: Constants.html#/c:@SDLRPCFunctionNameDeleteWindow
    - name: SDLRPCFunctionNameDiagnosticMessage
      url: Constants.html#/c:@SDLRPCFunctionNameDiagnosticMessage
    - name: SDLRPCFunctionNameDialNumber
      url: Constants.html#/c:@SDLRPCFunctionNameDialNumber
    - name: SDLRPCFunctionNameEncodedSyncPData
      url: Constants.html#/c:@SDLRPCFunctionNameEncodedSyncPData
    - name: SDLRPCFunctionNameEndAudioPassThru
      url: Constants.html#/c:@SDLRPCFunctionNameEndAudioPassThru
    - name: SDLRPCFunctionNameGenericResponse
      url: Constants.html#/c:@SDLRPCFunctionNameGenericResponse
    - name: SDLRPCFunctionNameGetAppServiceData
      url: Constants.html#/c:@SDLRPCFunctionNameGetAppServiceData
    - name: SDLRPCFunctionNameGetCloudAppProperties
      url: Constants.html#/c:@SDLRPCFunctionNameGetCloudAppProperties
    - name: SDLRPCFunctionNameGetDTCs
      url: Constants.html#/c:@SDLRPCFunctionNameGetDTCs
    - name: SDLRPCFunctionNameGetFile
      url: Constants.html#/c:@SDLRPCFunctionNameGetFile
    - name: SDLRPCFunctionNameGetInteriorVehicleData
      url: Constants.html#/c:@SDLRPCFunctionNameGetInteriorVehicleData
    - name: SDLRPCFunctionNameGetInteriorVehicleDataConsent
      url: Constants.html#/c:@SDLRPCFunctionNameGetInteriorVehicleDataConsent
    - name: SDLRPCFunctionNameGetSystemCapability
      url: Constants.html#/c:@SDLRPCFunctionNameGetSystemCapability
    - name: SDLRPCFunctionNameGetVehicleData
      url: Constants.html#/c:@SDLRPCFunctionNameGetVehicleData
    - name: SDLRPCFunctionNameGetWayPoints
      url: Constants.html#/c:@SDLRPCFunctionNameGetWayPoints
    - name: SDLRPCFunctionNameListFiles
      url: Constants.html#/c:@SDLRPCFunctionNameListFiles
    - name: SDLRPCFunctionNameOnAppCapabilityUpdated
      url: Constants.html#/c:@SDLRPCFunctionNameOnAppCapabilityUpdated
    - name: SDLRPCFunctionNameOnAppInterfaceUnregistered
      url: Constants.html#/c:@SDLRPCFunctionNameOnAppInterfaceUnregistered
    - name: SDLRPCFunctionNameOnAppServiceData
      url: Constants.html#/c:@SDLRPCFunctionNameOnAppServiceData
    - name: SDLRPCFunctionNameOnAudioPassThru
      url: Constants.html#/c:@SDLRPCFunctionNameOnAudioPassThru
    - name: SDLRPCFunctionNameOnButtonEvent
      url: Constants.html#/c:@SDLRPCFunctionNameOnButtonEvent
    - name: SDLRPCFunctionNameOnButtonPress
      url: Constants.html#/c:@SDLRPCFunctionNameOnButtonPress
    - name: SDLRPCFunctionNameOnCommand
      url: Constants.html#/c:@SDLRPCFunctionNameOnCommand
    - name: SDLRPCFunctionNameOnDriverDistraction
      url: Constants.html#/c:@SDLRPCFunctionNameOnDriverDistraction
    - name: SDLRPCFunctionNameOnEncodedSyncPData
      url: Constants.html#/c:@SDLRPCFunctionNameOnEncodedSyncPData
    - name: SDLRPCFunctionNameOnHMIStatus
      url: Constants.html#/c:@SDLRPCFunctionNameOnHMIStatus
    - name: SDLRPCFunctionNameOnHashChange
      url: Constants.html#/c:@SDLRPCFunctionNameOnHashChange
    - name: SDLRPCFunctionNameOnInteriorVehicleData
      url: Constants.html#/c:@SDLRPCFunctionNameOnInteriorVehicleData
    - name: SDLRPCFunctionNameOnKeyboardInput
      url: Constants.html#/c:@SDLRPCFunctionNameOnKeyboardInput
    - name: SDLRPCFunctionNameOnLanguageChange
      url: Constants.html#/c:@SDLRPCFunctionNameOnLanguageChange
    - name: SDLRPCFunctionNameOnLockScreenStatus
      url: Constants.html#/c:@SDLRPCFunctionNameOnLockScreenStatus
    - name: SDLRPCFunctionNameOnPermissionsChange
      url: Constants.html#/c:@SDLRPCFunctionNameOnPermissionsChange
    - name: SDLRPCFunctionNameOnRCStatus
      url: Constants.html#/c:@SDLRPCFunctionNameOnRCStatus
    - name: SDLRPCFunctionNameOnSubtleAlertPressed
      url: Constants.html#/c:@SDLRPCFunctionNameOnSubtleAlertPressed
    - name: SDLRPCFunctionNameOnSyncPData
      url: Constants.html#/c:@SDLRPCFunctionNameOnSyncPData
    - name: SDLRPCFunctionNameOnSystemCapabilityUpdated
      url: Constants.html#/c:@SDLRPCFunctionNameOnSystemCapabilityUpdated
    - name: SDLRPCFunctionNameOnSystemRequest
      url: Constants.html#/c:@SDLRPCFunctionNameOnSystemRequest
    - name: SDLRPCFunctionNameOnTBTClientState
      url: Constants.html#/c:@SDLRPCFunctionNameOnTBTClientState
    - name: SDLRPCFunctionNameOnTouchEvent
      url: Constants.html#/c:@SDLRPCFunctionNameOnTouchEvent
    - name: SDLRPCFunctionNameOnUpdateFile
      url: Constants.html#/c:@SDLRPCFunctionNameOnUpdateFile
    - name: SDLRPCFunctionNameOnUpdateSubMenu
      url: Constants.html#/c:@SDLRPCFunctionNameOnUpdateSubMenu
    - name: SDLRPCFunctionNameOnVehicleData
      url: Constants.html#/c:@SDLRPCFunctionNameOnVehicleData
    - name: SDLRPCFunctionNameOnWayPointChange
      url: Constants.html#/c:@SDLRPCFunctionNameOnWayPointChange
    - name: SDLRPCFunctionNamePerformAppServiceInteraction
      url: Constants.html#/c:@SDLRPCFunctionNamePerformAppServiceInteraction
    - name: SDLRPCFunctionNamePerformAudioPassThru
      url: Constants.html#/c:@SDLRPCFunctionNamePerformAudioPassThru
    - name: SDLRPCFunctionNamePerformInteraction
      url: Constants.html#/c:@SDLRPCFunctionNamePerformInteraction
    - name: SDLRPCFunctionNamePublishAppService
      url: Constants.html#/c:@SDLRPCFunctionNamePublishAppService
    - name: SDLRPCFunctionNamePutFile
      url: Constants.html#/c:@SDLRPCFunctionNamePutFile
    - name: SDLRPCFunctionNameReadDID
      url: Constants.html#/c:@SDLRPCFunctionNameReadDID
    - name: SDLRPCFunctionNameRegisterAppInterface
      url: Constants.html#/c:@SDLRPCFunctionNameRegisterAppInterface
    - name: SDLRPCFunctionNameReleaseInteriorVehicleDataModule
      url: Constants.html#/c:@SDLRPCFunctionNameReleaseInteriorVehicleDataModule
    - name: SDLRPCFunctionNameReserved
      url: Constants.html#/c:@SDLRPCFunctionNameReserved
    - name: SDLRPCFunctionNameResetGlobalProperties
      url: Constants.html#/c:@SDLRPCFunctionNameResetGlobalProperties
    - name: SDLRPCFunctionNameScrollableMessage
      url: Constants.html#/c:@SDLRPCFunctionNameScrollableMessage
    - name: SDLRPCFunctionNameSendHapticData
      url: Constants.html#/c:@SDLRPCFunctionNameSendHapticData
    - name: SDLRPCFunctionNameSendLocation
      url: Constants.html#/c:@SDLRPCFunctionNameSendLocation
    - name: SDLRPCFunctionNameSetAppIcon
      url: Constants.html#/c:@SDLRPCFunctionNameSetAppIcon
    - name: SDLRPCFunctionNameSetCloudAppProperties
      url: Constants.html#/c:@SDLRPCFunctionNameSetCloudAppProperties
    - name: SDLRPCFunctionNameSetDisplayLayout
      url: Constants.html#/c:@SDLRPCFunctionNameSetDisplayLayout
    - name: SDLRPCFunctionNameSetGlobalProperties
      url: Constants.html#/c:@SDLRPCFunctionNameSetGlobalProperties
    - name: SDLRPCFunctionNameSetInteriorVehicleData
      url: Constants.html#/c:@SDLRPCFunctionNameSetInteriorVehicleData
    - name: SDLRPCFunctionNameSetMediaClockTimer
      url: Constants.html#/c:@SDLRPCFunctionNameSetMediaClockTimer
    - name: SDLRPCFunctionNameShow
      url: Constants.html#/c:@SDLRPCFunctionNameShow
    - name: SDLRPCFunctionNameShowAppMenu
      url: Constants.html#/c:@SDLRPCFunctionNameShowAppMenu
    - name: SDLRPCFunctionNameShowConstantTBT
      url: Constants.html#/c:@SDLRPCFunctionNameShowConstantTBT
    - name: SDLRPCFunctionNameSlider
      url: Constants.html#/c:@SDLRPCFunctionNameSlider
    - name: SDLRPCFunctionNameSpeak
      url: Constants.html#/c:@SDLRPCFunctionNameSpeak
    - name: SDLRPCFunctionNameSubscribeButton
      url: Constants.html#/c:@SDLRPCFunctionNameSubscribeButton
    - name: SDLRPCFunctionNameSubscribeVehicleData
      url: Constants.html#/c:@SDLRPCFunctionNameSubscribeVehicleData
    - name: SDLRPCFunctionNameSubscribeWayPoints
      url: Constants.html#/c:@SDLRPCFunctionNameSubscribeWayPoints
    - name: SDLRPCFunctionNameSubtleAlert
      url: Constants.html#/c:@SDLRPCFunctionNameSubtleAlert
    - name: SDLRPCFunctionNameSyncPData
      url: Constants.html#/c:@SDLRPCFunctionNameSyncPData
    - name: SDLRPCFunctionNameSystemRequest
      url: Constants.html#/c:@SDLRPCFunctionNameSystemRequest
    - name: SDLRPCFunctionNameUnpublishAppService
      url: Constants.html#/c:@SDLRPCFunctionNameUnpublishAppService
    - name: SDLRPCFunctionNameUnregisterAppInterface
      url: Constants.html#/c:@SDLRPCFunctionNameUnregisterAppInterface
    - name: SDLRPCFunctionNameUnsubscribeButton
      url: Constants.html#/c:@SDLRPCFunctionNameUnsubscribeButton
    - name: SDLRPCFunctionNameUnsubscribeVehicleData
      url: Constants.html#/c:@SDLRPCFunctionNameUnsubscribeVehicleData
    - name: SDLRPCFunctionNameUnsubscribeWayPoints
      url: Constants.html#/c:@SDLRPCFunctionNameUnsubscribeWayPoints
    - name: SDLRPCFunctionNameUpdateTurnList
      url: Constants.html#/c:@SDLRPCFunctionNameUpdateTurnList
    - name: SDLRPCMessageTypeNameNotification
      url: Constants.html#/c:@SDLRPCMessageTypeNameNotification
    - name: SDLRPCMessageTypeNameRequest
      url: Constants.html#/c:@SDLRPCMessageTypeNameRequest
    - name: SDLRPCMessageTypeNameResponse
      url: Constants.html#/c:@SDLRPCMessageTypeNameResponse
    - name: SDLRPCServiceConnectionDidError
      url: Constants.html#/c:@SDLRPCServiceConnectionDidError
    - name: SDLRPCServiceDidConnect
      url: Constants.html#/c:@SDLRPCServiceDidConnect
    - name: SDLRPCServiceDidDisconnect
      url: Constants.html#/c:@SDLRPCServiceDidDisconnect
    - 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: SDLRequestTypeIconURL
      url: Constants.html#/c:@SDLRequestTypeIconURL
    - 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: SDLRequestTypeOEMSpecific
      url: Constants.html#/c:@SDLRequestTypeOEMSpecific
    - 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: SDLResultCorruptedData
      url: Constants.html#/c:@SDLResultCorruptedData
    - name: SDLResultDataNotAvailable
      url: Constants.html#/c:@SDLResultDataNotAvailable
    - name: SDLResultDisallowed
      url: Constants.html#/c:@SDLResultDisallowed
    - name: SDLResultDuplicateName
      url: Constants.html#/c:@SDLResultDuplicateName
    - name: SDLResultEncryptionNeeded
      url: Constants.html#/c:@SDLResultEncryptionNeeded
    - 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: SDLSeatMemoryActionTypeNone
      url: Constants.html#/c:@SDLSeatMemoryActionTypeNone
    - name: SDLSeatMemoryActionTypeRestore
      url: Constants.html#/c:@SDLSeatMemoryActionTypeRestore
    - name: SDLSeatMemoryActionTypeSave
      url: Constants.html#/c:@SDLSeatMemoryActionTypeSave
    - name: SDLSeekIndicatorTypeTime
      url: Constants.html#/c:@SDLSeekIndicatorTypeTime
    - name: SDLSeekIndicatorTypeTrack
      url: Constants.html#/c:@SDLSeekIndicatorTypeTrack
    - name: SDLServiceUpdateActivated
      url: Constants.html#/c:@SDLServiceUpdateActivated
    - name: SDLServiceUpdateDeactivated
      url: Constants.html#/c:@SDLServiceUpdateDeactivated
    - name: SDLServiceUpdateManifestUpdate
      url: Constants.html#/c:@SDLServiceUpdateManifestUpdate
    - name: SDLServiceUpdatePublished
      url: Constants.html#/c:@SDLServiceUpdatePublished
    - name: SDLServiceUpdateReasonActivated
      url: Constants.html#/c:@SDLServiceUpdateReasonActivated
    - name: SDLServiceUpdateReasonDeactivated
      url: Constants.html#/c:@SDLServiceUpdateReasonDeactivated
    - name: SDLServiceUpdateReasonManifestUpdate
      url: Constants.html#/c:@SDLServiceUpdateReasonManifestUpdate
    - name: SDLServiceUpdateReasonPublished
      url: Constants.html#/c:@SDLServiceUpdateReasonPublished
    - name: SDLServiceUpdateReasonRemoved
      url: Constants.html#/c:@SDLServiceUpdateReasonRemoved
    - name: SDLServiceUpdateRemoved
      url: Constants.html#/c:@SDLServiceUpdateRemoved
    - name: SDLSoftButtonTypeBoth
      url: Constants.html#/c:@SDLSoftButtonTypeBoth
    - name: SDLSoftButtonTypeImage
      url: Constants.html#/c:@SDLSoftButtonTypeImage
    - name: SDLSoftButtonTypeText
      url: Constants.html#/c:@SDLSoftButtonTypeText
    - name: SDLSpeechCapabilitiesFile
      url: Constants.html#/c:@SDLSpeechCapabilitiesFile
    - 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: SDLStaticIconNameAcceptCall
      url: Constants.html#/c:@SDLStaticIconNameAcceptCall
    - name: SDLStaticIconNameAddWaypoint
      url: Constants.html#/c:@SDLStaticIconNameAddWaypoint
    - name: SDLStaticIconNameAlbum
      url: Constants.html#/c:@SDLStaticIconNameAlbum
    - name: SDLStaticIconNameAmbientLighting
      url: Constants.html#/c:@SDLStaticIconNameAmbientLighting
    - name: SDLStaticIconNameArrowNorth
      url: Constants.html#/c:@SDLStaticIconNameArrowNorth
    - name: SDLStaticIconNameAudioMute
      url: Constants.html#/c:@SDLStaticIconNameAudioMute
    - name: SDLStaticIconNameAudiobookEpisode
      url: Constants.html#/c:@SDLStaticIconNameAudiobookEpisode
    - name: SDLStaticIconNameAudiobookNarrator
      url: Constants.html#/c:@SDLStaticIconNameAudiobookNarrator
    - name: SDLStaticIconNameAuxiliaryAudio
      url: Constants.html#/c:@SDLStaticIconNameAuxiliaryAudio
    - name: SDLStaticIconNameAuxillaryAudio
      url: Constants.html#/c:@SDLStaticIconNameAuxillaryAudio
    - name: SDLStaticIconNameBack
      url: Constants.html#/c:@SDLStaticIconNameBack
    - name: SDLStaticIconNameBatteryCapacity0Of5
      url: Constants.html#/c:@SDLStaticIconNameBatteryCapacity0Of5
    - name: SDLStaticIconNameBatteryCapacity1Of5
      url: Constants.html#/c:@SDLStaticIconNameBatteryCapacity1Of5
    - name: SDLStaticIconNameBatteryCapacity2Of5
      url: Constants.html#/c:@SDLStaticIconNameBatteryCapacity2Of5
    - name: SDLStaticIconNameBatteryCapacity3Of5
      url: Constants.html#/c:@SDLStaticIconNameBatteryCapacity3Of5
    - name: SDLStaticIconNameBatteryCapacity4Of5
      url: Constants.html#/c:@SDLStaticIconNameBatteryCapacity4Of5
    - name: SDLStaticIconNameBatteryCapacity5Of5
      url: Constants.html#/c:@SDLStaticIconNameBatteryCapacity5Of5
    - name: SDLStaticIconNameBluetooth1
      url: Constants.html#/c:@SDLStaticIconNameBluetooth1
    - name: SDLStaticIconNameBluetooth2
      url: Constants.html#/c:@SDLStaticIconNameBluetooth2
    - name: SDLStaticIconNameBluetoothAudioSource
      url: Constants.html#/c:@SDLStaticIconNameBluetoothAudioSource
    - name: SDLStaticIconNameBrowse
      url: Constants.html#/c:@SDLStaticIconNameBrowse
    - name: SDLStaticIconNameCellPhoneInRoamingMode
      url: Constants.html#/c:@SDLStaticIconNameCellPhoneInRoamingMode
    - name: SDLStaticIconNameCellServiceSignalStrength0Of5Bars
      url: Constants.html#/c:@SDLStaticIconNameCellServiceSignalStrength0Of5Bars
    - name: SDLStaticIconNameCellServiceSignalStrength1Of5Bars
      url: Constants.html#/c:@SDLStaticIconNameCellServiceSignalStrength1Of5Bars
    - name: SDLStaticIconNameCellServiceSignalStrength2Of5Bars
      url: Constants.html#/c:@SDLStaticIconNameCellServiceSignalStrength2Of5Bars
    - name: SDLStaticIconNameCellServiceSignalStrength3Of5Bars
      url: Constants.html#/c:@SDLStaticIconNameCellServiceSignalStrength3Of5Bars
    - name: SDLStaticIconNameCellServiceSignalStrength4Of5Bars
      url: Constants.html#/c:@SDLStaticIconNameCellServiceSignalStrength4Of5Bars
    - name: SDLStaticIconNameCellServiceSignalStrength5Of5Bars
      url: Constants.html#/c:@SDLStaticIconNameCellServiceSignalStrength5Of5Bars
    - name: SDLStaticIconNameChangeLaneLeft
      url: Constants.html#/c:@SDLStaticIconNameChangeLaneLeft
    - name: SDLStaticIconNameChangeLaneRight
      url: Constants.html#/c:@SDLStaticIconNameChangeLaneRight
    - name: SDLStaticIconNameCheckBoxChecked
      url: Constants.html#/c:@SDLStaticIconNameCheckBoxChecked
    - name: SDLStaticIconNameCheckBoxUnchecked
      url: Constants.html#/c:@SDLStaticIconNameCheckBoxUnchecked
    - name: SDLStaticIconNameClimate
      url: Constants.html#/c:@SDLStaticIconNameClimate
    - name: SDLStaticIconNameClock
      url: Constants.html#/c:@SDLStaticIconNameClock
    - name: SDLStaticIconNameCompose
      url: Constants.html#/c:@SDLStaticIconNameCompose
    - name: SDLStaticIconNameContact
      url: Constants.html#/c:@SDLStaticIconNameContact
    - name: SDLStaticIconNameContinue
      url: Constants.html#/c:@SDLStaticIconNameContinue
    - name: SDLStaticIconNameDash
      url: Constants.html#/c:@SDLStaticIconNameDash
    - name: SDLStaticIconNameDate
      url: Constants.html#/c:@SDLStaticIconNameDate
    - name: SDLStaticIconNameDelete
      url: Constants.html#/c:@SDLStaticIconNameDelete
    - name: SDLStaticIconNameDestination
      url: Constants.html#/c:@SDLStaticIconNameDestination
    - name: SDLStaticIconNameDestinationFerryAhead
      url: Constants.html#/c:@SDLStaticIconNameDestinationFerryAhead
    - name: SDLStaticIconNameEbookmark
      url: Constants.html#/c:@SDLStaticIconNameEbookmark
    - name: SDLStaticIconNameEmpty
      url: Constants.html#/c:@SDLStaticIconNameEmpty
    - name: SDLStaticIconNameEndCall
      url: Constants.html#/c:@SDLStaticIconNameEndCall
    - name: SDLStaticIconNameFail
      url: Constants.html#/c:@SDLStaticIconNameFail
    - name: SDLStaticIconNameFastForward30Secs
      url: Constants.html#/c:@SDLStaticIconNameFastForward30Secs
    - name: SDLStaticIconNameFavoriteHeart
      url: Constants.html#/c:@SDLStaticIconNameFavoriteHeart
    - name: SDLStaticIconNameFavoriteStar
      url: Constants.html#/c:@SDLStaticIconNameFavoriteStar
    - name: SDLStaticIconNameFaxNumber
      url: Constants.html#/c:@SDLStaticIconNameFaxNumber
    - name: SDLStaticIconNameFilename
      url: Constants.html#/c:@SDLStaticIconNameFilename
    - name: SDLStaticIconNameFilter
      url: Constants.html#/c:@SDLStaticIconNameFilter
    - name: SDLStaticIconNameFolder
      url: Constants.html#/c:@SDLStaticIconNameFolder
    - name: SDLStaticIconNameFuelPrices
      url: Constants.html#/c:@SDLStaticIconNameFuelPrices
    - name: SDLStaticIconNameFullMap
      url: Constants.html#/c:@SDLStaticIconNameFullMap
    - name: SDLStaticIconNameGenericPhoneNumber
      url: Constants.html#/c:@SDLStaticIconNameGenericPhoneNumber
    - name: SDLStaticIconNameGenre
      url: Constants.html#/c:@SDLStaticIconNameGenre
    - name: SDLStaticIconNameGlobalKeyboard
      url: Constants.html#/c:@SDLStaticIconNameGlobalKeyboard
    - name: SDLStaticIconNameHighwayExitInformation
      url: Constants.html#/c:@SDLStaticIconNameHighwayExitInformation
    - name: SDLStaticIconNameHomePhoneNumber
      url: Constants.html#/c:@SDLStaticIconNameHomePhoneNumber
    - name: SDLStaticIconNameHyperlink
      url: Constants.html#/c:@SDLStaticIconNameHyperlink
    - name: SDLStaticIconNameID3TagUnknown
      url: Constants.html#/c:@SDLStaticIconNameID3TagUnknown
    - name: SDLStaticIconNameIPodMediaSource
      url: Constants.html#/c:@SDLStaticIconNameIPodMediaSource
    - name: SDLStaticIconNameIncomingCalls
      url: Constants.html#/c:@SDLStaticIconNameIncomingCalls
    - name: SDLStaticIconNameInformation
      url: Constants.html#/c:@SDLStaticIconNameInformation
    - name: SDLStaticIconNameJoinCalls
      url: Constants.html#/c:@SDLStaticIconNameJoinCalls
    - name: SDLStaticIconNameKeepLeft
      url: Constants.html#/c:@SDLStaticIconNameKeepLeft
    - name: SDLStaticIconNameKeepRight
      url: Constants.html#/c:@SDLStaticIconNameKeepRight
    - name: SDLStaticIconNameKey
      url: Constants.html#/c:@SDLStaticIconNameKey
    - name: SDLStaticIconNameLeft
      url: Constants.html#/c:@SDLStaticIconNameLeft
    - name: SDLStaticIconNameLeftArrow
      url: Constants.html#/c:@SDLStaticIconNameLeftArrow
    - name: SDLStaticIconNameLeftExit
      url: Constants.html#/c:@SDLStaticIconNameLeftExit
    - name: SDLStaticIconNameLineInAudioSource
      url: Constants.html#/c:@SDLStaticIconNameLineInAudioSource
    - name: SDLStaticIconNameLocked
      url: Constants.html#/c:@SDLStaticIconNameLocked
    - name: SDLStaticIconNameMP3TagArtist
      url: Constants.html#/c:@SDLStaticIconNameMP3TagArtist
    - name: SDLStaticIconNameMediaControlLeftArrow
      url: Constants.html#/c:@SDLStaticIconNameMediaControlLeftArrow
    - name: SDLStaticIconNameMediaControlRecording
      url: Constants.html#/c:@SDLStaticIconNameMediaControlRecording
    - name: SDLStaticIconNameMediaControlRightArrow
      url: Constants.html#/c:@SDLStaticIconNameMediaControlRightArrow
    - name: SDLStaticIconNameMediaControlStop
      url: Constants.html#/c:@SDLStaticIconNameMediaControlStop
    - name: SDLStaticIconNameMicrophone
      url: Constants.html#/c:@SDLStaticIconNameMicrophone
    - name: SDLStaticIconNameMissedCalls
      url: Constants.html#/c:@SDLStaticIconNameMissedCalls
    - name: SDLStaticIconNameMobilePhoneNumber
      url: Constants.html#/c:@SDLStaticIconNameMobilePhoneNumber
    - name: SDLStaticIconNameMoveDown
      url: Constants.html#/c:@SDLStaticIconNameMoveDown
    - name: SDLStaticIconNameMoveUp
      url: Constants.html#/c:@SDLStaticIconNameMoveUp
    - name: SDLStaticIconNameNavigation
      url: Constants.html#/c:@SDLStaticIconNameNavigation
    - name: SDLStaticIconNameNavigationCurrentDirection
      url: Constants.html#/c:@SDLStaticIconNameNavigationCurrentDirection
    - name: SDLStaticIconNameNegativeRatingThumbsDown
      url: Constants.html#/c:@SDLStaticIconNameNegativeRatingThumbsDown
    - name: SDLStaticIconNameNew
      url: Constants.html#/c:@SDLStaticIconNameNew
    - name: SDLStaticIconNameOfficePhoneNumber
      url: Constants.html#/c:@SDLStaticIconNameOfficePhoneNumber
    - name: SDLStaticIconNameOpened
      url: Constants.html#/c:@SDLStaticIconNameOpened
    - name: SDLStaticIconNameOrigin
      url: Constants.html#/c:@SDLStaticIconNameOrigin
    - name: SDLStaticIconNameOutgoingCalls
      url: Constants.html#/c:@SDLStaticIconNameOutgoingCalls
    - name: SDLStaticIconNamePause
      url: Constants.html#/c:@SDLStaticIconNamePause
    - name: SDLStaticIconNamePhoneCall1
      url: Constants.html#/c:@SDLStaticIconNamePhoneCall1
    - name: SDLStaticIconNamePhoneCall2
      url: Constants.html#/c:@SDLStaticIconNamePhoneCall2
    - name: SDLStaticIconNamePhoneDevice
      url: Constants.html#/c:@SDLStaticIconNamePhoneDevice
    - name: SDLStaticIconNamePhonebook
      url: Constants.html#/c:@SDLStaticIconNamePhonebook
    - name: SDLStaticIconNamePhoto
      url: Constants.html#/c:@SDLStaticIconNamePhoto
    - name: SDLStaticIconNamePlay
      url: Constants.html#/c:@SDLStaticIconNamePlay
    - name: SDLStaticIconNamePlaylist
      url: Constants.html#/c:@SDLStaticIconNamePlaylist
    - name: SDLStaticIconNamePopUp
      url: Constants.html#/c:@SDLStaticIconNamePopUp
    - name: SDLStaticIconNamePositiveRatingThumbsUp
      url: Constants.html#/c:@SDLStaticIconNamePositiveRatingThumbsUp
    - name: SDLStaticIconNamePower
      url: Constants.html#/c:@SDLStaticIconNamePower
    - name: SDLStaticIconNamePrimaryPhone
      url: Constants.html#/c:@SDLStaticIconNamePrimaryPhone
    - name: SDLStaticIconNameRSS
      url: Constants.html#/c:@SDLStaticIconNameRSS
    - name: SDLStaticIconNameRadioButtonChecked
      url: Constants.html#/c:@SDLStaticIconNameRadioButtonChecked
    - name: SDLStaticIconNameRadioButtonUnchecked
      url: Constants.html#/c:@SDLStaticIconNameRadioButtonUnchecked
    - name: SDLStaticIconNameRecentCalls
      url: Constants.html#/c:@SDLStaticIconNameRecentCalls
    - name: SDLStaticIconNameRecentDestinations
      url: Constants.html#/c:@SDLStaticIconNameRecentDestinations
    - name: SDLStaticIconNameRedo
      url: Constants.html#/c:@SDLStaticIconNameRedo
    - name: SDLStaticIconNameRefresh
      url: Constants.html#/c:@SDLStaticIconNameRefresh
    - name: SDLStaticIconNameRemoteDiagnosticsCheckEngine
      url: Constants.html#/c:@SDLStaticIconNameRemoteDiagnosticsCheckEngine
    - name: SDLStaticIconNameRendered911Assist
      url: Constants.html#/c:@SDLStaticIconNameRendered911Assist
    - name: SDLStaticIconNameRepeat
      url: Constants.html#/c:@SDLStaticIconNameRepeat
    - name: SDLStaticIconNameRepeatPlay
      url: Constants.html#/c:@SDLStaticIconNameRepeatPlay
    - name: SDLStaticIconNameReply
      url: Constants.html#/c:@SDLStaticIconNameReply
    - name: SDLStaticIconNameRewind30Secs
      url: Constants.html#/c:@SDLStaticIconNameRewind30Secs
    - name: SDLStaticIconNameRight
      url: Constants.html#/c:@SDLStaticIconNameRight
    - name: SDLStaticIconNameRightExit
      url: Constants.html#/c:@SDLStaticIconNameRightExit
    - name: SDLStaticIconNameRingtones
      url: Constants.html#/c:@SDLStaticIconNameRingtones
    - name: SDLStaticIconNameRoundaboutLeftHand1
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutLeftHand1
    - name: SDLStaticIconNameRoundaboutLeftHand2
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutLeftHand2
    - name: SDLStaticIconNameRoundaboutLeftHand3
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutLeftHand3
    - name: SDLStaticIconNameRoundaboutLeftHand4
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutLeftHand4
    - name: SDLStaticIconNameRoundaboutLeftHand5
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutLeftHand5
    - name: SDLStaticIconNameRoundaboutLeftHand6
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutLeftHand6
    - name: SDLStaticIconNameRoundaboutLeftHand7
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutLeftHand7
    - name: SDLStaticIconNameRoundaboutRightHand1
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutRightHand1
    - name: SDLStaticIconNameRoundaboutRightHand2
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutRightHand2
    - name: SDLStaticIconNameRoundaboutRightHand3
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutRightHand3
    - name: SDLStaticIconNameRoundaboutRightHand4
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutRightHand4
    - name: SDLStaticIconNameRoundaboutRightHand5
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutRightHand5
    - name: SDLStaticIconNameRoundaboutRightHand6
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutRightHand6
    - name: SDLStaticIconNameRoundaboutRightHand7
      url: Constants.html#/c:@SDLStaticIconNameRoundaboutRightHand7
    - name: SDLStaticIconNameSettings
      url: Constants.html#/c:@SDLStaticIconNameSettings
    - name: SDLStaticIconNameSharpLeft
      url: Constants.html#/c:@SDLStaticIconNameSharpLeft
    - name: SDLStaticIconNameSharpRight
      url: Constants.html#/c:@SDLStaticIconNameSharpRight
    - name: SDLStaticIconNameShow
      url: Constants.html#/c:@SDLStaticIconNameShow
    - name: SDLStaticIconNameShufflePlay
      url: Constants.html#/c:@SDLStaticIconNameShufflePlay
    - name: SDLStaticIconNameSkiPlaces
      url: Constants.html#/c:@SDLStaticIconNameSkiPlaces
    - name: SDLStaticIconNameSlightLeft
      url: Constants.html#/c:@SDLStaticIconNameSlightLeft
    - name: SDLStaticIconNameSlightRight
      url: Constants.html#/c:@SDLStaticIconNameSlightRight
    - name: SDLStaticIconNameSmartphone
      url: Constants.html#/c:@SDLStaticIconNameSmartphone
    - name: SDLStaticIconNameSortList
      url: Constants.html#/c:@SDLStaticIconNameSortList
    - name: SDLStaticIconNameSpeedDialNumbersNumber0
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber0
    - name: SDLStaticIconNameSpeedDialNumbersNumber1
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber1
    - name: SDLStaticIconNameSpeedDialNumbersNumber2
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber2
    - name: SDLStaticIconNameSpeedDialNumbersNumber3
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber3
    - name: SDLStaticIconNameSpeedDialNumbersNumber4
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber4
    - name: SDLStaticIconNameSpeedDialNumbersNumber5
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber5
    - name: SDLStaticIconNameSpeedDialNumbersNumber6
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber6
    - name: SDLStaticIconNameSpeedDialNumbersNumber7
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber7
    - name: SDLStaticIconNameSpeedDialNumbersNumber8
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber8
    - name: SDLStaticIconNameSpeedDialNumbersNumber9
      url: Constants.html#/c:@SDLStaticIconNameSpeedDialNumbersNumber9
    - name: SDLStaticIconNameSuccess
      url: Constants.html#/c:@SDLStaticIconNameSuccess
    - name: SDLStaticIconNameTrackTitle
      url: Constants.html#/c:@SDLStaticIconNameTrackTitle
    - name: SDLStaticIconNameTrafficReport
      url: Constants.html#/c:@SDLStaticIconNameTrafficReport
    - name: SDLStaticIconNameTurnList
      url: Constants.html#/c:@SDLStaticIconNameTurnList
    - name: SDLStaticIconNameUSBMediaAudioSource
      url: Constants.html#/c:@SDLStaticIconNameUSBMediaAudioSource
    - name: SDLStaticIconNameUTurnLeftTraffic
      url: Constants.html#/c:@SDLStaticIconNameUTurnLeftTraffic
    - name: SDLStaticIconNameUTurnRightTraffic
      url: Constants.html#/c:@SDLStaticIconNameUTurnRightTraffic
    - name: SDLStaticIconNameUndo
      url: Constants.html#/c:@SDLStaticIconNameUndo
    - name: SDLStaticIconNameUnlocked
      url: Constants.html#/c:@SDLStaticIconNameUnlocked
    - name: SDLStaticIconNameVoiceControlScrollbarListItemNo1
      url: Constants.html#/c:@SDLStaticIconNameVoiceControlScrollbarListItemNo1
    - name: SDLStaticIconNameVoiceControlScrollbarListItemNo2
      url: Constants.html#/c:@SDLStaticIconNameVoiceControlScrollbarListItemNo2
    - name: SDLStaticIconNameVoiceControlScrollbarListItemNo3
      url: Constants.html#/c:@SDLStaticIconNameVoiceControlScrollbarListItemNo3
    - name: SDLStaticIconNameVoiceControlScrollbarListItemNo4
      url: Constants.html#/c:@SDLStaticIconNameVoiceControlScrollbarListItemNo4
    - name: SDLStaticIconNameVoiceRecognitionFailed
      url: Constants.html#/c:@SDLStaticIconNameVoiceRecognitionFailed
    - name: SDLStaticIconNameVoiceRecognitionPause
      url: Constants.html#/c:@SDLStaticIconNameVoiceRecognitionPause
    - name: SDLStaticIconNameVoiceRecognitionSuccessful
      url: Constants.html#/c:@SDLStaticIconNameVoiceRecognitionSuccessful
    - name: SDLStaticIconNameVoiceRecognitionSystemActive
      url: Constants.html#/c:@SDLStaticIconNameVoiceRecognitionSystemActive
    - name: SDLStaticIconNameVoiceRecognitionSystemListening
      url: Constants.html#/c:@SDLStaticIconNameVoiceRecognitionSystemListening
    - name: SDLStaticIconNameVoiceRecognitionTryAgain
      url: Constants.html#/c:@SDLStaticIconNameVoiceRecognitionTryAgain
    - name: SDLStaticIconNameWarning
      url: Constants.html#/c:@SDLStaticIconNameWarning
    - name: SDLStaticIconNameWeather
      url: Constants.html#/c:@SDLStaticIconNameWeather
    - name: SDLStaticIconNameWifiFull
      url: Constants.html#/c:@SDLStaticIconNameWifiFull
    - name: SDLStaticIconNameZoomIn
      url: Constants.html#/c:@SDLStaticIconNameZoomIn
    - name: SDLStaticIconNameZoomOut
      url: Constants.html#/c:@SDLStaticIconNameZoomOut
    - name: SDLSupportedSeatDriver
      url: Constants.html#/c:@SDLSupportedSeatDriver
    - name: SDLSupportedSeatFrontPassenger
      url: Constants.html#/c:@SDLSupportedSeatFrontPassenger
    - name: SDLSystemActionDefaultAction
      url: Constants.html#/c:@SDLSystemActionDefaultAction
    - name: SDLSystemActionKeepContext
      url: Constants.html#/c:@SDLSystemActionKeepContext
    - name: SDLSystemActionStealFocus
      url: Constants.html#/c:@SDLSystemActionStealFocus
    - name: SDLSystemCapabilityTypeAppServices
      url: Constants.html#/c:@SDLSystemCapabilityTypeAppServices
    - name: SDLSystemCapabilityTypeDisplays
      url: Constants.html#/c:@SDLSystemCapabilityTypeDisplays
    - name: SDLSystemCapabilityTypeDriverDistraction
      url: Constants.html#/c:@SDLSystemCapabilityTypeDriverDistraction
    - name: SDLSystemCapabilityTypeNavigation
      url: Constants.html#/c:@SDLSystemCapabilityTypeNavigation
    - name: SDLSystemCapabilityTypePhoneCall
      url: Constants.html#/c:@SDLSystemCapabilityTypePhoneCall
    - name: SDLSystemCapabilityTypeRemoteControl
      url: Constants.html#/c:@SDLSystemCapabilityTypeRemoteControl
    - name: SDLSystemCapabilityTypeSeatLocation
      url: Constants.html#/c:@SDLSystemCapabilityTypeSeatLocation
    - 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: SDLTPMSLow
      url: Constants.html#/c:@SDLTPMSLow
    - name: SDLTPMSNotTrained
      url: Constants.html#/c:@SDLTPMSNotTrained
    - name: SDLTPMSSensorFault
      url: Constants.html#/c:@SDLTPMSSensorFault
    - name: SDLTPMSSystemActive
      url: Constants.html#/c:@SDLTPMSSystemActive
    - name: SDLTPMSSystemFault
      url: Constants.html#/c:@SDLTPMSSystemFault
    - name: SDLTPMSTrain
      url: Constants.html#/c:@SDLTPMSTrain
    - name: SDLTPMSTrainingComplete
      url: Constants.html#/c:@SDLTPMSTrainingComplete
    - name: SDLTPMSUnknown
      url: Constants.html#/c:@SDLTPMSUnknown
    - 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: SDLTextFieldNameMenuCommandSecondaryText
      url: Constants.html#/c:@SDLTextFieldNameMenuCommandSecondaryText
    - name: SDLTextFieldNameMenuCommandTertiaryText
      url: Constants.html#/c:@SDLTextFieldNameMenuCommandTertiaryText
    - name: SDLTextFieldNameMenuName
      url: Constants.html#/c:@SDLTextFieldNameMenuName
    - name: SDLTextFieldNameMenuSubMenuSecondaryText
      url: Constants.html#/c:@SDLTextFieldNameMenuSubMenuSecondaryText
    - name: SDLTextFieldNameMenuSubMenuTertiaryText
      url: Constants.html#/c:@SDLTextFieldNameMenuSubMenuTertiaryText
    - 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: SDLTextFieldNameSubtleAlertSoftButtonText
      url: Constants.html#/c:@SDLTextFieldNameSubtleAlertSoftButtonText
    - name: SDLTextFieldNameSubtleAlertText1
      url: Constants.html#/c:@SDLTextFieldNameSubtleAlertText1
    - name: SDLTextFieldNameSubtleAlertText2
      url: Constants.html#/c:@SDLTextFieldNameSubtleAlertText2
    - name: SDLTextFieldNameTemplateTitle
      url: Constants.html#/c:@SDLTextFieldNameTemplateTitle
    - name: SDLTextFieldNameTertiaryText
      url: Constants.html#/c:@SDLTextFieldNameTertiaryText
    - name: SDLTextFieldNameTimeToDestination
      url: Constants.html#/c:@SDLTextFieldNameTimeToDestination
    - name: SDLTextFieldNameTotalDistance
      url: Constants.html#/c:@SDLTextFieldNameTotalDistance
    - name: SDLTextFieldNameTurnText
      url: Constants.html#/c:@SDLTextFieldNameTurnText
    - 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: SDLTransmissionTypeAutomatic
      url: Constants.html#/c:@SDLTransmissionTypeAutomatic
    - name: SDLTransmissionTypeContinuouslyVariable
      url: Constants.html#/c:@SDLTransmissionTypeContinuouslyVariable
    - name: SDLTransmissionTypeDirectDrive
      url: Constants.html#/c:@SDLTransmissionTypeDirectDrive
    - name: SDLTransmissionTypeDualClutch
      url: Constants.html#/c:@SDLTransmissionTypeDualClutch
    - name: SDLTransmissionTypeElectricVariable
      url: Constants.html#/c:@SDLTransmissionTypeElectricVariable
    - name: SDLTransmissionTypeInfinitelyVariable
      url: Constants.html#/c:@SDLTransmissionTypeInfinitelyVariable
    - name: SDLTransmissionTypeManual
      url: Constants.html#/c:@SDLTransmissionTypeManual
    - name: SDLTransmissionTypeSemiAutomatic
      url: Constants.html#/c:@SDLTransmissionTypeSemiAutomatic
    - name: SDLTransportConnectError
      url: Constants.html#/c:@SDLTransportConnectError
    - 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: SDLTurnSignalBoth
      url: Constants.html#/c:@SDLTurnSignalBoth
    - name: SDLTurnSignalLeft
      url: Constants.html#/c:@SDLTurnSignalLeft
    - name: SDLTurnSignalOff
      url: Constants.html#/c:@SDLTurnSignalOff
    - name: SDLTurnSignalRight
      url: Constants.html#/c:@SDLTurnSignalRight
    - 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: SDLVehicleDataTypeCloudAppVehicleID
      url: Constants.html#/c:@SDLVehicleDataTypeCloudAppVehicleID
    - name: SDLVehicleDataTypeClusterModeStatus
      url: Constants.html#/c:@SDLVehicleDataTypeClusterModeStatus
    - name: SDLVehicleDataTypeDeviceStatus
      url: Constants.html#/c:@SDLVehicleDataTypeDeviceStatus
    - name: SDLVehicleDataTypeECallInfo
      url: Constants.html#/c:@SDLVehicleDataTypeECallInfo
    - name: SDLVehicleDataTypeElectronicParkBrakeStatus
      url: Constants.html#/c:@SDLVehicleDataTypeElectronicParkBrakeStatus
    - name: SDLVehicleDataTypeEmergencyEvent
      url: Constants.html#/c:@SDLVehicleDataTypeEmergencyEvent
    - name: SDLVehicleDataTypeEngineOilLife
      url: Constants.html#/c:@SDLVehicleDataTypeEngineOilLife
    - 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: SDLVehicleDataTypeFuelRange
      url: Constants.html#/c:@SDLVehicleDataTypeFuelRange
    - name: SDLVehicleDataTypeGPS
      url: Constants.html#/c:@SDLVehicleDataTypeGPS
    - name: SDLVehicleDataTypeGearStatus
      url: Constants.html#/c:@SDLVehicleDataTypeGearStatus
    - name: SDLVehicleDataTypeHandsOffSteering
      url: Constants.html#/c:@SDLVehicleDataTypeHandsOffSteering
    - name: SDLVehicleDataTypeHeadlampStatus
      url: Constants.html#/c:@SDLVehicleDataTypeHeadlampStatus
    - name: SDLVehicleDataTypeMyKey
      url: Constants.html#/c:@SDLVehicleDataTypeMyKey
    - name: SDLVehicleDataTypeOEMVehicleDataType
      url: Constants.html#/c:@SDLVehicleDataTypeOEMVehicleDataType
    - name: SDLVehicleDataTypeOdometer
      url: Constants.html#/c:@SDLVehicleDataTypeOdometer
    - name: SDLVehicleDataTypePRNDL
      url: Constants.html#/c:@SDLVehicleDataTypePRNDL
    - name: SDLVehicleDataTypeRPM
      url: Constants.html#/c:@SDLVehicleDataTypeRPM
    - name: SDLVehicleDataTypeSeatOccupancy
      url: Constants.html#/c:@SDLVehicleDataTypeSeatOccupancy
    - name: SDLVehicleDataTypeSpeed
      url: Constants.html#/c:@SDLVehicleDataTypeSpeed
    - name: SDLVehicleDataTypeStabilityControlsStatus
      url: Constants.html#/c:@SDLVehicleDataTypeStabilityControlsStatus
    - name: SDLVehicleDataTypeSteeringWheel
      url: Constants.html#/c:@SDLVehicleDataTypeSteeringWheel
    - name: SDLVehicleDataTypeTirePressure
      url: Constants.html#/c:@SDLVehicleDataTypeTirePressure
    - name: SDLVehicleDataTypeTurnSignal
      url: Constants.html#/c:@SDLVehicleDataTypeTurnSignal
    - name: SDLVehicleDataTypeVIN
      url: Constants.html#/c:@SDLVehicleDataTypeVIN
    - name: SDLVehicleDataTypeVehicleDataClimateData
      url: Constants.html#/c:@SDLVehicleDataTypeVehicleDataClimateData
    - name: SDLVehicleDataTypeWindowStatus
      url: Constants.html#/c:@SDLVehicleDataTypeWindowStatus
    - 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: SDLVideoStreamManagerStateReady
      url: Constants.html#/c:@SDLVideoStreamManagerStateReady
    - name: SDLVideoStreamManagerStateShuttingDown
      url: Constants.html#/c:@SDLVideoStreamManagerStateShuttingDown
    - name: SDLVideoStreamManagerStateStarting
      url: Constants.html#/c:@SDLVideoStreamManagerStateStarting
    - name: SDLVideoStreamManagerStateStopped
      url: Constants.html#/c:@SDLVideoStreamManagerStateStopped
    - name: SDLVideoStreamManagerStateSuspended
      url: Constants.html#/c:@SDLVideoStreamManagerStateSuspended
    - name: SDLVideoStreamSuspendedNotification
      url: Constants.html#/c:@SDLVideoStreamSuspendedNotification
    - 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: SDLVideoStreamingStateNotStreamable
      url: Constants.html#/c:@SDLVideoStreamingStateNotStreamable
    - name: SDLVideoStreamingStateStreamable
      url: Constants.html#/c:@SDLVideoStreamingStateStreamable
    - 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: SDLWindowTypeMain
      url: Constants.html#/c:@SDLWindowTypeMain
    - name: SDLWindowTypeWidget
      url: Constants.html#/c:@SDLWindowTypeWidget
    - 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: Enumerations
  sub_nav:
    - name: SDLAlertManagerError
      url: Enums/SDLAlertManagerError.html
    - name: SDLArtworkImageFormat
      url: Enums/SDLArtworkImageFormat.html
    - name: SDLAudioStreamManagerError
      url: Enums/SDLAudioStreamManagerError.html
    - name: SDLCacheFileManagerError
      url: Enums/SDLCacheFileManagerError.html
    - name: SDLCarWindowRenderingType
      url: Enums/SDLCarWindowRenderingType.html
    - name: SDLChoiceSetLayout
      url: Enums/SDLChoiceSetLayout.html
    - name: SDLChoiceSetManagerError
      url: Enums/SDLChoiceSetManagerError.html
    - name: SDLDynamicMenuUpdatesMode
      url: Enums/SDLDynamicMenuUpdatesMode.html
    - name: SDLEncryptionLifecycleManagerError
      url: Enums/SDLEncryptionLifecycleManagerError.html
    - name: SDLFileManagerError
      url: Enums/SDLFileManagerError.html
    - name: SDLFrameInfo
      url: Enums/SDLFrameInfo.html
    - name: SDLFrameType
      url: Enums/SDLFrameType.html
    - name: SDLLockScreenConfigurationDisplayMode
      url: Enums/SDLLockScreenConfigurationDisplayMode.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: SDLMenuManagerError
      url: Enums/SDLMenuManagerError.html
    - name: SDLPermissionGroupStatus
      url: Enums/SDLPermissionGroupStatus.html
    - name: SDLPermissionGroupType
      url: Enums/SDLPermissionGroupType.html
    - name: SDLPredefinedWindows
      url: Enums/SDLPredefinedWindows.html
    - name: SDLRPCMessageType
      url: Enums/SDLRPCMessageType.html
    - name: SDLRPCStoreError
      url: Enums/SDLRPCStoreError.html
    - name: SDLSecondaryTransports
      url: Enums/SDLSecondaryTransports.html
    - name: SDLServiceType
      url: Enums/SDLServiceType.html
    - name: SDLSoftButtonManagerError
      url: Enums/SDLSoftButtonManagerError.html
    - name: SDLStreamingEncryptionFlag
      url: Enums/SDLStreamingEncryptionFlag.html
    - name: SDLSubscribeButtonManagerError
      url: Enums/SDLSubscribeButtonManagerError.html
    - name: SDLSystemCapabilityManagerError
      url: Enums/SDLSystemCapabilityManagerError.html
    - name: SDLSystemError
      url: Enums/SDLSystemError.html
    - name: SDLTextAndGraphicManagerError
      url: Enums/SDLTextAndGraphicManagerError.html
    - name: SDLTouchIdentifier
      url: Enums/SDLTouchIdentifier.html
    - name: SDLTransportError
      url: Enums/SDLTransportError.html
- name: Protocols
  sub_nav:
    - name: SDLAudioStreamManagerDelegate
      url: Protocols/SDLAudioStreamManagerDelegate.html
    - name: SDLBool
      url: Protocols.html#/c:objc(pl)SDLBool
    - name: SDLChoiceSetDelegate
      url: Protocols/SDLChoiceSetDelegate.html
    - name: SDLFloat
      url: Protocols.html#/c:objc(pl)SDLFloat
    - name: SDLInt
      url: Protocols.html#/c:objc(pl)SDLInt
    - name: SDLKeyboardDelegate
      url: Protocols/SDLKeyboardDelegate.html
    - name: SDLLogTarget
      url: Protocols/SDLLogTarget.html
    - name: SDLManagerDelegate
      url: Protocols/SDLManagerDelegate.html
    - name: SDLSecurityType
      url: Protocols/SDLSecurityType.html
    - name: SDLServiceEncryptionDelegate
      url: Protocols/SDLServiceEncryptionDelegate.html
    - name: SDLStreamingAudioManagerType
      url: Protocols/SDLStreamingAudioManagerType.html
    - name: SDLStreamingMediaManagerDataSource
      url: Protocols/SDLStreamingMediaManagerDataSource.html
    - name: SDLStreamingVideoDelegate
      url: Protocols/SDLStreamingVideoDelegate.html
    - name: SDLTouchManagerDelegate
      url: Protocols/SDLTouchManagerDelegate.html
    - name: SDLUInt
      url: Protocols.html#/c:objc(pl)SDLUInt
- name: Type Definitions
  sub_nav:
    - name: SDLAlertCanceledHandler
      url: Type%20Definitions.html#/c:SDLAlertView.h@T@SDLAlertCanceledHandler
    - name: SDLAmbientLightStatus
      url: Type%20Definitions.html#/c:SDLAmbientLightStatus.h@T@SDLAmbientLightStatus
    - name: SDLAppCapabilityType
      url: Type%20Definitions.html#/c:SDLAppCapabilityType.h@T@SDLAppCapabilityType
    - name: SDLAppHMIType
      url: Type%20Definitions.html#/c:SDLAppHMIType.h@T@SDLAppHMIType
    - name: SDLAppInterfaceUnregisteredReason
      url: Type%20Definitions.html#/c:SDLAppInterfaceUnregisteredReason.h@T@SDLAppInterfaceUnregisteredReason
    - name: SDLAppServiceType
      url: Type%20Definitions.html#/c:SDLAppServiceType.h@T@SDLAppServiceType
    - name: SDLAppState
      url: Type%20Definitions.html#/c:SDLStreamingMediaManagerConstants.h@T@SDLAppState
    - name: SDLAudioPassThruHandler
      url: Type%20Definitions.html#/c:SDLNotificationConstants.h@T@SDLAudioPassThruHandler
    - name: SDLAudioStreamManagerState
      url: Type%20Definitions.html#/c:SDLStreamingMediaManagerConstants.h@T@SDLAudioStreamManagerState
    - name: SDLAudioStreamingIndicator
      url: Type%20Definitions.html#/c:SDLAudioStreamingIndicator.h@T@SDLAudioStreamingIndicator
    - name: SDLAudioStreamingState
      url: Type%20Definitions.html#/c:SDLAudioStreamingState.h@T@SDLAudioStreamingState
    - name: SDLAudioType
      url: Type%20Definitions.html#/c:SDLAudioType.h@T@SDLAudioType
    - name: SDLBitsPerSample
      url: Type%20Definitions.html#/c:SDLBitsPerSample.h@T@SDLBitsPerSample
    - name: SDLButtonEventMode
      url: Type%20Definitions.html#/c:SDLButtonEventMode.h@T@SDLButtonEventMode
    - name: SDLButtonName
      url: Type%20Definitions.html#/c:SDLButtonName.h@T@SDLButtonName
    - name: SDLButtonPressMode
      url: Type%20Definitions.html#/c:SDLButtonPressMode.h@T@SDLButtonPressMode
    - name: SDLCapabilityUpdateHandler
      url: Type%20Definitions.html#/c:SDLSystemCapabilityManager.h@T@SDLCapabilityUpdateHandler
    - name: SDLCapabilityUpdateWithErrorHandler
      url: Type%20Definitions.html#/c:SDLSystemCapabilityManager.h@T@SDLCapabilityUpdateWithErrorHandler
    - name: SDLCapacityUnit
      url: Type%20Definitions.html#/c:SDLCapacityUnit.h@T@SDLCapacityUnit
    - name: SDLCarModeStatus
      url: Type%20Definitions.html#/c:SDLCarModeStatus.h@T@SDLCarModeStatus
    - name: SDLCharacterSet
      url: Type%20Definitions.html#/c:SDLCharacterSet.h@T@SDLCharacterSet
    - name: SDLChoiceSetCanceledHandler
      url: Type%20Definitions.html#/c:SDLChoiceSet.h@T@SDLChoiceSetCanceledHandler
    - name: SDLCompassDirection
      url: Type%20Definitions.html#/c:SDLCompassDirection.h@T@SDLCompassDirection
    - name: SDLComponentVolumeStatus
      url: Type%20Definitions.html#/c:SDLComponentVolumeStatus.h@T@SDLComponentVolumeStatus
    - name: SDLDefrostZone
      url: Type%20Definitions.html#/c:SDLDefrostZone.h@T@SDLDefrostZone
    - name: SDLDeliveryMode
      url: Type%20Definitions.html#/c:SDLDeliveryMode.h@T@SDLDeliveryMode
    - name: SDLDeviceLevelStatus
      url: Type%20Definitions.html#/c:SDLDeviceLevelStatus.h@T@SDLDeviceLevelStatus
    - name: SDLDimension
      url: Type%20Definitions.html#/c:SDLDimension.h@T@SDLDimension
    - name: SDLDirection
      url: Type%20Definitions.html#/c:SDLDirection.h@T@SDLDirection
    - name: SDLDisplayMode
      url: Type%20Definitions.html#/c:SDLDisplayMode.h@T@SDLDisplayMode
    - name: SDLDisplayType
      url: Type%20Definitions.html#/c:SDLDisplayType.h@T@SDLDisplayType
    - name: SDLDistanceUnit
      url: Type%20Definitions.html#/c:SDLDistanceUnit.h@T@SDLDistanceUnit
    - name: SDLDoorStatusType
      url: Type%20Definitions.html#/c:SDLDoorStatusType.h@T@SDLDoorStatusType
    - name: SDLDriverDistractionState
      url: Type%20Definitions.html#/c:SDLDriverDistractionState.h@T@SDLDriverDistractionState
    - name: SDLECallConfirmationStatus
      url: Type%20Definitions.html#/c:SDLECallConfirmationStatus.h@T@SDLECallConfirmationStatus
    - name: SDLElectronicParkBrakeStatus
      url: Type%20Definitions.html#/c:SDLElectronicParkBrakeStatus.h@T@SDLElectronicParkBrakeStatus
    - name: SDLEmergencyEventType
      url: Type%20Definitions.html#/c:SDLEmergencyEventType.h@T@SDLEmergencyEventType
    - name: SDLEnum
      url: Type%20Definitions.html#/c:SDLEnum.h@T@SDLEnum
    - name: SDLErrorDomain
      url: Type%20Definitions.html#/c:SDLErrorConstants.h@T@SDLErrorDomain
    - name: SDLFileManagerDeleteCompletionHandler
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerDeleteCompletionHandler
    - name: SDLFileManagerListFilesCompletionHandler
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerListFilesCompletionHandler
    - name: SDLFileManagerMultiDeleteCompletionHandler
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiDeleteCompletionHandler
    - name: SDLFileManagerMultiUploadArtworkCompletionHandler
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiUploadArtworkCompletionHandler
    - name: SDLFileManagerMultiUploadArtworkProgressHandler
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiUploadArtworkProgressHandler
    - name: SDLFileManagerMultiUploadCompletionHandler
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiUploadCompletionHandler
    - name: SDLFileManagerMultiUploadProgressHandler
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerMultiUploadProgressHandler
    - name: SDLFileManagerStartupCompletionHandler
      url: Type%20Definitions.html#/c:SDLFileManager.h@T@SDLFileManagerStartupCompletionHandler
    - name: SDLFileManagerUploadArtworkCompletionHandler
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerUploadArtworkCompletionHandler
    - name: SDLFileManagerUploadCompletionHandler
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileManagerUploadCompletionHandler
    - name: SDLFileName
      url: Type%20Definitions.html#/c:SDLFileManagerConstants.h@T@SDLFileName
    - name: SDLFileType
      url: Type%20Definitions.html#/c:SDLFileType.h@T@SDLFileType
    - name: SDLFuelCutoffStatus
      url: Type%20Definitions.html#/c:SDLFuelCutoffStatus.h@T@SDLFuelCutoffStatus
    - name: SDLFuelType
      url: Type%20Definitions.html#/c:SDLFuelType.h@T@SDLFuelType
    - name: SDLGlobalProperty
      url: Type%20Definitions.html#/c:SDLGlobalProperty.h@T@SDLGlobalProperty
    - name: SDLHMILevel
      url: Type%20Definitions.html#/c:SDLHMILevel.h@T@SDLHMILevel
    - name: SDLHMIZoneCapabilities
      url: Type%20Definitions.html#/c:SDLHMIZoneCapabilities.h@T@SDLHMIZoneCapabilities
    - name: SDLHybridAppPreference
      url: Type%20Definitions.html#/c:SDLHybridAppPreference.h@T@SDLHybridAppPreference
    - name: SDLIgnitionStableStatus
      url: Type%20Definitions.html#/c:SDLIgnitionStableStatus.h@T@SDLIgnitionStableStatus
    - name: SDLIgnitionStatus
      url: Type%20Definitions.html#/c:SDLIgnitionStatus.h@T@SDLIgnitionStatus
    - name: SDLImageFieldName
      url: Type%20Definitions.html#/c:SDLImageFieldName.h@T@SDLImageFieldName
    - name: SDLImageType
      url: Type%20Definitions.html#/c:SDLImageType.h@T@SDLImageType
    - name: SDLInteractionMode
      url: Type%20Definitions.html#/c:SDLInteractionMode.h@T@SDLInteractionMode
    - name: SDLKeyboardAutoCompleteResultsHandler
      url: Type%20Definitions.html#/c:SDLKeyboardDelegate.h@T@SDLKeyboardAutoCompleteResultsHandler
    - name: SDLKeyboardAutocompleteCompletionHandler
      url: Type%20Definitions.html#/c:SDLKeyboardDelegate.h@T@SDLKeyboardAutocompleteCompletionHandler
    - name: SDLKeyboardCharacterSetCompletionHandler
      url: Type%20Definitions.html#/c:SDLKeyboardDelegate.h@T@SDLKeyboardCharacterSetCompletionHandler
    - name: SDLKeyboardEvent
      url: Type%20Definitions.html#/c:SDLKeyboardEvent.h@T@SDLKeyboardEvent
    - name: SDLKeyboardInputMask
      url: Type%20Definitions.html#/c:SDLKeyboardInputMask.h@T@SDLKeyboardInputMask
    - name: SDLKeyboardLayout
      url: Type%20Definitions.html#/c:SDLKeyboardLayout.h@T@SDLKeyboardLayout
    - name: SDLKeypressMode
      url: Type%20Definitions.html#/c:SDLKeypressMode.h@T@SDLKeypressMode
    - name: SDLLanguage
      url: Type%20Definitions.html#/c:SDLLanguage.h@T@SDLLanguage
    - name: SDLLayoutMode
      url: Type%20Definitions.html#/c:SDLLayoutMode.h@T@SDLLayoutMode
    - name: SDLLightName
      url: Type%20Definitions.html#/c:SDLLightName.h@T@SDLLightName
    - name: SDLLightStatus
      url: Type%20Definitions.html#/c:SDLLightStatus.h@T@SDLLightStatus
    - name: SDLLogFilterBlock
      url: Type%20Definitions.html#/c:SDLLogConstants.h@T@SDLLogFilterBlock
    - name: SDLMaintenanceModeStatus
      url: Type%20Definitions.html#/c:SDLMaintenanceModeStatus.h@T@SDLMaintenanceModeStatus
    - name: SDLManagerReadyBlock
      url: Type%20Definitions.html#/c:SDLManager.h@T@SDLManagerReadyBlock
    - name: SDLMassageCushion
      url: Type%20Definitions.html#/c:SDLMassageCushion.h@T@SDLMassageCushion
    - name: SDLMassageMode
      url: Type%20Definitions.html#/c:SDLMassageMode.h@T@SDLMassageMode
    - name: SDLMassageZone
      url: Type%20Definitions.html#/c:SDLMassageZone.h@T@SDLMassageZone
    - name: SDLMediaClockFormat
      url: Type%20Definitions.html#/c:SDLMediaClockFormat.h@T@SDLMediaClockFormat
    - name: SDLMediaType
      url: Type%20Definitions.html#/c:SDLMediaType.h@T@SDLMediaType
    - name: SDLMenuCellSelectionHandler
      url: Type%20Definitions.html#/c:SDLMenuCell.h@T@SDLMenuCellSelectionHandler
    - name: SDLMenuLayout
      url: Type%20Definitions.html#/c:SDLMenuLayout.h@T@SDLMenuLayout
    - name: SDLMetadataType
      url: Type%20Definitions.html#/c:SDLMetadataType.h@T@SDLMetadataType
    - name: SDLModuleType
      url: Type%20Definitions.html#/c:SDLModuleType.h@T@SDLModuleType
    - name: SDLMultipleAsyncRequestProgressHandler
      url: Type%20Definitions.html#/c:SDLNotificationConstants.h@T@SDLMultipleAsyncRequestProgressHandler
    - name: SDLMultipleRequestCompletionHandler
      url: Type%20Definitions.html#/c:SDLNotificationConstants.h@T@SDLMultipleRequestCompletionHandler
    - name: SDLMultipleSequentialRequestProgressHandler
      url: Type%20Definitions.html#/c:SDLNotificationConstants.h@T@SDLMultipleSequentialRequestProgressHandler
    - name: SDLNavigationAction
      url: Type%20Definitions.html#/c:SDLNavigationAction.h@T@SDLNavigationAction
    - name: SDLNavigationJunction
      url: Type%20Definitions.html#/c:SDLNavigationJunction.h@T@SDLNavigationJunction
    - name: SDLNotificationName
      url: Type%20Definitions.html#/c:SDLNotificationConstants.h@T@SDLNotificationName
    - name: SDLNotificationUserInfoKey
      url: Type%20Definitions.html#/c:SDLNotificationConstants.h@T@SDLNotificationUserInfoKey
    - name: SDLPRNDL
      url: Type%20Definitions.html#/c:SDLPRNDL.h@T@SDLPRNDL
    - name: SDLPermissionObserverIdentifier
      url: Type%20Definitions.html#/c:SDLPermissionConstants.h@T@SDLPermissionObserverIdentifier
    - name: SDLPermissionRPCName
      url: Type%20Definitions.html#/c:SDLPermissionConstants.h@T@SDLPermissionRPCName
    - name: SDLPermissionStatus
      url: Type%20Definitions.html#/c:SDLPermissionStatus.h@T@SDLPermissionStatus
    - name: SDLPermissionsChangedHandler
      url: Type%20Definitions.html#/c:SDLPermissionConstants.h@T@SDLPermissionsChangedHandler
    - name: SDLPowerModeQualificationStatus
      url: Type%20Definitions.html#/c:SDLPowerModeQualificationStatus.h@T@SDLPowerModeQualificationStatus
    - name: SDLPowerModeStatus
      url: Type%20Definitions.html#/c:SDLPowerModeStatus.h@T@SDLPowerModeStatus
    - name: SDLPredefinedLayout
      url: Type%20Definitions.html#/c:SDLPredefinedLayout.h@T@SDLPredefinedLayout
    - name: SDLPreloadChoiceCompletionHandler
      url: Type%20Definitions.html#/c:SDLScreenManager.h@T@SDLPreloadChoiceCompletionHandler
    - name: SDLPrerecordedSpeech
      url: Type%20Definitions.html#/c:SDLPrerecordedSpeech.h@T@SDLPrerecordedSpeech
    - name: SDLPrimaryAudioSource
      url: Type%20Definitions.html#/c:SDLPrimaryAudioSource.h@T@SDLPrimaryAudioSource
    - name: SDLRPCButtonNotificationHandler
      url: Type%20Definitions.html#/c:SDLNotificationConstants.h@T@SDLRPCButtonNotificationHandler
    - name: SDLRPCCommandNotificationHandler
      url: Type%20Definitions.html#/c:SDLNotificationConstants.h@T@SDLRPCCommandNotificationHandler
    - name: SDLRPCFunctionName
      url: Type%20Definitions.html#/c:SDLRPCFunctionNames.h@T@SDLRPCFunctionName
    - name: SDLRPCMessageTypeName
      url: Type%20Definitions.html#/c:SDLRPCMessageType.h@T@SDLRPCMessageTypeName
    - name: SDLRPCPermissionStatusChangedHandler
      url: Type%20Definitions.html#/c:SDLPermissionConstants.h@T@SDLRPCPermissionStatusChangedHandler
    - name: SDLRPCUpdatedBlock
      url: Type%20Definitions.html#/c:SDLManager.h@T@SDLRPCUpdatedBlock
    - name: SDLRadioBand
      url: Type%20Definitions.html#/c:SDLRadioBand.h@T@SDLRadioBand
    - name: SDLRadioState
      url: Type%20Definitions.html#/c:SDLRadioState.h@T@SDLRadioState
    - name: SDLRequestType
      url: Type%20Definitions.html#/c:SDLRequestType.h@T@SDLRequestType
    - name: SDLResponseHandler
      url: Type%20Definitions.html#/c:SDLNotificationConstants.h@T@SDLResponseHandler
    - name: SDLResult
      url: Type%20Definitions.html#/c:SDLResult.h@T@SDLResult
    - name: SDLSamplingRate
      url: Type%20Definitions.html#/c:SDLSamplingRate.h@T@SDLSamplingRate
    - name: SDLScreenManagerUpdateCompletionHandler
      url: Type%20Definitions.html#/c:SDLScreenManager.h@T@SDLScreenManagerUpdateCompletionHandler
    - name: SDLSeatMemoryActionType
      url: Type%20Definitions.html#/c:SDLSeatMemoryActionType.h@T@SDLSeatMemoryActionType
    - name: SDLSeekIndicatorType
      url: Type%20Definitions.html#/c:SDLSeekIndicatorType.h@T@SDLSeekIndicatorType
    - name: SDLServiceUpdateReason
      url: Type%20Definitions.html#/c:SDLServiceUpdateReason.h@T@SDLServiceUpdateReason
    - name: SDLSoftButtonType
      url: Type%20Definitions.html#/c:SDLSoftButtonType.h@T@SDLSoftButtonType
    - name: SDLSpeechCapabilities
      url: Type%20Definitions.html#/c:SDLSpeechCapabilities.h@T@SDLSpeechCapabilities
    - name: SDLStaticIconName
      url: Type%20Definitions.html#/c:SDLStaticIconName.h@T@SDLStaticIconName
    - name: SDLSubscribeButtonHandler
      url: Type%20Definitions.html#/c:SDLScreenManager.h@T@SDLSubscribeButtonHandler
    - name: SDLSupportedSeat
      url: Type%20Definitions.html#/c:SDLSupportedSeat.h@T@SDLSupportedSeat
    - name: SDLSystemAction
      url: Type%20Definitions.html#/c:SDLSystemAction.h@T@SDLSystemAction
    - name: SDLSystemCapabilityType
      url: Type%20Definitions.html#/c:SDLSystemCapabilityType.h@T@SDLSystemCapabilityType
    - name: SDLSystemContext
      url: Type%20Definitions.html#/c:SDLSystemContext.h@T@SDLSystemContext
    - name: SDLTBTState
      url: Type%20Definitions.html#/c:SDLTBTState.h@T@SDLTBTState
    - name: SDLTPMS
      url: Type%20Definitions.html#/c:SDLTPMS.h@T@SDLTPMS
    - name: SDLTemperatureUnit
      url: Type%20Definitions.html#/c:SDLTemperatureUnit.h@T@SDLTemperatureUnit
    - name: SDLTextAlignment
      url: Type%20Definitions.html#/c:SDLTextAlignment.h@T@SDLTextAlignment
    - name: SDLTextFieldName
      url: Type%20Definitions.html#/c:SDLTextFieldName.h@T@SDLTextFieldName
    - name: SDLTimerMode
      url: Type%20Definitions.html#/c:SDLTimerMode.h@T@SDLTimerMode
    - name: SDLTouchEventHandler
      url: Type%20Definitions.html#/c:SDLTouchManager.h@T@SDLTouchEventHandler
    - name: SDLTouchType
      url: Type%20Definitions.html#/c:SDLTouchType.h@T@SDLTouchType
    - name: SDLTransmissionType
      url: Type%20Definitions.html#/c:SDLTransmissionType.h@T@SDLTransmissionType
    - name: SDLTriggerSource
      url: Type%20Definitions.html#/c:SDLTriggerSource.h@T@SDLTriggerSource
    - name: SDLTurnSignal
      url: Type%20Definitions.html#/c:SDLTurnSignal.h@T@SDLTurnSignal
    - name: SDLUpdateCapabilityHandler
      url: Type%20Definitions.html#/c:SDLSystemCapabilityManager.h@T@SDLUpdateCapabilityHandler
    - name: SDLUpdateMode
      url: Type%20Definitions.html#/c:SDLUpdateMode.h@T@SDLUpdateMode
    - name: SDLVRCapabilities
      url: Type%20Definitions.html#/c:SDLVrCapabilities.h@T@SDLVRCapabilities
    - name: SDLVehicleDataActiveStatus
      url: Type%20Definitions.html#/c:SDLVehicleDataActiveStatus.h@T@SDLVehicleDataActiveStatus
    - name: SDLVehicleDataEventStatus
      url: Type%20Definitions.html#/c:SDLVehicleDataEventStatus.h@T@SDLVehicleDataEventStatus
    - name: SDLVehicleDataNotificationStatus
      url: Type%20Definitions.html#/c:SDLVehicleDataNotificationStatus.h@T@SDLVehicleDataNotificationStatus
    - name: SDLVehicleDataResultCode
      url: Type%20Definitions.html#/c:SDLVehicleDataResultCode.h@T@SDLVehicleDataResultCode
    - name: SDLVehicleDataStatus
      url: Type%20Definitions.html#/c:SDLVehicleDataStatus.h@T@SDLVehicleDataStatus
    - name: SDLVehicleDataType
      url: Type%20Definitions.html#/c:SDLVehicleDataType.h@T@SDLVehicleDataType
    - name: SDLVentilationMode
      url: Type%20Definitions.html#/c:SDLVentilationMode.h@T@SDLVentilationMode
    - name: SDLVideoStreamManagerState
      url: Type%20Definitions.html#/c:SDLStreamingMediaManagerConstants.h@T@SDLVideoStreamManagerState
    - name: SDLVideoStreamingCodec
      url: Type%20Definitions.html#/c:SDLVideoStreamingCodec.h@T@SDLVideoStreamingCodec
    - name: SDLVideoStreamingProtocol
      url: Type%20Definitions.html#/c:SDLVideoStreamingProtocol.h@T@SDLVideoStreamingProtocol
    - name: SDLVideoStreamingState
      url: Type%20Definitions.html#/c:SDLVideoStreamingState.h@T@SDLVideoStreamingState
    - name: SDLVoiceCommandSelectionHandler
      url: Type%20Definitions.html#/c:SDLVoiceCommand.h@T@SDLVoiceCommandSelectionHandler
    - name: SDLWarningLightStatus
      url: Type%20Definitions.html#/c:SDLWarningLightStatus.h@T@SDLWarningLightStatus
    - name: SDLWayPointType
      url: Type%20Definitions.html#/c:SDLWayPointType.h@T@SDLWayPointType
    - name: SDLWindowType
      url: Type%20Definitions.html#/c:SDLWindowType.h@T@SDLWindowType
    - name: SDLWiperStatus
      url: Type%20Definitions.html#/c:SDLWiperStatus.h@T@SDLWiperStatus
    - name: SwipeGestureCallbackBlock
      url: Type%20Definitions.html#/c:SDLLockScreenViewController.h@T@SwipeGestureCallbackBlock