summaryrefslogtreecommitdiff
path: root/data/en_us/aligenie/iap_1.0/api-docs.php
blob: 0eb701f4d654f0b0ac032c5777a92d731eb51972 (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
<?php return [
    'version' => '1.0',
    'info' => ['style' => 'ROA', 'product' => 'AliGenie', 'version' => 'iap_1.0'],
    'directories' => [
        [
            'children' => ['GetBusAppConfig', 'AppUseTimeReport', 'PullCashier', 'VideoAppReport', 'GetAccountForApp'],
            'type' => 'directory',
            'title' => 'Application Monetization',
        ],
        [
            'children' => ['GetPhoneNumber'],
            'type' => 'directory',
            'title' => 'Obtain Phone Number',
        ],
        [
            'children' => ['CreateReminder', 'GetReminder', 'ListReminders', 'UpdateReminder', 'DeleteReminder'],
            'type' => 'directory',
            'title' => 'Calendar Reminder',
        ],
        [
            'children' => ['WakeUpApp'],
            'type' => 'directory',
            'title' => 'Application Invocation',
        ],
        [
            'children' => ['PushNotifications', 'SendNotifications'],
            'type' => 'directory',
            'title' => 'Message Push',
        ],
        [
            'children' => ['CheckThirdRightSendPlan', 'CallBackThirdRightSendPlan'],
            'type' => 'directory',
            'title' => 'Other',
        ],
    ],
    'components' => [
        'schemas' => [],
    ],
    'apis' => [
        'AppUseTimeReport' => [
            'summary' => 'Used to report application usage duration on Tmall Genie devices.  ',
            'path' => '/v1.0/iap/vip/use/time/report',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'Business parameters',
                        'type' => 'object',
                        'properties' => [
                            'UserId' => ['title' => 'User ID', 'type' => 'string', 'required' => true, 'description' => '', 'example' => ''],
                            'DeviceId' => ['title' => 'Device ID', 'type' => 'string', 'required' => false, 'description' => '', 'example' => ''],
                            'SubjectId' => ['title' => 'Application ID', 'type' => 'string', 'required' => true, 'description' => '', 'example' => ''],
                            'Action' => ['title' => '', 'description' => 'Action item'."\n"
                                ."\n"
                                .'- start indicates Start'."\n"
                                .'- end indicates End', 'type' => 'string', 'required' => true, 'example' => 'start'],
                            'StepCode' => ['title' => '', 'description' => 'Step code. The start and end actions must be uniquely matched.', 'type' => 'string', 'required' => true, 'example' => '2'],
                            'ResourceId' => ['title' => '', 'description' => 'Resource ID.', 'type' => 'string', 'required' => true, 'example' => '1'],
                            'ResourceType' => ['title' => 'resourceType', 'description' => 'Resource type:'."\n"
                                ."\n"
                                .'- 0 indicates game'."\n"
                                .'- 1 indicates audio'."\n"
                                .'- 2 indicates video', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '1'],
                            'IsPrivilege' => ['title' => '', 'description' => 'Indicates whether the benefit is exclusive to members:'."\n"
                                ."\n"
                                .'- 1 indicates Yes  '."\n"
                                .'- 0 indicates No', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '1'],
                            'VipType' => ['title' => '', 'description' => 'Membership type:'."\n"
                                ."\n"
                                .'- 0 indicates Cat Spirit Membership'."\n"
                                .'- 1 indicates third-party proprietary membership', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '1'],
                            'originUuid' => ['description' => 'Plaintext UUID', 'type' => 'string', 'required' => false, 'example' => '731D5F********DC3B', 'title' => ''],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'User identifier information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User identifier, set to either userOpenId or userUnionId.', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of User ID  '."\n"
                                    .'- OPEN_ID: Default User ID identifier.  '."\n"
                                    .'- UNION_ID: Organization-dimension User ID identifier. This value is available only after an organization has been requested on the Tmall Genie Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier from Tmall Genie, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used for the Android application customer flow.  '."\n"
                                    .'- SKILL_ID: Skill ID, used for the cloud-based flow.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type  '."\n"
                                ."\n"
                                .'- When the encoding type is SKILL_ID, the value is the application\'s Skill ID.  '."\n"
                                .'- When the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client application.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is UNION_ID.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Device identity information  ',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID, set to deviceOpenId or deviceUnionId.  ', 'type' => 'string', 'required' => false, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of device ID  '."\n"
                                    .'- OPEN_ID: Default device ID.  '."\n"
                                    .'- UNION_ID: Organization-dimension device ID, available only after an organization has been requested in the Tmall Genie Skill Application Open Platform.  ',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device identity for Tmall Genie, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used for Android application customer-side integration.  '."\n"
                                    .'- SKILL_ID: Skill ID, used for cloud-side integration.  ',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type.'."\n"
                                ."\n"
                                .'- When the encoding type is SKILL_ID, the value is the application\'s Skill ID.'."\n"
                                .'- When the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client application.', 'type' => 'string', 'required' => false, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID, required if IdType is UNION_ID.  ', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => false,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RetCode' => ['description' => 'Error code returned; `0` indicates success.  ', 'type' => 'integer', 'format' => 'int32', 'example' => '0', 'title' => ''],
                            'RetMsg' => ['description' => 'Error message returned; no message is returned upon success.  ', 'type' => 'string', 'example' => '请求异常', 'title' => ''],
                            'RetValue' => ['description' => 'Result of invoking the API  '."\n"
                                ."\n"
                                .'- true indicates success  '."\n"
                                .'- false indicates failure  ', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => '500', 'errorMessage' => '内部服务错误_xxx', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RetCode\\": 0,\\n  \\"RetMsg\\": \\"请求异常\\",\\n  \\"RetValue\\": true\\n}","type":"json"}]',
            'title' => 'Report Application Usage Duration  ',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'CallBackThirdRightSendPlan' => [
            'summary' => 'Third-party membership redemption callback API.',
            'path' => '/v1.0/iap/business/CallBackThirdRightSendPlan',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'none'],
            'parameters' => [
                [
                    'name' => 'BizType',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'device Type', 'type' => 'string', 'required' => false, 'example' => 'ailabs'],
                ],
                [
                    'name' => 'BizGroup',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'device group', 'type' => 'string', 'required' => false, 'example' => 'cc'],
                ],
                [
                    'name' => 'Sn',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'SN of the device  ', 'type' => 'string', 'required' => false, 'example' => '01000019100307010000600'],
                ],
                [
                    'name' => 'SupplierId',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'Supplier ID', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1'],
                ],
                [
                    'name' => 'GenieOpenId',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'Genie ID', 'type' => 'string', 'required' => false, 'example' => '1dsds2FzCXFGVA1ADS'],
                ],
                [
                    'name' => 'ReceiveStatus',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'redemption status', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1'],
                ],
                [
                    'name' => 'CardType',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => '1001 daily card, 1002 monthly card, 1003 quarterly card, 1004 annual card', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1001'],
                ],
                [
                    'name' => 'ErrorMsg',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'error message', 'type' => 'string', 'required' => false, 'example' => '领取异常'],
                ],
                [
                    'name' => 'ExtendInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => ['title' => '', 'description' => 'Extension fields  ', 'type' => 'object', 'required' => false, 'example' => '{}'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RetValue' => ['title' => '', 'description' => 'Return Result true/false', 'type' => 'boolean', 'example' => ''],
                            'RetMsg' => ['title' => '', 'description' => 'error message', 'type' => 'string', 'example' => '系统异常'],
                            'RetCode' => ['title' => '', 'description' => 'fault status code', 'type' => 'string', 'example' => '400'],
                            'requestId' => ['title' => '', 'description' => 'Request ID', 'type' => 'string', 'example' => '908FA068-529C-0C20-8DB5-63B0EF7CFF1F'],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RetValue\\": false,\\n  \\"RetMsg\\": \\"系统异常\\",\\n  \\"RetCode\\": \\"400\\",\\n  \\"requestId\\": \\"908FA068-529C-0C20-8DB5-63B0EF7CFF1F\\"\\n}","type":"json"}]',
            'title' => 'Third-party membership redemption callback',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'CheckThirdRightSendPlan' => [
            'summary' => 'Commercial mobile screen third-party app card issuance validation.',
            'path' => '/v1.0/iap/business/CheckThirdRightSendPlan',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'none', 'riskType' => 'none', 'chargeType' => 'free'],
            'parameters' => [
                [
                    'name' => 'BizType',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'Device type', 'type' => 'string', 'required' => false, 'example' => 'ailabs'],
                ],
                [
                    'name' => 'BizGroup',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'Device group', 'type' => 'string', 'required' => false, 'example' => 'cc'],
                ],
                [
                    'name' => 'Sn',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'Device SN', 'type' => 'string', 'required' => false, 'example' => '01000019100307010000600'],
                ],
                [
                    'name' => 'SupplierId',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'Supplier ID', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1'],
                ],
                [
                    'name' => 'ExtendInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => ['title' => '', 'description' => 'Extension field', 'type' => 'object', 'required' => false, 'example' => '{}'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RetCode' => ['title' => '', 'description' => 'Return code', 'type' => 'integer', 'format' => 'int32', 'example' => '0'],
                            'RetMsg' => ['title' => '', 'description' => 'Error message', 'type' => 'string', 'example' => '系统异常'],
                            'RetValue' => [
                                'description' => 'Result of invoking the API',
                                'type' => 'object',
                                'properties' => [
                                    'CardType' => ['title' => '', 'description' => 'Card type', 'type' => 'integer', 'format' => 'int32', 'example' => '1001 日卡 1002 月卡 1003 季卡 1004 年卡'],
                                    'RightsExpiredDate' => ['title' => '', 'description' => 'Rights expiration time', 'type' => 'string', 'example' => '"1713262192005"'],
                                    'ActivateDate' => ['title' => '', 'description' => 'Activation time', 'type' => 'string', 'example' => '"1713262192005"'],
                                    'ChannelCode' => ['title' => '', 'description' => 'Channel code', 'type' => 'string', 'example' => 'TB'],
                                    'ChannelName' => ['title' => '', 'description' => 'Channel Name', 'type' => 'string', 'example' => '淘宝'],
                                    'RequestId' => ['title' => '', 'description' => 'Request ID', 'type' => 'string', 'example' => '908FA068-529C-0C20-8DB5-63B0EF7CFF1F'],
                                    'ExtendInfo' => ['title' => '', 'description' => 'Extension field', 'type' => 'object', 'example' => '{}'],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                500 => [
                    ['errorCode' => 'AliGenie.Public.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RetCode\\": 0,\\n  \\"RetMsg\\": \\"系统异常\\",\\n  \\"RetValue\\": {\\n    \\"CardType\\": 0,\\n    \\"RightsExpiredDate\\": \\"\\\\\\"1713262192005\\\\\\"\\",\\n    \\"ActivateDate\\": \\"\\\\\\"1713262192005\\\\\\"\\",\\n    \\"ChannelCode\\": \\"TB\\",\\n    \\"ChannelName\\": \\"淘宝\\",\\n    \\"RequestId\\": \\"908FA068-529C-0C20-8DB5-63B0EF7CFF1F\\",\\n    \\"ExtendInfo\\": {}\\n  }\\n}","type":"json"}]',
            'title' => 'Third-party membership validation',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'CreateReminder' => [
            'summary' => 'Used to create a reminder on a Tmall Genie device.  ',
            'path' => '/v1.0/iap/reminder/create',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_Token' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'The input parameters for this service request.',
                        'type' => 'object',
                        'properties' => [
                            'Content' => ['title' => '', 'description' => 'The detailed content of the reminder message.', 'type' => 'string', 'required' => true, 'example' => '提醒内容'],
                            'UserId' => ['title' => 'Genie ID', 'type' => 'string', 'required' => true, 'example' => '12****78', 'description' => ''],
                            'DeviceId' => ['title' => 'Device ID', 'type' => 'string', 'required' => true, 'example' => 'BED****AAC', 'description' => ''],
                            'SubjectId' => ['title' => 'Application ID', 'type' => 'string', 'required' => true, 'example' => '20******01', 'description' => ''],
                            'IsDebug' => ['title' => '', 'description' => 'Indicates whether this invocation is for debug purposes.', 'type' => 'boolean', 'required' => true, 'example' => 'true', 'default' => 'false'],
                            'RecurrenceRule' => [
                                'title' => '',
                                'description' => 'Scheduling information for the reminder.',
                                'type' => 'object',
                                'properties' => [
                                    'Year' => ['title' => '', 'description' => 'The year of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '2021'],
                                    'Month' => ['title' => '', 'description' => 'The month in which the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '10'],
                                    'Day' => ['title' => '', 'description' => 'The date on which the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '25'],
                                    'Hour' => ['title' => '', 'description' => 'The hour of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '12'],
                                    'Minute' => ['title' => '', 'description' => 'The minute of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '3'],
                                    'Second' => ['title' => '', 'description' => 'The second of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '3'],
                                    'Freq' => [
                                        'title' => '',
                                        'description' => 'Loop type:'."\n"
                                            ."\n"
                                            .'- ONCE: One-time'."\n"
                                            .'- DAILY: Daily'."\n"
                                            .'- WEEKLY: Weekly'."\n"
                                            .'- MONTHLY: Monthly',
                                        'type' => 'string',
                                        'required' => true,
                                        'example' => 'ONCE',
                                        'enum' => ['ONCE', 'DAILY', 'WEEKLY', 'MONTHLY'],
                                    ],
                                    'StartDateTime' => ['title' => '', 'description' => 'The effective start time of the reminder, in milliseconds as a UNIX timestamp.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '1635134400000'],
                                    'EndDateTime' => ['title' => '', 'description' => 'The expiration time when the reminder ends, in milliseconds UNIX timestamp.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '1635134700000'],
                                    'DaysOfMonth' => [
                                        'title' => '',
                                        'description' => 'Configure monthly reminders, indicating the day of the month when the reminder is triggered.',
                                        'type' => 'array',
                                        'items' => ['description' => 'Set the specific dates for monthly reminders. The value range is 1 to 31.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1', 'title' => ''],
                                        'required' => false,
                                        'example' => '',
                                    ],
                                    'DaysOfWeek' => [
                                        'title' => '',
                                        'description' => 'Configure weekly reminders, indicating on which days of the week the reminder is triggered.',
                                        'type' => 'array',
                                        'items' => ['description' => 'Specific days for weekly reminders, with values ranging from 1 to 7.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1', 'title' => ''],
                                        'required' => false,
                                        'example' => '',
                                    ],
                                ],
                                'required' => true,
                                'example' => '',
                            ],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'User identifier information.',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User identifier, set to either userOpenId or userUnionId.', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the User ID:  '."\n"
                                    .'- OPEN_ID: The default User ID identity.  '."\n"
                                    .'- UNION_ID: The User ID identity at the organization dimension. This value is available only after an organization has been requested on the Tmall Genie Skills Application Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier for Tmall Genie, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used in the Android application customer flow  '."\n"
                                    .'- SKILL_ID: Skill ID, used in the cloud-based flow',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type:  '."\n"
                                .'- When the encoding type is SKILL_ID, the value is the Skill ID of the application.  '."\n"
                                .'- When the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. This parameter is required when **IdType** is configured as **UNION_ID**.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Device identification information.  ',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID, set to either deviceOpenId or deviceUnionId.  ', 'type' => 'string', 'required' => true, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the device ID:  '."\n"
                                    .'- OPEN_ID: Default device ID identifier.  '."\n"
                                    .'- UNION_ID: Organization-level device ID identifier. This value is available only after an organization has been registered on the Tmall Genie Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device ID for Tmall Genie, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used in the Android application customer flow.  '."\n"
                                    .'- SKILL_ID: Skill ID, used in the cloud-based flow.  ',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type.'."\n"
                                ."\n"
                                .'- When the encoding type is set to SKILL_ID, the value is the application\'s Skill ID.'."\n"
                                .'- When the encoding type is set to PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. This parameter is required when **IdType** is set to **UNION_ID**.  ', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'The response information returned by calling this API.  ',
                        'type' => 'object',
                        'properties' => [
                            'Success' => ['title' => '', 'description' => 'Indicates the result of the API call. true indicates success, and false indicates failure.  ', 'type' => 'boolean', 'example' => 'true'],
                            'ErrorCode' => ['title' => '', 'description' => 'Error code.  ', 'type' => 'string', 'example' => '400'],
                            'ErrorMsg' => ['title' => '', 'description' => 'Detailed description of the error message.  ', 'type' => 'string', 'example' => '不能设置过去的时间。'],
                            'Model' => ['title' => '', 'description' => 'The ID of the created reminder.  ', 'type' => 'integer', 'format' => 'int64', 'example' => '20****1'],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Success\\": true,\\n  \\"ErrorCode\\": \\"400\\",\\n  \\"ErrorMsg\\": \\"不能设置过去的时间。\\",\\n  \\"Model\\": 0\\n}","type":"json"}]',
            'title' => 'Create Reminder  ',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'DeleteReminder' => [
            'summary' => 'User deletes a reminder created on a Tmall Genie device.  ',
            'path' => '/v1.0/iap/reminder/delete',
            'methods' => ['delete'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_Token' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Input parameters for the service request',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Unique ID of the reminder', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '20****34'],
                            'UserId' => ['title' => 'Genie ID', 'type' => 'string', 'required' => true, 'example' => '12****56', 'description' => ''],
                            'DeviceId' => ['title' => 'Device ID', 'type' => 'string', 'required' => true, 'example' => 'BED****AAC', 'description' => ''],
                            'SubjectId' => ['title' => 'Application ID', 'type' => 'string', 'required' => true, 'example' => '20****01', 'description' => ''],
                            'IsDebug' => ['title' => '', 'description' => 'Debug flag', 'type' => 'boolean', 'required' => true, 'example' => 'true', 'default' => 'false'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'User identifier information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User Identifier (userOpenId or userUnionId)', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the User ID:'."\n"
                                    .'- OPEN_ID: The default User ID identity.'."\n"
                                    .'- UNION_ID: The User ID identity at the organization dimension. This is available only after an organization has been requested on the Maojing Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier for Maojing, and each method corresponds to a different encoding type:  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used for the Android application customer ingest endpoint  '."\n"
                                    .'- SKILL_ID: Skill ID, used for the cloud service ingest endpoint',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'SKILL_ID',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type. When the encoding type is `SKILL_ID`, the value is the application\'s Skill ID. When the encoding type is `PACKAGE_NAME`, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required when IdType is `UNION_ID`.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'device identity information  ',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'device ID (deviceOpenId or deviceUnionId)  ', 'type' => 'string', 'required' => true, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'type of device ID  '."\n"
                                    .'- OPEN_ID: default device ID  '."\n"
                                    .'- UNION_ID: organization-level device ID; available only after an organization has been requested on the Tmall Genie Skill Application Open Platform  ',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'encoding type; there are multiple ways to obtain the Tmall Genie device ID, and each method corresponds to a different encoding type  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used in the Android application customer flow  '."\n"
                                    .'- SKILL_ID: skill ID, used in the cloud-based flow  ',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'SKILL_ID',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type. When the encoding type is `SKILL_ID`, the value is the application\'s Skill ID. When the encoding type is `PACKAGE_NAME`, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'organization ID; required if IdType is `UNION_ID`  ', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'Success' => ['title' => '', 'description' => 'service success indicator  ', 'type' => 'boolean', 'example' => 'true'],
                            'ErrorCode' => ['title' => '', 'description' => 'error code  ', 'type' => 'integer', 'format' => 'int32', 'example' => '400'],
                            'ErrorMsg' => ['title' => '', 'description' => 'error message  ', 'type' => 'string', 'example' => '参数错误。'],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Success\\": true,\\n  \\"ErrorCode\\": 400,\\n  \\"ErrorMsg\\": \\"参数错误。\\"\\n}","type":"json"}]',
            'title' => 'Delete Reminder  ',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'GetAccountForApp' => [
            'summary' => 'Used by developers to obtain membership information in business scenarios that depend on CatGenie Membership.',
            'path' => '/v1.0/iap/vip/account/get',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'Business parameters',
                        'type' => 'object',
                        'properties' => [
                            'UserId' => ['type' => 'string', 'required' => true, 'description' => '', 'title' => '', 'example' => ''],
                            'SubjectId' => ['type' => 'string', 'required' => true, 'description' => '', 'title' => '', 'example' => ''],
                            'DeviceId' => ['type' => 'string', 'description' => '', 'title' => '', 'example' => ''],
                            'Phone' => ['description' => 'Phone number of the authorized membership user.', 'type' => 'string', 'required' => false, 'example' => '188*777', 'title' => ''],
                            'originUuid' => ['description' => 'Plaintext UUID', 'type' => 'string', 'required' => false, 'example' => '731D5F********DC3B', 'title' => ''],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'User identifier information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User identifier, which can be set to userOpenId or userUnionId.', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of User ID:  '."\n"
                                    .'- OPEN_ID: The default user ID identity.  '."\n"
                                    .'- UNION_ID: Organization-dimension user ID identity. This value is available only after an organization has been requested on the Tmall Genie Skill Application Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier for Tmall Genie, and each way corresponds to a different encoding type:  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used for the Android application customer link.  '."\n"
                                    .'- SKILL_ID: Skill ID, used for the cloud-based link.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type:  '."\n"
                                .'- When the encoding type is SKILL_ID, the value is the application\'s Skill ID.  '."\n"
                                .'- When the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. This field is required if IdType is set to UNION_ID.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Device ID information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID, set to deviceOpenId or deviceUnionId.', 'type' => 'string', 'required' => false, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the device ID:  '."\n"
                                    .'- OPEN_ID: Default device ID identifier  '."\n"
                                    .'- UNION_ID: Device ID identifier at the organization dimension. This value is available only after an organization has been requested on the Tmall Genie Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device ID for Tmall Genie, and each method corresponds to a different encoding type.'."\n"
                                    .'- PACKAGE_NAME: APK package name, used in the Android application customer flow.'."\n"
                                    .'- SKILL_ID: Skill ID, used in the cloud-based flow.',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type:  '."\n"
                                .'- When the encoding type is SKILL_ID, the value is the application\'s Skill ID.  '."\n"
                                .'- When the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => false, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is UNION_ID.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => false,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RetCode' => ['title' => '', 'description' => 'Error code returned. A value of `0` indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '0'],
                            'RetMsg' => ['title' => '', 'description' => 'Error message returned. No message is returned upon success.', 'type' => 'string', 'example' => '请求异常'],
                            'RetValue' => [
                                'title' => '',
                                'description' => 'List of result objects returned.',
                                'type' => 'object',
                                'properties' => [
                                    'IsVip' => ['title' => '', 'description' => 'Indicates whether the user is an authorized member.', 'type' => 'boolean', 'example' => 'true'],
                                    'VipExpireAt' => ['title' => '', 'description' => 'Millisecond-level UNIX timestamp.'."\n"
                                        ."\n"
                                        .'- If the user has activated membership, returns the membership expiration time.'."\n"
                                        .'- If the user has never activated membership, the value is always `0`.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652340138347'],
                                    'StrVipExpire' => ['title' => '', 'description' => 'Membership expiration time.', 'type' => 'string', 'example' => '2022-05-12 15:22:18'],
                                ],
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => '500', 'errorMessage' => '内部服务错误_xx', 'description' => ''],
                    ['errorCode' => '10000', 'errorMessage' => '猫精用户已更换手机号,请重登', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RetCode\\": 0,\\n  \\"RetMsg\\": \\"请求异常\\",\\n  \\"RetValue\\": {\\n    \\"IsVip\\": true,\\n    \\"VipExpireAt\\": 1652340138347,\\n    \\"StrVipExpire\\": \\"2022-05-12 15:22:18\\"\\n  }\\n}","type":"json"}]',
            'title' => 'Obtain CatGenie Membership Information',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'GetBusAppConfig' => [
            'summary' => 'Obtain application configuration.',
            'path' => '/v1.0/iap/app/config/get',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'none'],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Business parameters',
                        'type' => 'object',
                        'properties' => [
                            'UserId' => ['type' => 'string', 'required' => false, 'description' => '', 'title' => '', 'example' => ''],
                            'SubjectId' => ['type' => 'string', 'required' => true, 'description' => '', 'title' => '', 'example' => ''],
                            'DeviceId' => ['type' => 'string', 'description' => '', 'title' => '', 'example' => ''],
                            'phone' => ['title' => '', 'description' => 'Phone number', 'type' => 'string', 'required' => false, 'example' => '136****1111'],
                            'originUuid' => ['title' => '', 'description' => 'Plaintext UUID', 'type' => 'string', 'required' => false, 'example' => '731D5F********DC3B'],
                        ],
                        'required' => false,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'User identity information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User Identifier (UserOpenId or UserUnionId)', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of User ID: OPEN_ID: default User ID identity; UNION_ID: organization-dimension User ID identity, available only after an organization has been requested on the Maojing Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier for Maojing, and each method corresponds to a different encoding type: PACKAGE_NAME: APK package name, used for Android application customer ingest endpoints; SKILL_ID: skill ID, used for cloud-based ingest endpoints.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'SKILL_ID',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type. If the encoding type is SKILL_ID, the value is the application\'s Skill ID. If the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is UNION_ID.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Device ID information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID (deviceOpenId or deviceUnionId)', 'type' => 'string', 'required' => false, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of device ID: OPEN_ID: default device ID; UNION_ID: organization-dimension device ID, available only after an organization has been requested on the Maojing Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device ID for Maojing, and each method corresponds to a different encoding type: PACKAGE_NAME: APK package name, used for Android application customer journeys; SKILL_ID: skill ID, used for cloud-based journeys.',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'SKILL_ID',
                                'enum' => ['SKILL_ID', 'PACKAGE_NAME'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type. When the encoding type is SKILL_ID, the value is the application\'s Skill ID. When the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => false, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is UNION_ID.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => false,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RetCode' => ['title' => '', 'description' => 'Error code returned. 0 indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '	0'],
                            'RetMsg' => ['title' => '', 'description' => 'Error message returned. No message is returned if the operation succeeded.', 'type' => 'string', 'example' => '	请求异常'],
                            'RetValue' => [
                                'title' => '',
                                'description' => 'Configuration Information (VIP label, shopping guide bar, shopping guide pop-up)',
                                'type' => 'object',
                                'properties' => [
                                    'VipLabel' => ['title' => '', 'description' => 'VIP label transparency URL', 'type' => 'string', 'example' => 'https://******.com/design/******?imageId=xxxxx'],
                                    'ShoppingBar' => ['title' => '', 'description' => 'Shopping guide bar URL', 'type' => 'string', 'example' => 'https://******.com/design/******?imageId=xxxxx'],
                                    'ShoppingWindow' => ['title' => '', 'description' => 'Shopping guide pop-up URL', 'type' => 'string', 'example' => 'https://******.com/design/******?imageId=xxxxx'],
                                    'Cashier' => ['description' => 'Cashier URL', 'title' => 'Cashier URL', 'type' => 'string', 'example' => 'https://******.com/*****/******?appId=xxxxx'],
                                ],
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                500 => [
                    ['errorCode' => 'AliGenie.Public.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RetCode\\": 0,\\n  \\"RetMsg\\": \\"\\\\t请求异常\\",\\n  \\"RetValue\\": {\\n    \\"VipLabel\\": \\"https://******.com/design/******?imageId=xxxxx\\",\\n    \\"ShoppingBar\\": \\"https://******.com/design/******?imageId=xxxxx\\",\\n    \\"ShoppingWindow\\": \\"https://******.com/design/******?imageId=xxxxx\\",\\n    \\"Cashier\\": \\"https://******.com/*****/******?appId=xxxxx\\"\\n  }\\n}","type":"json"}]',
            'title' => 'Obtain application configuration',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'GetPhoneNumber' => [
            'summary' => 'Obtain the phone number bound to the user\'s Maojing device. You must first request this capability on the Maojing Skill Application Platform and obtain user authorization on the device side.  ',
            'path' => '/v1.0/iap/profile/phoneNumber',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_Token' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'UserInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'User identifier information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User Identifier (userOpenId or userUnionId)', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of User ID:  '."\n"
                                    .'- OPEN_ID: Default User ID identifier  '."\n"
                                    .'- UNION_ID: Organization-dimension User ID identifier, available only after an organization has been requested on the Maojing Skill Application Open Platform',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier for Maojing, and each method corresponds to a different encoding type:  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used for Android application customer journeys  '."\n"
                                    .'- SKILL_ID: Skill ID, used for cloud-based journeys',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type. When the encoding type is `SKILL_ID`, the value is the application\'s Skill ID. When the encoding type is `PACKAGE_NAME`, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is `UNION_ID`.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Device identification information  ',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID (deviceOpenId or deviceUnionId)  ', 'type' => 'string', 'required' => true, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of device ID:  '."\n"
                                    .'- OPEN_ID: Default device ID  '."\n"
                                    .'- UNION_ID: Organization-dimension device ID, available only after an organization has been requested on the Maojing Skill Application Open Platform  ',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the Maojing device ID, and each method corresponds to a different encoding type:  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used in the Android application customer flow  '."\n"
                                    .'- SKILL_ID: Skill ID, used in the cloud-based flow  ',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type. If the encoding type is `SKILL_ID`, the value is the application\'s Skill ID. If the encoding type is `PACKAGE_NAME`, the value is the packageName of the corresponding client app.  ', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is `UNION_ID`.  ', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Return Result  ',
                        'type' => 'object',
                        'properties' => [
                            'phoneNumber' => ['title' => '', 'description' => 'User\'s phone number  ', 'type' => 'string', 'example' => '137****'],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'AliGenie.GetPhoneNumber.InvalidParameter.UserIdentity', 'errorMessage' => 'The user information does not exist.', 'description' => ''],
                    ['errorCode' => 'AliGenie.GetPhoneNumber.BizError', 'errorMessage' => 'The user has no phoneNumber.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"phoneNumber\\": \\"137****\\"\\n}","type":"json"}]',
            'title' => 'Obtain the phone number bound to the user\'s Maojing device  ',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'GetReminder' => [
            'summary' => 'User retrieves reminders created on Tmall Genie devices.  ',
            'path' => '/v1.0/iap/reminder/get',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_Token' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Input parameters for the service request.',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'The unique ID of the reminder.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '20****34'],
                            'UserId' => ['title' => 'Genie ID', 'type' => 'string', 'required' => true, 'example' => '12****56', 'description' => ''],
                            'DeviceId' => ['title' => 'Device ID', 'type' => 'string', 'required' => true, 'example' => 'BED****AAC', 'description' => ''],
                            'SubjectId' => ['title' => 'Application ID', 'type' => 'string', 'required' => true, 'example' => '20****01', 'description' => ''],
                            'IsDebug' => ['title' => '', 'description' => 'Indicates whether this invocation is for debug purposes.', 'type' => 'boolean', 'required' => true, 'example' => 'true', 'default' => 'false'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'List of user identity information.',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User identifier, set to either userOpenId or userUnionId.', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the User ID  '."\n"
                                    .'- OPEN_ID: The default User ID identifier.  '."\n"
                                    .'- UNION_ID: The organization-dimension User ID identifier. This value is available only after an organization has been requested on the Tmall Genie Skills Application Open Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier for Tmall Genie, and each method corresponds to a different encoding type.'."\n"
                                    .'- PACKAGE_NAME: APK package name, used for the Android application customer ingest endpoint.'."\n"
                                    .'- SKILL_ID: Skill ID, used for the cloud-based ingest endpoint.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'SKILL_ID',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type.  '."\n"
                                ."\n"
                                .'- When the encoding type is SKILLID, the value is the application\'s Skill ID.  '."\n"
                                .'- When the encoding type is PACKAGENAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required when **IdType** is set to **UNION_ID**.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'List of device identity information.',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID, set to either deviceOpenId or deviceUnionId.', 'type' => 'string', 'required' => true, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of device ID.  '."\n"
                                    .'- OPEN_ID: The default device ID.  '."\n"
                                    .'- UNION_ID: Organization-level device ID, available only after an organization has been requested on the Tmall Genie Skill Application Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device ID for Tmall Genie, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used for the Android application customer link.  '."\n"
                                    .'- SKILL_ID: Skill ID, used for the cloud-based link.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'SKILL_ID',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type.'."\n"
                                ."\n"
                                .'- When the encoding type is SKILLID, the value is the application\'s Skill ID.'."\n"
                                .'- When the encoding type is PACKAGENAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required when **IdType** is set to **UNION_ID**.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'List of response messages returned by invoking this API.  ',
                        'type' => 'object',
                        'properties' => [
                            'Success' => ['title' => '', 'description' => 'Indicates the result of the API call. true means succeeded, and false means failed.', 'type' => 'boolean', 'example' => 'true'],
                            'ErrorCode' => ['title' => '', 'description' => 'Error code.', 'type' => 'integer', 'format' => 'int32', 'example' => '400'],
                            'ErrorMsg' => ['title' => '', 'description' => 'Detailed description of the error message.  ', 'type' => 'string', 'example' => '参数不合法。'],
                            'Model' => [
                                'title' => '',
                                'description' => 'Reminder information.  ',
                                'type' => 'object',
                                'properties' => [
                                    'RemindResponses' => [
                                        'title' => '',
                                        'description' => 'List of reminder information returned by invoking this API.  ',
                                        'type' => 'array',
                                        'items' => [
                                            'description' => 'List of information entries.  ',
                                            'type' => 'object',
                                            'properties' => [
                                                'RemindId' => ['title' => '', 'description' => 'The ID of the reminder message.', 'type' => 'integer', 'format' => 'int64', 'example' => '20*****1'],
                                                'RepeatCount' => ['title' => '', 'description' => 'The number of times the reminder repeats.', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                                                'ActionTopic' => ['title' => '', 'description' => 'The topic of the action executed by the reminder.', 'type' => 'string', 'example' => '宝宝快去刷牙'],
                                                'DayDesc' => ['title' => '', 'description' => 'Description of the trigger condition for the reminder.', 'type' => 'string', 'example' => '每天'],
                                                'RemindTime' => ['title' => '', 'description' => 'Next reminder time.  ', 'type' => 'string', 'example' => '1629850800000'],
                                                'Week' => ['title' => '', 'description' => 'The day of the week on which the reminder is triggered, indicating which day of the week the reminder occurs.', 'type' => 'string', 'example' => '周三'],
                                                'RecurrenceRule' => [
                                                    'title' => '',
                                                    'description' => 'Schedule information list, which contains detailed timing information for the reminder.  ',
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'Freq' => ['title' => '', 'description' => 'The loop epoch of the reminder.', 'type' => 'string', 'example' => 'WEEKLY'],
                                                        'Year' => ['title' => '', 'description' => 'The year when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '2021'],
                                                        'Month' => ['title' => '', 'description' => 'Month in which the reminder is triggered.  ', 'type' => 'integer', 'format' => 'int32', 'example' => '8'],
                                                        'Day' => ['title' => '', 'description' => 'The date on which the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '27'],
                                                        'Hour' => ['title' => '', 'description' => 'The hour of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '18'],
                                                        'Minute' => ['title' => '', 'description' => 'The minute when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '0'],
                                                        'Second' => ['title' => '', 'description' => 'The second of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '0'],
                                                        'DaysOfMonth' => [
                                                            'title' => '',
                                                            'description' => 'Information for monthly reminders.',
                                                            'type' => 'array',
                                                            'items' => ['description' => 'The day of the month on which the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                                            'example' => '',
                                                        ],
                                                        'DaysOfWeek' => [
                                                            'title' => '',
                                                            'description' => 'Information for weekly reminders.',
                                                            'type' => 'array',
                                                            'items' => ['description' => 'The day(s) of the week on which the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                                            'example' => '',
                                                        ],
                                                        'StartDateTime' => ['title' => '', 'description' => 'The start time when the reminder becomes effective.', 'type' => 'string', 'format' => 'int64', 'example' => '1630054800000'],
                                                        'EndDateTime' => ['title' => '', 'description' => 'The end time when the reminder becomes inactive.', 'type' => 'string', 'format' => 'int64', 'example' => '1661598000000'],
                                                    ],
                                                    'example' => '',
                                                ],
                                            ],
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'example' => '',
                                    ],
                                ],
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Success\\": true,\\n  \\"ErrorCode\\": 400,\\n  \\"ErrorMsg\\": \\"参数不合法。\\",\\n  \\"Model\\": {\\n    \\"RemindResponses\\": [\\n      {\\n        \\"RemindId\\": 0,\\n        \\"RepeatCount\\": 1,\\n        \\"ActionTopic\\": \\"宝宝快去刷牙\\",\\n        \\"DayDesc\\": \\"每天\\",\\n        \\"RemindTime\\": \\"1629850800000\\",\\n        \\"Week\\": \\"周三\\",\\n        \\"RecurrenceRule\\": {\\n          \\"Freq\\": \\"WEEKLY\\",\\n          \\"Year\\": 2021,\\n          \\"Month\\": 8,\\n          \\"Day\\": 27,\\n          \\"Hour\\": 18,\\n          \\"Minute\\": 0,\\n          \\"Second\\": 0,\\n          \\"DaysOfMonth\\": [\\n            1\\n          ],\\n          \\"DaysOfWeek\\": [\\n            1\\n          ],\\n          \\"StartDateTime\\": \\"1630054800000\\",\\n          \\"EndDateTime\\": \\"1661598000000\\"\\n        }\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
            'title' => 'Retrieve Reminders',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'ListReminders' => [
            'summary' => 'The User batch retrieves reminders created on Tmall Genie devices.  ',
            'path' => '/v1.0/iap/reminder/list',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_Token' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Input parameters for the service request.',
                        'type' => 'object',
                        'properties' => [
                            'UserId' => ['title' => 'Genie ID', 'type' => 'string', 'required' => true, 'example' => '12****56', 'description' => ''],
                            'DeviceId' => ['title' => 'Device ID', 'type' => 'string', 'required' => true, 'example' => 'BED****AAC', 'description' => ''],
                            'SubjectId' => ['title' => 'Application ID', 'type' => 'string', 'required' => true, 'example' => '20****01', 'description' => ''],
                            'IsDebug' => ['title' => '', 'description' => 'Indicates whether this invocation is for debug purposes.', 'type' => 'boolean', 'required' => true, 'example' => 'true', 'default' => 'false'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'List of user identity information.',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User Identifier, either userOpenId or userUnionId.', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the User ID:'."\n"
                                    .' - OPEN_ID: The default User ID identity.'."\n"
                                    .' - UNION_ID: The User ID identity at the organization dimension. This value is available only after an organization has been requested on the Tmall Genie Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier for Tmall Genie, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used for the Android application customer ingest endpoint.  '."\n"
                                    .'- SKILL_ID: Skill ID, used for the cloud-side ingest endpoint.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type:'."\n"
                                .' - When the encoding type is SKILLID, the value is the application\'s Skill ID.'."\n"
                                .' - When the encoding type is PACKAGENAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. This parameter is required when **IdType** is configured as **UNION_ID**.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'List of device identity information.',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID, either deviceOpenId or deviceUnionId.', 'type' => 'string', 'required' => true, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the device ID.  '."\n"
                                    .'- OPEN_ID: The default device ID.  '."\n"
                                    .'- UNION_ID: Organization-level device ID. This value is available only after an organization has been requested on the Tmall Genie Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device ID for Tmall Genie, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used in the Android application customer flow.  '."\n"
                                    .'- SKILL_ID: Skill ID, used in the cloud-based flow.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type.'."\n"
                                ."\n"
                                .'- When the encoding type is SKILLID, the value is the application\'s Skill ID.  '."\n"
                                .'- When the encoding type is PACKAGENAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required when **IdType** is set to **UNION_ID**.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'The list of return information from invoking this API.  ',
                        'type' => 'object',
                        'properties' => [
                            'Success' => ['title' => '', 'description' => 'Indicates the result of the API call. true indicates success, and false indicates failure.', 'type' => 'boolean', 'example' => 'true'],
                            'ErrorCode' => ['title' => '', 'description' => 'Error code.', 'type' => 'integer', 'format' => 'int32', 'example' => '400'],
                            'ErrorMsg' => ['title' => '', 'description' => 'Detailed description of the error message.  ', 'type' => 'string', 'example' => '参数不合法。'],
                            'Model' => [
                                'title' => '',
                                'description' => 'Reminder information.  ',
                                'type' => 'object',
                                'properties' => [
                                    'RemindResponses' => [
                                        'title' => '',
                                        'description' => 'The list of reminder information returned by invoking this API.  ',
                                        'type' => 'array',
                                        'items' => [
                                            'description' => 'List of information.  ',
                                            'type' => 'object',
                                            'properties' => [
                                                'RemindId' => ['title' => '', 'description' => 'The ID of the reminder message.', 'type' => 'integer', 'format' => 'int64', 'example' => '20****1'],
                                                'RepeatCount' => ['title' => '', 'description' => 'The number of times the reminder repeats.', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                                                'ActionTopic' => ['title' => '', 'description' => 'The topic of the action executed by the reminder.', 'type' => 'string', 'example' => '宝宝快去刷牙'],
                                                'DayDesc' => ['title' => '', 'description' => 'Description of the trigger condition for the reminder.', 'type' => 'string', 'example' => '每天'],
                                                'RemindTime' => ['title' => '', 'description' => 'The next reminder time.  ', 'type' => 'string', 'example' => '1629850800000'],
                                                'Week' => ['title' => '', 'description' => 'The day of the week on which the reminder is triggered weekly.', 'type' => 'string', 'example' => '周三'],
                                                'RecurrenceRule' => [
                                                    'title' => '',
                                                    'description' => 'The schedule information list, which contains detailed timing information for the reminder.  ',
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'Freq' => ['title' => '', 'description' => 'The recurrence epoch of the reminder.', 'type' => 'string', 'example' => 'WEEKLY'],
                                                        'Year' => ['title' => '', 'description' => 'The year when the reminder is triggered.  ', 'type' => 'integer', 'format' => 'int32', 'example' => '2021'],
                                                        'Month' => ['title' => '', 'description' => 'The month when the reminder is triggered.  ', 'type' => 'integer', 'format' => 'int32', 'example' => '8'],
                                                        'Day' => ['title' => '', 'description' => 'The date on which the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '27'],
                                                        'Hour' => ['title' => '', 'description' => 'The hour of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '18'],
                                                        'Minute' => ['title' => '', 'description' => 'The minute of the hour when the reminder is triggered.  ', 'type' => 'integer', 'format' => 'int32', 'example' => '0'],
                                                        'Second' => ['title' => '', 'description' => 'The second of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '0'],
                                                        'DaysOfMonth' => [
                                                            'title' => '',
                                                            'description' => 'Information for monthly reminders.',
                                                            'type' => 'array',
                                                            'items' => ['description' => 'The day of the month on which the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                                            'example' => '',
                                                        ],
                                                        'DaysOfWeek' => [
                                                            'title' => '',
                                                            'description' => 'Information for weekly reminders.  ',
                                                            'type' => 'array',
                                                            'items' => ['description' => 'The day(s) of the week on which the reminder is triggered.  ', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                                            'example' => '',
                                                        ],
                                                        'StartDateTime' => ['title' => '', 'description' => 'The start time when the reminder becomes effective.  ', 'type' => 'string', 'format' => 'int64', 'example' => '1630054800000'],
                                                        'EndDateTime' => ['title' => '', 'description' => 'The end time when the reminder becomes inactive.', 'type' => 'string', 'format' => 'int64', 'example' => '1661598000000'],
                                                    ],
                                                    'example' => '',
                                                ],
                                            ],
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'example' => '',
                                    ],
                                ],
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Success\\": true,\\n  \\"ErrorCode\\": 400,\\n  \\"ErrorMsg\\": \\"参数不合法。\\",\\n  \\"Model\\": {\\n    \\"RemindResponses\\": [\\n      {\\n        \\"RemindId\\": 0,\\n        \\"RepeatCount\\": 1,\\n        \\"ActionTopic\\": \\"宝宝快去刷牙\\",\\n        \\"DayDesc\\": \\"每天\\",\\n        \\"RemindTime\\": \\"1629850800000\\",\\n        \\"Week\\": \\"周三\\",\\n        \\"RecurrenceRule\\": {\\n          \\"Freq\\": \\"WEEKLY\\",\\n          \\"Year\\": 2021,\\n          \\"Month\\": 8,\\n          \\"Day\\": 27,\\n          \\"Hour\\": 18,\\n          \\"Minute\\": 0,\\n          \\"Second\\": 0,\\n          \\"DaysOfMonth\\": [\\n            1\\n          ],\\n          \\"DaysOfWeek\\": [\\n            1\\n          ],\\n          \\"StartDateTime\\": \\"1630054800000\\",\\n          \\"EndDateTime\\": \\"1661598000000\\"\\n        }\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
            'title' => 'Retrieve Reminder List',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'PullCashier' => [
            'summary' => 'The user launches the checkout page on a Tmall Genie device.  ',
            'path' => '/v1.0/iap/pull/cashier/',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'Business parameters',
                        'type' => 'object',
                        'properties' => [
                            'SubjectId' => ['title' => 'Application ID', 'type' => 'string', 'required' => true, 'description' => '', 'example' => ''],
                            'DeviceId' => ['type' => 'string', 'required' => false, 'description' => '', 'title' => '', 'example' => ''],
                            'originUuid' => ['description' => 'Plaintext UUID', 'type' => 'string', 'required' => false, 'example' => '731D5F********DC3B', 'title' => ''],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'User identifier information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User identifier, set to either userOpenId or userUnionId.', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the User ID.'."\n"
                                    ."\n"
                                    .'- OPEN_ID: The default User ID identity.'."\n"
                                    .'- UNION_ID: Organization-dimension User ID identity. This value is available only after an organization has been requested on the Tmall Genie Skill Application Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier from Tmall Genie, and each method corresponds to a different encoding type.'."\n"
                                    .'- PACKAGE_NAME: APK package name, used for the Android application customer ingest endpoint.'."\n"
                                    .'- SKILL_ID: Skill ID, used for the cloud-based ingest endpoint.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type.'."\n"
                                ."\n"
                                .'- When the encoding type is SKILL_ID, the value is the application\'s Skill ID.'."\n"
                                .'- When the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is UNION_ID.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'device ID information  ',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID, set to deviceOpenId or deviceUnionId.  ', 'type' => 'string', 'required' => false, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of device ID  '."\n"
                                    .'- OPEN_ID: The default device ID.  '."\n"
                                    .'- UNION_ID: Organization-level device ID. This value is available only after an organization has been requested on the Tmall Genie skill application Open Platform.  ',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device ID of Tmall Genie, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used in the Android application customer flow.  '."\n"
                                    .'- SKILL_ID: Skill ID, used in the cloud-based flow.  ',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type.'."\n"
                                ."\n"
                                .'- When the encoding type is SKILL_ID, the value is the Skill ID of the application.'."\n"
                                .'- When the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => false, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is UNION_ID.  ', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => false,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RetCode' => ['title' => '', 'description' => 'The returned error code. `0` indicates success.  ', 'type' => 'integer', 'format' => 'int32', 'example' => '0'],
                            'RetMsg' => ['title' => '', 'description' => 'The returned error message. No message is returned upon success.  ', 'type' => 'string', 'example' => '请求成功'],
                            'RetValue' => ['description' => 'The result of pulling up the checkout page. true indicates success, and false indicates failure.  ', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => '500', 'errorMessage' => '内部服务错误_xxx', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RetCode\\": 0,\\n  \\"RetMsg\\": \\"请求成功\\",\\n  \\"RetValue\\": true\\n}","type":"json"}]',
            'title' => 'Launch Checkout Page  ',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'PushNotifications' => [
            'summary' => 'Execute the message push feature of Tmall Genie. You must first request the capability and configure the message template on the Tmall Genie Skill Application Platform.',
            'path' => '/v1.0/iap/notifications',
            'methods' => ['put'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'NotificationUnicastRequest',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Input parameter object for message push.',
                        'type' => 'object',
                        'properties' => [
                            'SendTarget' => [
                                'title' => '',
                                'description' => 'The target information for message push.',
                                'type' => 'object',
                                'properties' => [
                                    'TargetType' => [
                                        'title' => '',
                                        'description' => 'The type of the Push Target, indicating the type when obtaining the corresponding device or User Identifier:  '."\n"
                                            .'- `DEVICE_UNION_ID`: device unionId  '."\n"
                                            .'- `DEVICE_OPEN_ID`: device openId  '."\n"
                                            .'- `USER_UNION_ID`: user unionId  '."\n"
                                            .'- `USER_OPEN_ID`: user openId',
                                        'type' => 'string',
                                        'required' => false,
                                        'example' => 'DEVICE_OPEN_ID',
                                        'enum' => ['DEVICE_UNION_ID', 'DEVICE_OPEN_ID', 'USER_UNION_ID', 'USER_OPEN_ID'],
                                    ],
                                    'TargetIdentity' => ['title' => '', 'description' => 'The identity value corresponding to the Push Target Type.', 'type' => 'string', 'required' => false, 'example' => '2VpiDQ6aMjxz******Eo7r6e08oIVZ3fKrm5TyEfY='],
                                ],
                                'required' => true,
                                'example' => '',
                            ],
                            'MessageTemplateId' => ['title' => '', 'description' => 'Message template ID obtained when applying for a message template on the Tmall Genie Application Platform.', 'type' => 'string', 'required' => true, 'example' => '2iU81*****G9elJ'],
                            'PlaceHolder' => [
                                'title' => '',
                                'description' => 'Placeholder information. For example, for the template ["Hello, {nick}!"], this could be {"nick":"Sweetie"}. Additionally, within the placeholder parameters, you can append parameters to the application launch link to support hyperlinking to a specific address, such as: `{"nick":"Sweetie","_URL_SUFFIX_":"xxx"}`. The hyperlink address in the message pop-up will then be: application launch link + `${_URL_SUFFIX_}`. This feature only works for applications that have configured a launch link.',
                                'type' => 'object',
                                'required' => false,
                                'additionalProperties' => ['type' => 'string', 'example' => '{"nick":"小甜甜"}', 'description' => 'Placeholder information. For example, for the template ["Hello, {nick}!"], this could be {"nick":"Sweetie"}.', 'title' => ''],
                                'example' => '{"nick":"张三"}',
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the Tmall Genie device ID, and each method corresponds to a different encoding type:  '."\n"
                                    .'- PACKAGE_NAME: APK package name  '."\n"
                                    .'- SKILL_ID: Skill ID',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type.  '."\n"
                                .'- When the encoding type is SKILL_ID, the value is the skill ID obtained from the webhook service.  '."\n"
                                .'- When the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => 'apk包名'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization Identifier. This parameter is required only when the push type is `XX_UNION_XX`. If you obtain CatGenie device or user identifiers through multiple channels and need interoperability among them, you must request an organization from the platform. After approval, the platform will assign an organization identifier.', 'type' => 'string', 'required' => false, 'example' => '2'],
                            'IsDebug' => ['title' => '', 'description' => 'Debug flag. When the skill application is in the debug phase, setting this flag determines whether the retrieved skill application information is from the editing state or the online state.', 'type' => 'boolean', 'required' => false, 'example' => 'true', 'default' => 'false'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'TenantInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Identity information.',
                        'type' => 'object',
                        'properties' => [
                            'SubjectId' => ['title' => 'The application ID obtained after creating an application in the Developer Platform under Skill Applications.', 'type' => 'string', 'example' => '20*****01', 'description' => ''],
                        ],
                        'required' => false,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'AliGenie.PushNotifications.InvalidParameter.PlaceHolder', 'errorMessage' => 'The template placeholder information is missing.', 'description' => ''],
                    ['errorCode' => 'AliGenie.PushNotifications.InvalidParameter.SendTarget', 'errorMessage' => 'Failed to identify message target.', 'description' => ''],
                    ['errorCode' => 'AliGenie.PushNotifications.InvalidParameter.MessageTemplateId', 'errorMessage' => 'The template information is invalid.', 'description' => ''],
                    ['errorCode' => 'AliGenie.PushNotifications.InvalidParameter', 'errorMessage' => 'The request parameter is invalid.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.Application.Invalid', 'errorMessage' => 'The AliGenie app info is invalid.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.Application.Status', 'errorMessage' => 'The AliGenie app has not been released.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.Application.Url', 'errorMessage' => 'The AliGenie app awaken url is missing.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.InvalidParameter.DeviceInfo', 'errorMessage' => 'Failed to identify device.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.InvalidParameter.UserInfo', 'errorMessage' => 'Failed to identify user.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'AliGenie.Public.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
            'title' => 'Message Push_Custom Device Version',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'SendNotifications' => [
            'summary' => 'Execute the message push feature of Tmall Genie. You must first request the capability and configure the message template in the Tmall Genie Skill Application Platform.',
            'path' => '/v1.0/iap/general/notifications',
            'methods' => ['put'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'NotificationUnicastRequest',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Input parameter object for message push.',
                        'type' => 'object',
                        'properties' => [
                            'SendTarget' => [
                                'title' => '',
                                'description' => 'Target information for message push.',
                                'type' => 'object',
                                'properties' => [
                                    'DeviceId' => ['title' => 'Device ID', 'type' => 'string', 'required' => true, 'description' => '', 'example' => ''],
                                ],
                                'required' => true,
                                'example' => '',
                            ],
                            'MessageTemplateId' => ['title' => '', 'description' => 'Message template ID obtained when requesting a message template in the Tmall Genie Application Platform.', 'type' => 'string', 'required' => true, 'example' => '2iU81*****G9elJ'],
                            'PlaceHolder' => [
                                'title' => '',
                                'description' => 'Placeholder information. For example, for the template ["Hello, {nick}!"], this can be: {"nick":"Xiao Tian Tian"}. Additionally, within the placeholder parameters, you can append parameters to the application launch link to support hyperlinking to a specific address, such as: `{"nick":"Xiao Tian Tian","_URL_SUFFIX_":"xxx"}`. The hyperlink address in the message pop-up will then be: application launch link + `${_URL_SUFFIX_}`. This feature is only effective for applications that have configured a launch link.',
                                'type' => 'object',
                                'required' => false,
                                'additionalProperties' => ['type' => 'string', 'description' => 'Placeholder information. For example, for the template ["Hello, {nick}!"], this can be: {"nick":"Xiao Tian Tian"}.', 'example' => '{"nick":"小甜甜"}', 'title' => ''],
                                'example' => '{"nick":"张三"}',
                            ],
                            'IsDebug' => ['title' => '', 'description' => 'Debug flag. When the skill application is in the debugging phase, setting this flag determines whether the retrieved skill application information is from the editing state or the online state.', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'default' => 'false'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'TenantInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Identity information.',
                        'type' => 'object',
                        'properties' => [
                            'SubjectId' => ['title' => 'Maojing application identifier', 'type' => 'string', 'required' => true, 'example' => '20********01', 'description' => ''],
                        ],
                        'required' => false,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'User Identifier information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User Identifier (userOpenId or userUnionId)', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the User ID:  '."\n"
                                    .'- OPEN_ID: Default User ID identifier  '."\n"
                                    .'- UNION_ID: Organization-dimension User ID identifier, available only after an organization has been requested on the Maojing Skill Application Open Platform',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the Maojing User Identifier, and each method corresponds to a different encoding type:  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used for the Android application customer link  '."\n"
                                    .'- SKILL_ID: Skill ID, used for the cloud-based link',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type. If the encoding type is SKILL_ID, the value is the application\'s Skill ID. If the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is UNION_ID.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Device identity information  ',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID (deviceOpenId or deviceUnionId)  ', 'type' => 'string', 'required' => true, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of device ID:  '."\n"
                                    .' - OPEN_ID: Default device ID  '."\n"
                                    .' - UNION_ID: Organization-dimension device ID, available only after an organization has been requested on the Maojing Skill Application Open Platform  ',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device ID for Maojing, and each method corresponds to a different encoding type:  '."\n"
                                    .' - PACKAGE_NAME: APK package name, used for the Android application customer link  '."\n"
                                    .' - SKILL_ID: Skill ID, used for the cloud link  ',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type. If the encoding type is SKILL_ID, the value is the application\'s Skill ID. If the encoding type is PACKAGE_NAME, the value is the packageName of the corresponding client app.  ', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required if IdType is UNION_ID.  ', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'AliGenie.PushNotifications.InvalidParameter.PlaceHolder', 'errorMessage' => 'The template placeholder information is missing.', 'description' => ''],
                    ['errorCode' => 'AliGenie.PushNotifications.InvalidParameter.SendTarget', 'errorMessage' => 'Failed to identify message target.', 'description' => ''],
                    ['errorCode' => 'AliGenie.PushNotifications.InvalidParameter.MessageTemplateId', 'errorMessage' => 'The template information is invalid.', 'description' => ''],
                    ['errorCode' => 'AliGenie.PushNotifications.InvalidParameter', 'errorMessage' => 'The request parameter is invalid.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.Application.Invalid', 'errorMessage' => 'The AliGenie app info is invalid.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.Application.Status', 'errorMessage' => 'The AliGenie app has not been released.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.Application.Url', 'errorMessage' => 'The AliGenie app awaken url is missing.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.InvalidParameter.DeviceInfo', 'errorMessage' => 'Failed to identify device.', 'description' => ''],
                    ['errorCode' => 'AliGenie.Notifications.InvalidParameter.UserInfo', 'errorMessage' => 'Failed to identify user.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'AliGenie.Public.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
            'title' => 'Message Push_General-purpose Edition',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'UpdateReminder' => [
            'summary' => 'The user updates a reminder created on a Tmall Genie device.  ',
            'path' => '/v1.0/iap/reminder/update',
            'methods' => ['put'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_Token' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'The input parameters for this service request.',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'The ID of the reminder to update.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '20***34'],
                            'Content' => ['title' => '', 'description' => 'The detailed content of the reminder message.', 'type' => 'string', 'required' => true, 'example' => '更新提醒内容'],
                            'SubjectId' => ['title' => 'Application ID', 'type' => 'string', 'required' => true, 'example' => '20****01', 'description' => ''],
                            'UserId' => ['title' => 'Genie ID', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '12****56', 'description' => ''],
                            'DeviceId' => ['title' => 'Device ID', 'type' => 'string', 'required' => true, 'example' => 'BED****AAC', 'description' => ''],
                            'IsDebug' => ['title' => '', 'description' => 'Indicates whether this invocation is for debugging.', 'type' => 'boolean', 'required' => true, 'example' => 'true', 'default' => 'false'],
                            'RecurrenceRule' => [
                                'title' => '',
                                'description' => 'Scheduling information for the reminder.',
                                'type' => 'object',
                                'properties' => [
                                    'Year' => ['title' => '', 'description' => 'The year of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '2021'],
                                    'Month' => ['title' => '', 'description' => 'The month in which the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '10'],
                                    'Day' => ['title' => '', 'description' => 'The date on which the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '25'],
                                    'Hour' => ['title' => '', 'description' => 'The hour of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '12'],
                                    'Minute' => ['title' => '', 'description' => 'The minute of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '3'],
                                    'Second' => ['title' => '', 'description' => 'The second of the time when the reminder is triggered.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '3'],
                                    'Freq' => [
                                        'title' => '',
                                        'description' => 'Recurrence type:'."\n"
                                            ."\n"
                                            .'- ONCE: One-time'."\n"
                                            .'- DAILY: Daily'."\n"
                                            .'- WEEKLY: Weekly'."\n"
                                            .'- MONTHLY: Monthly',
                                        'type' => 'string',
                                        'required' => true,
                                        'example' => 'ONCE',
                                        'enum' => ['ONCE', 'DAILY', 'WEEKLY', 'MONTHLY'],
                                    ],
                                    'StartDateTime' => ['title' => '', 'description' => 'The effective start time of the reminder, in milliseconds as a UNIX timestamp.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '1635134400000'],
                                    'EndDateTime' => ['title' => '', 'description' => 'The expiration time when the reminder ends, in milliseconds as a UNIX timestamp.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '1635134700000'],
                                    'DaysOfMonth' => [
                                        'title' => '',
                                        'description' => 'Configure monthly reminders, specifying on which day(s) of each month the reminder is triggered.',
                                        'type' => 'array',
                                        'items' => ['description' => 'Set the specific day of the month for the reminder. Valid values range from 1 to 31.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1', 'title' => ''],
                                        'required' => false,
                                        'example' => '',
                                    ],
                                    'DaysOfWeek' => [
                                        'title' => '',
                                        'description' => 'Configure weekly reminders, indicating on which days of the week the reminder is triggered.',
                                        'type' => 'array',
                                        'items' => ['description' => 'Specific days of the week for weekly reminders. The valid values are 1–7.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1', 'title' => ''],
                                        'required' => false,
                                        'example' => '',
                                    ],
                                ],
                                'required' => true,
                                'example' => '',
                            ],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'User identifier information.',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'User identifier, set to either userOpenId or userUnionId.', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of User ID  '."\n"
                                    .'- OPEN_ID: The default User ID identifier.  '."\n"
                                    .'- UNION_ID: The organization-dimension User ID identifier. This value is available only after an organization has been requested on the Tmall Genie Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the user identifier for Maojing, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used in the Android application customer link.  '."\n"
                                    .'- SKILL_ID: Skill ID, used in the cloud link.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'Value corresponding to the encoding type.  '."\n"
                                ."\n"
                                .'- When the encoding type is set to SKILL_ID, the value is the application\'s Skill ID.  '."\n"
                                .'- When the encoding type is set to PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. This parameter is required when **IdType** is set to **UNION_ID**.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Device identity information.  ',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID, set to either deviceOpenId or deviceUnionId.  ', 'type' => 'string', 'required' => true, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the device ID.  '."\n"
                                    .'- OPEN_ID: Default device ID.  '."\n"
                                    .'- UNION_ID: Organization-level device ID. This value is available only after an organization has been registered on the Tmall Genie skill application platform.',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device identity for Tmall Genie, and each method corresponds to a different encoding type.  '."\n"
                                    .'- PACKAGE_NAME: APK package name, used in the Android application customer flow.  '."\n"
                                    .'- SKILL_ID: Skill ID, used in the cloud-based flow.  ',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type.'."\n"
                                ."\n"
                                .'- When the encoding type is set to SKILL_ID, the value is the application\'s Skill ID.'."\n"
                                .'- When the encoding type is set to PACKAGE_NAME, the value is the packageName of the corresponding client app.', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. This parameter is required when **IdType** is set to **UNION_ID**.  ', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'Success' => ['title' => '', 'description' => 'Service success indicator  ', 'type' => 'boolean', 'example' => 'true'],
                            'ErrorCode' => ['title' => '', 'description' => 'Error code  ', 'type' => 'integer', 'format' => 'int32', 'example' => '400'],
                            'ErrorMsg' => ['title' => '', 'description' => 'Error message  ', 'type' => 'string', 'example' => '不能设置过去的时间。'],
                            'Model' => ['title' => '', 'description' => 'ID of the updated reminder  ', 'type' => 'integer', 'format' => 'int64', 'example' => '20****1'],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Success\\": true,\\n  \\"ErrorCode\\": 400,\\n  \\"ErrorMsg\\": \\"不能设置过去的时间。\\",\\n  \\"Model\\": 0\\n}","type":"json"}]',
            'title' => 'Update Reminder  ',
            'translator' => 'machine',
            'changeSet' => [],
        ],
        'VideoAppReport' => [
            'summary' => 'Used by developers to report membership information in scenarios involving membership collaboration with CatGenie.',
            'path' => '/v1.0/iap/vip/use/video/report',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Payload',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'description' => '业务参数',
                        'type' => 'object',
                        'properties' => [
                            'DeviceId' => ['title' => '设备di', 'type' => 'string', 'required' => false, 'description' => '', 'example' => ''],
                            'isLogin' => ['description' => '会员是否登录。', 'type' => 'boolean', 'required' => true, 'example' => 'true', 'title' => ''],
                            'isVip' => ['description' => '该账号是否为会员。', 'type' => 'boolean', 'required' => true, 'example' => 'true', 'title' => ''],
                            'startTime' => ['description' => '会员的开始时间。', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '1652337963097', 'title' => ''],
                            'endTime' => ['description' => '会员的结束时间。', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '1652337963097', 'title' => ''],
                            'loginNick' => ['description' => '账号的昵称。', 'type' => 'string', 'required' => false, 'example' => 'test', 'title' => ''],
                            'phone' => ['description' => '账户的手机号码。', 'type' => 'string', 'required' => false, 'example' => '188*777', 'title' => ''],
                            'pkgName' => ['description' => '应用包名。', 'type' => 'string', 'required' => true, 'example' => 'com.***.test', 'title' => ''],
                            'originUuid' => ['description' => '明文uuid', 'type' => 'string', 'required' => false, 'example' => '731D5F********DC3B', 'title' => ''],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'UserInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => '用户标识信息',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => '用户标识,设置为userOpenId或userUnionId。', 'type' => 'string', 'required' => true, 'example' => 'HOFF****my7Iw='],
                            'IdType' => [
                                'title' => '',
                                'description' => '用户Id的类型  '."\n"
                                    .'- OPEN_ID:默认的用户ID标识。'."\n"
                                    .'- UNION_ID: 组织维度的用户ID标识,在天猫精灵技能应用开放平台申请过组织后才会有该值。',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => '编码类型,获取天猫精灵的用户标识的途径有多种,不同途径对应不同的编码类型。'."\n"
                                    .'- PACKAGE_NAME:apk包名,Android应用客户链路的编码类型。'."\n"
                                    .'- SKILL_ID:技能ID,云端链路的编码类型。',
                                'type' => 'string',
                                'required' => true,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => '编码类型对应的值'."\n"
                                ."\n"
                                .'- 编码类型是SKILL_ID时,其值为应用的Skill ID。'."\n"
                                .'- 编码类型是PACKAGE_NAME时,其值为对应客户端App的packageName。', 'type' => 'string', 'required' => true, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => '组织ID,如果IdType为UNION_ID时必填。', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'DeviceInfo',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Device identity information',
                        'type' => 'object',
                        'properties' => [
                            'Id' => ['title' => '', 'description' => 'Device ID, set to either deviceOpenId or deviceUnionId.', 'type' => 'string', 'required' => false, 'example' => 'DAFE****ce3ej='],
                            'IdType' => [
                                'title' => '',
                                'description' => 'Type of the device ID.'."\n"
                                    .'- OPEN_ID: The default device ID.'."\n"
                                    .'- UNION_ID: Organization-level device ID. This value is available only after an organization has been registered on the Tmall Genie Skill Application Open Platform.',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'OPEN_ID',
                                'enum' => ['OPEN_ID', 'UNION_ID'],
                            ],
                            'EncodeType' => [
                                'title' => '',
                                'description' => 'Encoding type. There are multiple ways to obtain the device ID from Tmall Genie, and each method corresponds to a different encoding type.'."\n"
                                    .'- PACKAGE_NAME: APK package name, used for Android application customer flows.'."\n"
                                    .'- SKILL_ID: Skill ID, used for cloud-based flows.',
                                'type' => 'string',
                                'required' => false,
                                'example' => 'PACKAGE_NAME',
                                'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                            ],
                            'EncodeKey' => ['title' => '', 'description' => '编码类型对应的值'."\n"
                                ."\n"
                                .'- 编码类型是SKILL_ID时,其值为应用的Skill ID。'."\n"
                                .'- 编码类型是PACKAGE_NAME时,其值为对应客户端App的packageName。', 'type' => 'string', 'required' => false, 'example' => '12**45'],
                            'OrganizationId' => ['title' => '', 'description' => 'Organization ID. Required when IdType is UNION_ID.', 'type' => 'string', 'required' => false, 'example' => '1**2'],
                        ],
                        'required' => false,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RetCode' => ['description' => 'The returned error code. `0` indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '0', 'title' => ''],
                            'RetMsg' => ['description' => 'The returned error message. This field is not returned if the operation succeeded.', 'type' => 'string', 'example' => '请求异常', 'title' => ''],
                            'RetValue' => ['description' => 'The returned invocation result.'."\n"
                                ."\n"
                                .'- true indicates success.'."\n"
                                .'- false indicates failure.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => '500', 'errorMessage' => '内部服务错误_xxx', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RetCode\\": 0,\\n  \\"RetMsg\\": \\"请求异常\\",\\n  \\"RetValue\\": true\\n}","type":"json"}]',
            'title' => 'Report Third-party Membership Information',
            'changeSet' => [],
            'translator' => 'machine',
        ],
        'WakeUpApp' => [
            'summary' => 'On a smart speaker with a screen, proactively launch the MeowGenie screen-display application. You must first request this capability on the MeowGenie skill application platform.',
            'path' => '/v1.0/iap/wakeup',
            'methods' => ['put'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AliGenie_Auth_SPI' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'Input parameters for the service request.',
                        'type' => 'object',
                        'properties' => [
                            'Path' => ['title' => '', 'description' => 'The path to launch the application, similar to the Link you enter in the skill application console.', 'type' => 'string', 'required' => true, 'example' => '应用拉起路径'],
                            'SubjectId' => ['title' => 'CatGenie application ID  ', 'type' => 'string', 'required' => true, 'example' => '2021****001', 'description' => ''],
                            'TargetInfo' => [
                                'title' => '',
                                'description' => 'Device Information of the target to be launched.',
                                'type' => 'object',
                                'properties' => [
                                    'TargetType' => [
                                        'title' => '',
                                        'description' => 'Push Target Type, which indicates the type of the obtained device identity:  '."\n"
                                            .'- `DEVICE_UNION_ID`: Device unionId  '."\n"
                                            .'- `DEVICE_OPEN_ID`: Device openId',
                                        'type' => 'string',
                                        'required' => true,
                                        'example' => 'DEVICE_OPEN_ID',
                                        'enum' => ['DEVICE_UNION_ID', 'DEVICE_OPEN_ID'],
                                    ],
                                    'TargetIdentity' => ['title' => '', 'description' => 'The identity value corresponding to the Push Target Type.', 'type' => 'string', 'required' => true, 'example' => '2VpiDQ6aMjxz******Eo7r6e08oIVZ3fKrm5TyEfY='],
                                    'OrganizationId' => ['title' => '', 'description' => 'Organization ID. This is required only when the push type is `XX_UNION_XX`. If you have multiple methods to obtain MeowGenie device IDs and need interoperability among them, you must request an organization from the platform. After approval, the platform will assign an organization ID.', 'type' => 'string', 'required' => false, 'example' => '11'],
                                    'EncodeType' => [
                                        'title' => '',
                                        'description' => 'Encoding type. There are multiple ways to obtain the MeowGenie device ID, and each method corresponds to a different encoding type:  '."\n"
                                            .'- PACKAGE_NAME: APK package name  '."\n"
                                            .'- SKILL_ID: Skill ID',
                                        'type' => 'string',
                                        'required' => true,
                                        'example' => 'PACKAGE_NAME',
                                        'enum' => ['PACKAGE_NAME', 'SKILL_ID'],
                                    ],
                                    'EncodeKey' => ['title' => '', 'description' => 'The value corresponding to the encoding type.  '."\n"
                                        .'- When the encoding type is SKILLID, the value is the skill ID obtained from the webhook service.  '."\n"
                                        .'- When the encoding type is PACKAGENAME, the value is the packageName of the corresponding client application.  ', 'type' => 'string', 'required' => true, 'example' => 'apk包名'],
                                ],
                                'required' => true,
                                'example' => '',
                            ],
                            'IsDebug' => ['title' => '', 'description' => 'The debug identity. When the skill application is in the debugging phase, this setting determines whether the retrieved skill application information is from the editing state or the online state.  ', 'type' => 'boolean', 'required' => false, 'example' => 'true', 'default' => 'false'],
                        ],
                        'required' => true,
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'AliGenie.WakeUpApp.Device.Offline', 'errorMessage' => 'The Target Device is not online.', 'description' => ''],
                    ['errorCode' => 'AliGenie.WakeUpApp.InvalidParameter.GenieAppId', 'errorMessage' => 'The AliGenie app does not release.', 'description' => ''],
                    ['errorCode' => 'AliGenie.WakeUpApp.InvalidParameter.Body', 'errorMessage' => 'You must specify request body.', 'description' => ''],
                    ['errorCode' => 'AliGenie.WakeUpApp.InvalidParameter.TargetInfo', 'errorMessage' => 'You must specify TargetInfo.', 'description' => ''],
                    ['errorCode' => 'AliGenie.WakeUpApp.InvalidParameter.Path', 'errorMessage' => 'You must specify Path.', 'description' => ''],
                    ['errorCode' => 'AliGenie.WakeUpApp.InvalidParameter.TargetIdentity', 'errorMessage' => 'You must specify TargetIdentity.', 'description' => ''],
                    ['errorCode' => 'AliGenie.WakeUpApp.InvalidParameter.EncodeKey', 'errorMessage' => 'You must specify EncodeKey.', 'description' => ''],
                    ['errorCode' => 'AliGenie.WakeUpApp.InvalidParameter.EncodeType', 'errorMessage' => 'You must specify EncodeType.', 'description' => ''],
                    ['errorCode' => 'AliGenie.WakeUpApp.InvalidParameter.TargetType', 'errorMessage' => 'You must specify TargetType.', 'description' => ''],
                    ['errorCode' => 'AliGenie.WakeUpApp.InvalidParameter.OrganizationId', 'errorMessage' => 'You must specify OrganizationId.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'AliGenie.Public.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
            'title' => 'Proactively Launch Screen-Display Application',
            'translator' => 'machine',
            'changeSet' => [],
        ],
    ],
    'endpoints' => [],
    'errorCodes' => [
        ['code' => 'AliGenie.GetDeviceIdByIdentity.InvalidParameter', 'message' => 'The request parameter is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.GetPhoneNumber.BizError', 'message' => 'The user has no phoneNumber.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.GetPhoneNumber.InvalidParameter.UserIdentity', 'message' => 'The user information does not exist.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.ListDeviceIdByIdentity.InvalidParameter', 'message' => 'The request parameter is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.Notifications.Application.Invalid', 'message' => 'The AliGenie app info is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.Notifications.Application.Status', 'message' => 'The AliGenie app has not been released.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.Notifications.Application.Url', 'message' => 'The AliGenie app awaken url is missing.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.Notifications.InvalidParameter.DeviceInfo', 'message' => 'The device not bind user.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.Notifications.InvalidParameter.DeviceInfo', 'message' => 'Failed to identify device.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.Notifications.InvalidParameter.UserInfo', 'message' => 'Failed to identify user.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.Public.InternalError', 'message' => 'An internal error occurred.', 'http_code' => 500, 'description' => ''],
        ['code' => 'AliGenie.Public.InvalidParameter', 'message' => 'The request parameter is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.PushNotifications.InvalidParameter', 'message' => 'The request parameter is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.PushNotifications.InvalidParameter.MessageTemplateId', 'message' => 'The template information is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.PushNotifications.InvalidParameter.MessageTemplateId', 'message' => 'The template is unavailable.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.PushNotifications.InvalidParameter.MessageTemplateId', 'message' => 'The template does not exist.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.PushNotifications.InvalidParameter.PlaceHolder', 'message' => 'The template placeholder information is missing.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.PushNotifications.InvalidParameter.SendTarget', 'message' => 'Failed to identify message target.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.Reminder.CreateFail', 'message' => 'The creation request is not allowed.', 'http_code' => 403, 'description' => ''],
        ['code' => 'AliGenie.Reminder.DeviceError', 'message' => 'The device is offline.', 'http_code' => 504, 'description' => ''],
        ['code' => 'AliGenie.Reminder.HasNoAuthority', 'message' => 'You are not authorized to perform this operation.', 'http_code' => 505, 'description' => ''],
        ['code' => 'AliGenie.Reminder.StopService', 'message' => 'The servic has stopped.', 'http_code' => 503, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.Device.Offline', 'message' => 'The target device is not online.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.Body', 'message' => 'You must specify request body.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.EncodeKey', 'message' => 'You must specify EncodeKey.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.EncodeType', 'message' => 'You must specify EncodeType.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.EncodeType', 'message' => 'The specified EncodeType is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.GenieAppId', 'message' => 'You must specify GenieAppId.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.GenieAppId', 'message' => 'The AliGenie app does not exist.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.GenieAppId', 'message' => 'The GenieApp information is inmcomplete.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.GenieAppId', 'message' => 'The AliGenie app has not configured wake up link.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.GenieAppId', 'message' => 'The application is not installed.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.GenieAppId', 'message' => 'The AliGenie app has not been released.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.OrganizationId', 'message' => 'You must specify OrganizationId.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.Path', 'message' => 'You must specify Path.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.Path', 'message' => 'The wake up path is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.TargetIdentity', 'message' => 'You must specify TargetIdentity.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.TargetInfo', 'message' => 'You must specify TargetInfo.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.TargetInfo', 'message' => 'The specified TargetInfo is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.TargetType', 'message' => 'You must specify TargetType.', 'http_code' => 400, 'description' => ''],
        ['code' => 'AliGenie.WakeUpApp.InvalidParameter.TargetType', 'message' => 'The specified TargetType is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'InvalidParameter', 'message' => 'The request parameter is invalid', 'http_code' => 400, 'description' => ''],
        ['code' => 'ServerError', 'message' => 'internal server error', 'http_code' => 500, 'description' => ''],
        ['code' => 'SystemError', 'message' => 'System Error occured.', 'http_code' => 400, 'description' => '.'],
    ],
    'changeSet' => [],
];