summaryrefslogblamecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ActionWorkbook.go
blob: 47f2c4eed89d69a0d592c8817f9173f1bb9780b5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
                                                


















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                 
                                                        
                                        










                                                                                       
                                




























































































                                                                                                                                                
                                                        
                                        










                                                                                       
                                





















































































                                                                                                                                             
                                                        
                                        










                                                                                       
                                





















































































                                                                                                                                                     
                                                        
                                        










                                                                                       
                                

















































































































                                                                                                                                                        
                                                        
                                        










                                                                                       
                                











































































































































































































































































                                                                                                                                                             
                                                        
                                        










                                                                                       
                                
























































































































                                                                                                                                                            
                                                        
                                        










                                                                                       
                                
























































































































                                                                                                                                                               
                                                        
                                        










                                                                                       
                                










































































































                                                                                                                                                        
                                                        
                                        










                                                                                       
                                





















































































                                                                                                                                                         
                                                        
                                        










                                                                                       
                                





















































































                                                                                                                                                   
                                                        
                                        










                                                                                       
                                










































































































                                                                                                                                                      
                                                        
                                        










                                                                                       
                                





















































































                                                                                                                                                         
                                                        
                                        










                                                                                       
                                





















































































                                                                                                                                                                
                                                        
                                        










                                                                                       
                                




























































































                                                                                                                                                      
                                                        
                                        










                                                                                       
                                










































                                                                                                                                       
// Code generated by msgraph.go/gen DO NOT EDIT.

package msgraph

import (
	"context"
	"encoding/json"
	"fmt"
	"io/ioutil"
	"net/http"

	"github.com/yaegashi/msgraph.go/jsonx"
)

// WorkbookChartCollectionAddRequestParameter undocumented
type WorkbookChartCollectionAddRequestParameter struct {
	// Type undocumented
	Type *string `json:"type,omitempty"`
	// SourceData undocumented
	SourceData json.RawMessage `json:"sourceData,omitempty"`
	// SeriesBy undocumented
	SeriesBy *string `json:"seriesBy,omitempty"`
}

// WorkbookNamedItemCollectionAddRequestParameter undocumented
type WorkbookNamedItemCollectionAddRequestParameter struct {
	// Name undocumented
	Name *string `json:"name,omitempty"`
	// Reference undocumented
	Reference json.RawMessage `json:"reference,omitempty"`
	// Comment undocumented
	Comment *string `json:"comment,omitempty"`
}

// WorkbookNamedItemCollectionAddFormulaLocalRequestParameter undocumented
type WorkbookNamedItemCollectionAddFormulaLocalRequestParameter struct {
	// Name undocumented
	Name *string `json:"name,omitempty"`
	// Formula undocumented
	Formula *string `json:"formula,omitempty"`
	// Comment undocumented
	Comment *string `json:"comment,omitempty"`
}

// WorkbookPivotTableCollectionRefreshAllRequestParameter undocumented
type WorkbookPivotTableCollectionRefreshAllRequestParameter struct {
}

// WorkbookTableCollectionAddRequestParameter undocumented
type WorkbookTableCollectionAddRequestParameter struct {
	// Address undocumented
	Address *string `json:"address,omitempty"`
	// HasHeaders undocumented
	HasHeaders *bool `json:"hasHeaders,omitempty"`
}

// WorkbookTableColumnCollectionAddRequestParameter undocumented
type WorkbookTableColumnCollectionAddRequestParameter struct {
	// Index undocumented
	Index *int `json:"index,omitempty"`
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
	// Name undocumented
	Name *string `json:"name,omitempty"`
}

// WorkbookTableRowCollectionAddRequestParameter undocumented
type WorkbookTableRowCollectionAddRequestParameter struct {
	// Index undocumented
	Index *int `json:"index,omitempty"`
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookWorksheetCollectionAddRequestParameter undocumented
type WorkbookWorksheetCollectionAddRequestParameter struct {
	// Name undocumented
	Name *string `json:"name,omitempty"`
}

// WorkbookCreateSessionRequestParameter undocumented
type WorkbookCreateSessionRequestParameter struct {
	// PersistChanges undocumented
	PersistChanges *bool `json:"persistChanges,omitempty"`
}

// WorkbookCloseSessionRequestParameter undocumented
type WorkbookCloseSessionRequestParameter struct {
}

// WorkbookRefreshSessionRequestParameter undocumented
type WorkbookRefreshSessionRequestParameter struct {
}

// WorkbookApplicationCalculateRequestParameter undocumented
type WorkbookApplicationCalculateRequestParameter struct {
	// CalculationType undocumented
	CalculationType *string `json:"calculationType,omitempty"`
}

// WorkbookChartSetDataRequestParameter undocumented
type WorkbookChartSetDataRequestParameter struct {
	// SourceData undocumented
	SourceData json.RawMessage `json:"sourceData,omitempty"`
	// SeriesBy undocumented
	SeriesBy *string `json:"seriesBy,omitempty"`
}

// WorkbookChartSetPositionRequestParameter undocumented
type WorkbookChartSetPositionRequestParameter struct {
	// StartCell undocumented
	StartCell json.RawMessage `json:"startCell,omitempty"`
	// EndCell undocumented
	EndCell json.RawMessage `json:"endCell,omitempty"`
}

// WorkbookChartFillClearRequestParameter undocumented
type WorkbookChartFillClearRequestParameter struct {
}

// WorkbookChartFillSetSolidColorRequestParameter undocumented
type WorkbookChartFillSetSolidColorRequestParameter struct {
	// Color undocumented
	Color *string `json:"color,omitempty"`
}

// WorkbookChartLineFormatClearRequestParameter undocumented
type WorkbookChartLineFormatClearRequestParameter struct {
}

// WorkbookFilterApplyRequestParameter undocumented
type WorkbookFilterApplyRequestParameter struct {
	// Criteria undocumented
	Criteria *WorkbookFilterCriteria `json:"criteria,omitempty"`
}

// WorkbookFilterApplyBottomItemsFilterRequestParameter undocumented
type WorkbookFilterApplyBottomItemsFilterRequestParameter struct {
	// Count undocumented
	Count *int `json:"count,omitempty"`
}

// WorkbookFilterApplyBottomPercentFilterRequestParameter undocumented
type WorkbookFilterApplyBottomPercentFilterRequestParameter struct {
	// Percent undocumented
	Percent *int `json:"percent,omitempty"`
}

// WorkbookFilterApplyCellColorFilterRequestParameter undocumented
type WorkbookFilterApplyCellColorFilterRequestParameter struct {
	// Color undocumented
	Color *string `json:"color,omitempty"`
}

// WorkbookFilterApplyCustomFilterRequestParameter undocumented
type WorkbookFilterApplyCustomFilterRequestParameter struct {
	// Criteria1 undocumented
	Criteria1 *string `json:"criteria1,omitempty"`
	// Criteria2 undocumented
	Criteria2 *string `json:"criteria2,omitempty"`
	// Oper undocumented
	Oper *string `json:"oper,omitempty"`
}

// WorkbookFilterApplyDynamicFilterRequestParameter undocumented
type WorkbookFilterApplyDynamicFilterRequestParameter struct {
	// Criteria undocumented
	Criteria *string `json:"criteria,omitempty"`
}

// WorkbookFilterApplyFontColorFilterRequestParameter undocumented
type WorkbookFilterApplyFontColorFilterRequestParameter struct {
	// Color undocumented
	Color *string `json:"color,omitempty"`
}

// WorkbookFilterApplyIconFilterRequestParameter undocumented
type WorkbookFilterApplyIconFilterRequestParameter struct {
	// Icon undocumented
	Icon *WorkbookIcon `json:"icon,omitempty"`
}

// WorkbookFilterApplyTopItemsFilterRequestParameter undocumented
type WorkbookFilterApplyTopItemsFilterRequestParameter struct {
	// Count undocumented
	Count *int `json:"count,omitempty"`
}

// WorkbookFilterApplyTopPercentFilterRequestParameter undocumented
type WorkbookFilterApplyTopPercentFilterRequestParameter struct {
	// Percent undocumented
	Percent *int `json:"percent,omitempty"`
}

// WorkbookFilterApplyValuesFilterRequestParameter undocumented
type WorkbookFilterApplyValuesFilterRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFilterClearRequestParameter undocumented
type WorkbookFilterClearRequestParameter struct {
}

// WorkbookFunctionsAbsRequestParameter undocumented
type WorkbookFunctionsAbsRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsAccrIntRequestParameter undocumented
type WorkbookFunctionsAccrIntRequestParameter struct {
	// Issue undocumented
	Issue json.RawMessage `json:"issue,omitempty"`
	// FirstInterest undocumented
	FirstInterest json.RawMessage `json:"firstInterest,omitempty"`
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Par undocumented
	Par json.RawMessage `json:"par,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
	// CalcMethod undocumented
	CalcMethod json.RawMessage `json:"calcMethod,omitempty"`
}

// WorkbookFunctionsAccrIntMRequestParameter undocumented
type WorkbookFunctionsAccrIntMRequestParameter struct {
	// Issue undocumented
	Issue json.RawMessage `json:"issue,omitempty"`
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Par undocumented
	Par json.RawMessage `json:"par,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsAcosRequestParameter undocumented
type WorkbookFunctionsAcosRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsAcoshRequestParameter undocumented
type WorkbookFunctionsAcoshRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsAcotRequestParameter undocumented
type WorkbookFunctionsAcotRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsAcothRequestParameter undocumented
type WorkbookFunctionsAcothRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsAmorDegrcRequestParameter undocumented
type WorkbookFunctionsAmorDegrcRequestParameter struct {
	// Cost undocumented
	Cost json.RawMessage `json:"cost,omitempty"`
	// DatePurchased undocumented
	DatePurchased json.RawMessage `json:"datePurchased,omitempty"`
	// FirstPeriod undocumented
	FirstPeriod json.RawMessage `json:"firstPeriod,omitempty"`
	// Salvage undocumented
	Salvage json.RawMessage `json:"salvage,omitempty"`
	// Period undocumented
	Period json.RawMessage `json:"period,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsAmorLincRequestParameter undocumented
type WorkbookFunctionsAmorLincRequestParameter struct {
	// Cost undocumented
	Cost json.RawMessage `json:"cost,omitempty"`
	// DatePurchased undocumented
	DatePurchased json.RawMessage `json:"datePurchased,omitempty"`
	// FirstPeriod undocumented
	FirstPeriod json.RawMessage `json:"firstPeriod,omitempty"`
	// Salvage undocumented
	Salvage json.RawMessage `json:"salvage,omitempty"`
	// Period undocumented
	Period json.RawMessage `json:"period,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsAndRequestParameter undocumented
type WorkbookFunctionsAndRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsArabicRequestParameter undocumented
type WorkbookFunctionsArabicRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsAreasRequestParameter undocumented
type WorkbookFunctionsAreasRequestParameter struct {
	// Reference undocumented
	Reference json.RawMessage `json:"reference,omitempty"`
}

// WorkbookFunctionsAscRequestParameter undocumented
type WorkbookFunctionsAscRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsAsinRequestParameter undocumented
type WorkbookFunctionsAsinRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsAsinhRequestParameter undocumented
type WorkbookFunctionsAsinhRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsAtanRequestParameter undocumented
type WorkbookFunctionsAtanRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsAtan2RequestParameter undocumented
type WorkbookFunctionsAtan2RequestParameter struct {
	// XNum undocumented
	XNum json.RawMessage `json:"xNum,omitempty"`
	// YNum undocumented
	YNum json.RawMessage `json:"yNum,omitempty"`
}

// WorkbookFunctionsAtanhRequestParameter undocumented
type WorkbookFunctionsAtanhRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsAveDevRequestParameter undocumented
type WorkbookFunctionsAveDevRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsAverageRequestParameter undocumented
type WorkbookFunctionsAverageRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsAverageARequestParameter undocumented
type WorkbookFunctionsAverageARequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsAverageIfRequestParameter undocumented
type WorkbookFunctionsAverageIfRequestParameter struct {
	// Range undocumented
	Range json.RawMessage `json:"range,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
	// AverageRange undocumented
	AverageRange json.RawMessage `json:"averageRange,omitempty"`
}

// WorkbookFunctionsAverageIfsRequestParameter undocumented
type WorkbookFunctionsAverageIfsRequestParameter struct {
	// AverageRange undocumented
	AverageRange json.RawMessage `json:"averageRange,omitempty"`
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsBahtTextRequestParameter undocumented
type WorkbookFunctionsBahtTextRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsBaseRequestParameter undocumented
type WorkbookFunctionsBaseRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Radix undocumented
	Radix json.RawMessage `json:"radix,omitempty"`
	// MinLength undocumented
	MinLength json.RawMessage `json:"minLength,omitempty"`
}

// WorkbookFunctionsBesselIRequestParameter undocumented
type WorkbookFunctionsBesselIRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// N undocumented
	N json.RawMessage `json:"n,omitempty"`
}

// WorkbookFunctionsBesselJRequestParameter undocumented
type WorkbookFunctionsBesselJRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// N undocumented
	N json.RawMessage `json:"n,omitempty"`
}

// WorkbookFunctionsBesselKRequestParameter undocumented
type WorkbookFunctionsBesselKRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// N undocumented
	N json.RawMessage `json:"n,omitempty"`
}

// WorkbookFunctionsBesselYRequestParameter undocumented
type WorkbookFunctionsBesselYRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// N undocumented
	N json.RawMessage `json:"n,omitempty"`
}

// WorkbookFunctionsBeta_DistRequestParameter undocumented
type WorkbookFunctionsBeta_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Alpha undocumented
	Alpha json.RawMessage `json:"alpha,omitempty"`
	// Beta undocumented
	Beta json.RawMessage `json:"beta,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
	// A undocumented
	A json.RawMessage `json:"A,omitempty"`
	// B undocumented
	B json.RawMessage `json:"B,omitempty"`
}

// WorkbookFunctionsBeta_InvRequestParameter undocumented
type WorkbookFunctionsBeta_InvRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// Alpha undocumented
	Alpha json.RawMessage `json:"alpha,omitempty"`
	// Beta undocumented
	Beta json.RawMessage `json:"beta,omitempty"`
	// A undocumented
	A json.RawMessage `json:"A,omitempty"`
	// B undocumented
	B json.RawMessage `json:"B,omitempty"`
}

// WorkbookFunctionsBin2DecRequestParameter undocumented
type WorkbookFunctionsBin2DecRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsBin2HexRequestParameter undocumented
type WorkbookFunctionsBin2HexRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Places undocumented
	Places json.RawMessage `json:"places,omitempty"`
}

// WorkbookFunctionsBin2OctRequestParameter undocumented
type WorkbookFunctionsBin2OctRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Places undocumented
	Places json.RawMessage `json:"places,omitempty"`
}

// WorkbookFunctionsBinom_DistRequestParameter undocumented
type WorkbookFunctionsBinom_DistRequestParameter struct {
	// NumberS undocumented
	NumberS json.RawMessage `json:"numberS,omitempty"`
	// Trials undocumented
	Trials json.RawMessage `json:"trials,omitempty"`
	// ProbabilityS undocumented
	ProbabilityS json.RawMessage `json:"probabilityS,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsBinom_Dist_RangeRequestParameter undocumented
type WorkbookFunctionsBinom_Dist_RangeRequestParameter struct {
	// Trials undocumented
	Trials json.RawMessage `json:"trials,omitempty"`
	// ProbabilityS undocumented
	ProbabilityS json.RawMessage `json:"probabilityS,omitempty"`
	// NumberS undocumented
	NumberS json.RawMessage `json:"numberS,omitempty"`
	// NumberS2 undocumented
	NumberS2 json.RawMessage `json:"numberS2,omitempty"`
}

// WorkbookFunctionsBinom_InvRequestParameter undocumented
type WorkbookFunctionsBinom_InvRequestParameter struct {
	// Trials undocumented
	Trials json.RawMessage `json:"trials,omitempty"`
	// ProbabilityS undocumented
	ProbabilityS json.RawMessage `json:"probabilityS,omitempty"`
	// Alpha undocumented
	Alpha json.RawMessage `json:"alpha,omitempty"`
}

// WorkbookFunctionsBitandRequestParameter undocumented
type WorkbookFunctionsBitandRequestParameter struct {
	// Number1 undocumented
	Number1 json.RawMessage `json:"number1,omitempty"`
	// Number2 undocumented
	Number2 json.RawMessage `json:"number2,omitempty"`
}

// WorkbookFunctionsBitlshiftRequestParameter undocumented
type WorkbookFunctionsBitlshiftRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// ShiftAmount undocumented
	ShiftAmount json.RawMessage `json:"shiftAmount,omitempty"`
}

// WorkbookFunctionsBitorRequestParameter undocumented
type WorkbookFunctionsBitorRequestParameter struct {
	// Number1 undocumented
	Number1 json.RawMessage `json:"number1,omitempty"`
	// Number2 undocumented
	Number2 json.RawMessage `json:"number2,omitempty"`
}

// WorkbookFunctionsBitrshiftRequestParameter undocumented
type WorkbookFunctionsBitrshiftRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// ShiftAmount undocumented
	ShiftAmount json.RawMessage `json:"shiftAmount,omitempty"`
}

// WorkbookFunctionsBitxorRequestParameter undocumented
type WorkbookFunctionsBitxorRequestParameter struct {
	// Number1 undocumented
	Number1 json.RawMessage `json:"number1,omitempty"`
	// Number2 undocumented
	Number2 json.RawMessage `json:"number2,omitempty"`
}

// WorkbookFunctionsCeiling_MathRequestParameter undocumented
type WorkbookFunctionsCeiling_MathRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Significance undocumented
	Significance json.RawMessage `json:"significance,omitempty"`
	// Mode undocumented
	Mode json.RawMessage `json:"mode,omitempty"`
}

// WorkbookFunctionsCeiling_PreciseRequestParameter undocumented
type WorkbookFunctionsCeiling_PreciseRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Significance undocumented
	Significance json.RawMessage `json:"significance,omitempty"`
}

// WorkbookFunctionsCharRequestParameter undocumented
type WorkbookFunctionsCharRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsChiSq_DistRequestParameter undocumented
type WorkbookFunctionsChiSq_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// DegFreedom undocumented
	DegFreedom json.RawMessage `json:"degFreedom,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsChiSq_Dist_RTRequestParameter undocumented
type WorkbookFunctionsChiSq_Dist_RTRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// DegFreedom undocumented
	DegFreedom json.RawMessage `json:"degFreedom,omitempty"`
}

// WorkbookFunctionsChiSq_InvRequestParameter undocumented
type WorkbookFunctionsChiSq_InvRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// DegFreedom undocumented
	DegFreedom json.RawMessage `json:"degFreedom,omitempty"`
}

// WorkbookFunctionsChiSq_Inv_RTRequestParameter undocumented
type WorkbookFunctionsChiSq_Inv_RTRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// DegFreedom undocumented
	DegFreedom json.RawMessage `json:"degFreedom,omitempty"`
}

// WorkbookFunctionsChooseRequestParameter undocumented
type WorkbookFunctionsChooseRequestParameter struct {
	// IndexNum undocumented
	IndexNum json.RawMessage `json:"indexNum,omitempty"`
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsCleanRequestParameter undocumented
type WorkbookFunctionsCleanRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsCodeRequestParameter undocumented
type WorkbookFunctionsCodeRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsColumnsRequestParameter undocumented
type WorkbookFunctionsColumnsRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
}

// WorkbookFunctionsCombinRequestParameter undocumented
type WorkbookFunctionsCombinRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// NumberChosen undocumented
	NumberChosen json.RawMessage `json:"numberChosen,omitempty"`
}

// WorkbookFunctionsCombinaRequestParameter undocumented
type WorkbookFunctionsCombinaRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// NumberChosen undocumented
	NumberChosen json.RawMessage `json:"numberChosen,omitempty"`
}

// WorkbookFunctionsComplexRequestParameter undocumented
type WorkbookFunctionsComplexRequestParameter struct {
	// RealNum undocumented
	RealNum json.RawMessage `json:"realNum,omitempty"`
	// INum undocumented
	INum json.RawMessage `json:"iNum,omitempty"`
	// Suffix undocumented
	Suffix json.RawMessage `json:"suffix,omitempty"`
}

// WorkbookFunctionsConcatenateRequestParameter undocumented
type WorkbookFunctionsConcatenateRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsConfidence_NormRequestParameter undocumented
type WorkbookFunctionsConfidence_NormRequestParameter struct {
	// Alpha undocumented
	Alpha json.RawMessage `json:"alpha,omitempty"`
	// StandardDev undocumented
	StandardDev json.RawMessage `json:"standardDev,omitempty"`
	// Size undocumented
	Size json.RawMessage `json:"size,omitempty"`
}

// WorkbookFunctionsConfidence_TRequestParameter undocumented
type WorkbookFunctionsConfidence_TRequestParameter struct {
	// Alpha undocumented
	Alpha json.RawMessage `json:"alpha,omitempty"`
	// StandardDev undocumented
	StandardDev json.RawMessage `json:"standardDev,omitempty"`
	// Size undocumented
	Size json.RawMessage `json:"size,omitempty"`
}

// WorkbookFunctionsConvertRequestParameter undocumented
type WorkbookFunctionsConvertRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// FromUnit undocumented
	FromUnit json.RawMessage `json:"fromUnit,omitempty"`
	// ToUnit undocumented
	ToUnit json.RawMessage `json:"toUnit,omitempty"`
}

// WorkbookFunctionsCosRequestParameter undocumented
type WorkbookFunctionsCosRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsCoshRequestParameter undocumented
type WorkbookFunctionsCoshRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsCotRequestParameter undocumented
type WorkbookFunctionsCotRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsCothRequestParameter undocumented
type WorkbookFunctionsCothRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsCountRequestParameter undocumented
type WorkbookFunctionsCountRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsCountARequestParameter undocumented
type WorkbookFunctionsCountARequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsCountBlankRequestParameter undocumented
type WorkbookFunctionsCountBlankRequestParameter struct {
	// Range undocumented
	Range json.RawMessage `json:"range,omitempty"`
}

// WorkbookFunctionsCountIfRequestParameter undocumented
type WorkbookFunctionsCountIfRequestParameter struct {
	// Range undocumented
	Range json.RawMessage `json:"range,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsCountIfsRequestParameter undocumented
type WorkbookFunctionsCountIfsRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsCoupDayBsRequestParameter undocumented
type WorkbookFunctionsCoupDayBsRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsCoupDaysRequestParameter undocumented
type WorkbookFunctionsCoupDaysRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsCoupDaysNcRequestParameter undocumented
type WorkbookFunctionsCoupDaysNcRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsCoupNcdRequestParameter undocumented
type WorkbookFunctionsCoupNcdRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsCoupNumRequestParameter undocumented
type WorkbookFunctionsCoupNumRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsCoupPcdRequestParameter undocumented
type WorkbookFunctionsCoupPcdRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsCscRequestParameter undocumented
type WorkbookFunctionsCscRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsCschRequestParameter undocumented
type WorkbookFunctionsCschRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsCumIPmtRequestParameter undocumented
type WorkbookFunctionsCumIPmtRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// StartPeriod undocumented
	StartPeriod json.RawMessage `json:"startPeriod,omitempty"`
	// EndPeriod undocumented
	EndPeriod json.RawMessage `json:"endPeriod,omitempty"`
	// Type undocumented
	Type json.RawMessage `json:"type,omitempty"`
}

// WorkbookFunctionsCumPrincRequestParameter undocumented
type WorkbookFunctionsCumPrincRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// StartPeriod undocumented
	StartPeriod json.RawMessage `json:"startPeriod,omitempty"`
	// EndPeriod undocumented
	EndPeriod json.RawMessage `json:"endPeriod,omitempty"`
	// Type undocumented
	Type json.RawMessage `json:"type,omitempty"`
}

// WorkbookFunctionsDaverageRequestParameter undocumented
type WorkbookFunctionsDaverageRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDcountRequestParameter undocumented
type WorkbookFunctionsDcountRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDcountARequestParameter undocumented
type WorkbookFunctionsDcountARequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDgetRequestParameter undocumented
type WorkbookFunctionsDgetRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDmaxRequestParameter undocumented
type WorkbookFunctionsDmaxRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDminRequestParameter undocumented
type WorkbookFunctionsDminRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDproductRequestParameter undocumented
type WorkbookFunctionsDproductRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDstDevRequestParameter undocumented
type WorkbookFunctionsDstDevRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDstDevPRequestParameter undocumented
type WorkbookFunctionsDstDevPRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDsumRequestParameter undocumented
type WorkbookFunctionsDsumRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDvarRequestParameter undocumented
type WorkbookFunctionsDvarRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDvarPRequestParameter undocumented
type WorkbookFunctionsDvarPRequestParameter struct {
	// Database undocumented
	Database json.RawMessage `json:"database,omitempty"`
	// Field undocumented
	Field json.RawMessage `json:"field,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
}

// WorkbookFunctionsDateRequestParameter undocumented
type WorkbookFunctionsDateRequestParameter struct {
	// Year undocumented
	Year json.RawMessage `json:"year,omitempty"`
	// Month undocumented
	Month json.RawMessage `json:"month,omitempty"`
	// Day undocumented
	Day json.RawMessage `json:"day,omitempty"`
}

// WorkbookFunctionsDatevalueRequestParameter undocumented
type WorkbookFunctionsDatevalueRequestParameter struct {
	// DateText undocumented
	DateText json.RawMessage `json:"dateText,omitempty"`
}

// WorkbookFunctionsDayRequestParameter undocumented
type WorkbookFunctionsDayRequestParameter struct {
	// SerialNumber undocumented
	SerialNumber json.RawMessage `json:"serialNumber,omitempty"`
}

// WorkbookFunctionsDaysRequestParameter undocumented
type WorkbookFunctionsDaysRequestParameter struct {
	// EndDate undocumented
	EndDate json.RawMessage `json:"endDate,omitempty"`
	// StartDate undocumented
	StartDate json.RawMessage `json:"startDate,omitempty"`
}

// WorkbookFunctionsDays360RequestParameter undocumented
type WorkbookFunctionsDays360RequestParameter struct {
	// StartDate undocumented
	StartDate json.RawMessage `json:"startDate,omitempty"`
	// EndDate undocumented
	EndDate json.RawMessage `json:"endDate,omitempty"`
	// Method undocumented
	Method json.RawMessage `json:"method,omitempty"`
}

// WorkbookFunctionsDbRequestParameter undocumented
type WorkbookFunctionsDbRequestParameter struct {
	// Cost undocumented
	Cost json.RawMessage `json:"cost,omitempty"`
	// Salvage undocumented
	Salvage json.RawMessage `json:"salvage,omitempty"`
	// Life undocumented
	Life json.RawMessage `json:"life,omitempty"`
	// Period undocumented
	Period json.RawMessage `json:"period,omitempty"`
	// Month undocumented
	Month json.RawMessage `json:"month,omitempty"`
}

// WorkbookFunctionsDbcsRequestParameter undocumented
type WorkbookFunctionsDbcsRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsDdbRequestParameter undocumented
type WorkbookFunctionsDdbRequestParameter struct {
	// Cost undocumented
	Cost json.RawMessage `json:"cost,omitempty"`
	// Salvage undocumented
	Salvage json.RawMessage `json:"salvage,omitempty"`
	// Life undocumented
	Life json.RawMessage `json:"life,omitempty"`
	// Period undocumented
	Period json.RawMessage `json:"period,omitempty"`
	// Factor undocumented
	Factor json.RawMessage `json:"factor,omitempty"`
}

// WorkbookFunctionsDec2BinRequestParameter undocumented
type WorkbookFunctionsDec2BinRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Places undocumented
	Places json.RawMessage `json:"places,omitempty"`
}

// WorkbookFunctionsDec2HexRequestParameter undocumented
type WorkbookFunctionsDec2HexRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Places undocumented
	Places json.RawMessage `json:"places,omitempty"`
}

// WorkbookFunctionsDec2OctRequestParameter undocumented
type WorkbookFunctionsDec2OctRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Places undocumented
	Places json.RawMessage `json:"places,omitempty"`
}

// WorkbookFunctionsDecimalRequestParameter undocumented
type WorkbookFunctionsDecimalRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Radix undocumented
	Radix json.RawMessage `json:"radix,omitempty"`
}

// WorkbookFunctionsDegreesRequestParameter undocumented
type WorkbookFunctionsDegreesRequestParameter struct {
	// Angle undocumented
	Angle json.RawMessage `json:"angle,omitempty"`
}

// WorkbookFunctionsDeltaRequestParameter undocumented
type WorkbookFunctionsDeltaRequestParameter struct {
	// Number1 undocumented
	Number1 json.RawMessage `json:"number1,omitempty"`
	// Number2 undocumented
	Number2 json.RawMessage `json:"number2,omitempty"`
}

// WorkbookFunctionsDevSqRequestParameter undocumented
type WorkbookFunctionsDevSqRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsDiscRequestParameter undocumented
type WorkbookFunctionsDiscRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Pr undocumented
	Pr json.RawMessage `json:"pr,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsDollarRequestParameter undocumented
type WorkbookFunctionsDollarRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Decimals undocumented
	Decimals json.RawMessage `json:"decimals,omitempty"`
}

// WorkbookFunctionsDollarDeRequestParameter undocumented
type WorkbookFunctionsDollarDeRequestParameter struct {
	// FractionalDollar undocumented
	FractionalDollar json.RawMessage `json:"fractionalDollar,omitempty"`
	// Fraction undocumented
	Fraction json.RawMessage `json:"fraction,omitempty"`
}

// WorkbookFunctionsDollarFrRequestParameter undocumented
type WorkbookFunctionsDollarFrRequestParameter struct {
	// DecimalDollar undocumented
	DecimalDollar json.RawMessage `json:"decimalDollar,omitempty"`
	// Fraction undocumented
	Fraction json.RawMessage `json:"fraction,omitempty"`
}

// WorkbookFunctionsDurationRequestParameter undocumented
type WorkbookFunctionsDurationRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Coupon undocumented
	Coupon json.RawMessage `json:"coupon,omitempty"`
	// Yld undocumented
	Yld json.RawMessage `json:"yld,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsEcma_CeilingRequestParameter undocumented
type WorkbookFunctionsEcma_CeilingRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Significance undocumented
	Significance json.RawMessage `json:"significance,omitempty"`
}

// WorkbookFunctionsEdateRequestParameter undocumented
type WorkbookFunctionsEdateRequestParameter struct {
	// StartDate undocumented
	StartDate json.RawMessage `json:"startDate,omitempty"`
	// Months undocumented
	Months json.RawMessage `json:"months,omitempty"`
}

// WorkbookFunctionsEffectRequestParameter undocumented
type WorkbookFunctionsEffectRequestParameter struct {
	// NominalRate undocumented
	NominalRate json.RawMessage `json:"nominalRate,omitempty"`
	// Npery undocumented
	Npery json.RawMessage `json:"npery,omitempty"`
}

// WorkbookFunctionsEoMonthRequestParameter undocumented
type WorkbookFunctionsEoMonthRequestParameter struct {
	// StartDate undocumented
	StartDate json.RawMessage `json:"startDate,omitempty"`
	// Months undocumented
	Months json.RawMessage `json:"months,omitempty"`
}

// WorkbookFunctionsErfRequestParameter undocumented
type WorkbookFunctionsErfRequestParameter struct {
	// LowerLimit undocumented
	LowerLimit json.RawMessage `json:"lowerLimit,omitempty"`
	// UpperLimit undocumented
	UpperLimit json.RawMessage `json:"upperLimit,omitempty"`
}

// WorkbookFunctionsErfCRequestParameter undocumented
type WorkbookFunctionsErfCRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
}

// WorkbookFunctionsErfC_PreciseRequestParameter undocumented
type WorkbookFunctionsErfC_PreciseRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"X,omitempty"`
}

// WorkbookFunctionsErf_PreciseRequestParameter undocumented
type WorkbookFunctionsErf_PreciseRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"X,omitempty"`
}

// WorkbookFunctionsError_TypeRequestParameter undocumented
type WorkbookFunctionsError_TypeRequestParameter struct {
	// ErrorVal undocumented
	ErrorVal json.RawMessage `json:"errorVal,omitempty"`
}

// WorkbookFunctionsEvenRequestParameter undocumented
type WorkbookFunctionsEvenRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsExactRequestParameter undocumented
type WorkbookFunctionsExactRequestParameter struct {
	// Text1 undocumented
	Text1 json.RawMessage `json:"text1,omitempty"`
	// Text2 undocumented
	Text2 json.RawMessage `json:"text2,omitempty"`
}

// WorkbookFunctionsExpRequestParameter undocumented
type WorkbookFunctionsExpRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsExpon_DistRequestParameter undocumented
type WorkbookFunctionsExpon_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Lambda undocumented
	Lambda json.RawMessage `json:"lambda,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsFvscheduleRequestParameter undocumented
type WorkbookFunctionsFvscheduleRequestParameter struct {
	// Principal undocumented
	Principal json.RawMessage `json:"principal,omitempty"`
	// Schedule undocumented
	Schedule json.RawMessage `json:"schedule,omitempty"`
}

// WorkbookFunctionsF_DistRequestParameter undocumented
type WorkbookFunctionsF_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// DegFreedom1 undocumented
	DegFreedom1 json.RawMessage `json:"degFreedom1,omitempty"`
	// DegFreedom2 undocumented
	DegFreedom2 json.RawMessage `json:"degFreedom2,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsF_Dist_RTRequestParameter undocumented
type WorkbookFunctionsF_Dist_RTRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// DegFreedom1 undocumented
	DegFreedom1 json.RawMessage `json:"degFreedom1,omitempty"`
	// DegFreedom2 undocumented
	DegFreedom2 json.RawMessage `json:"degFreedom2,omitempty"`
}

// WorkbookFunctionsF_InvRequestParameter undocumented
type WorkbookFunctionsF_InvRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// DegFreedom1 undocumented
	DegFreedom1 json.RawMessage `json:"degFreedom1,omitempty"`
	// DegFreedom2 undocumented
	DegFreedom2 json.RawMessage `json:"degFreedom2,omitempty"`
}

// WorkbookFunctionsF_Inv_RTRequestParameter undocumented
type WorkbookFunctionsF_Inv_RTRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// DegFreedom1 undocumented
	DegFreedom1 json.RawMessage `json:"degFreedom1,omitempty"`
	// DegFreedom2 undocumented
	DegFreedom2 json.RawMessage `json:"degFreedom2,omitempty"`
}

// WorkbookFunctionsFactRequestParameter undocumented
type WorkbookFunctionsFactRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsFactDoubleRequestParameter undocumented
type WorkbookFunctionsFactDoubleRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsFalseRequestParameter undocumented
type WorkbookFunctionsFalseRequestParameter struct {
}

// WorkbookFunctionsFindRequestParameter undocumented
type WorkbookFunctionsFindRequestParameter struct {
	// FindText undocumented
	FindText json.RawMessage `json:"findText,omitempty"`
	// WithinText undocumented
	WithinText json.RawMessage `json:"withinText,omitempty"`
	// StartNum undocumented
	StartNum json.RawMessage `json:"startNum,omitempty"`
}

// WorkbookFunctionsFindBRequestParameter undocumented
type WorkbookFunctionsFindBRequestParameter struct {
	// FindText undocumented
	FindText json.RawMessage `json:"findText,omitempty"`
	// WithinText undocumented
	WithinText json.RawMessage `json:"withinText,omitempty"`
	// StartNum undocumented
	StartNum json.RawMessage `json:"startNum,omitempty"`
}

// WorkbookFunctionsFisherRequestParameter undocumented
type WorkbookFunctionsFisherRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
}

// WorkbookFunctionsFisherInvRequestParameter undocumented
type WorkbookFunctionsFisherInvRequestParameter struct {
	// Y undocumented
	Y json.RawMessage `json:"y,omitempty"`
}

// WorkbookFunctionsFixedRequestParameter undocumented
type WorkbookFunctionsFixedRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Decimals undocumented
	Decimals json.RawMessage `json:"decimals,omitempty"`
	// NoCommas undocumented
	NoCommas json.RawMessage `json:"noCommas,omitempty"`
}

// WorkbookFunctionsFloor_MathRequestParameter undocumented
type WorkbookFunctionsFloor_MathRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Significance undocumented
	Significance json.RawMessage `json:"significance,omitempty"`
	// Mode undocumented
	Mode json.RawMessage `json:"mode,omitempty"`
}

// WorkbookFunctionsFloor_PreciseRequestParameter undocumented
type WorkbookFunctionsFloor_PreciseRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Significance undocumented
	Significance json.RawMessage `json:"significance,omitempty"`
}

// WorkbookFunctionsFvRequestParameter undocumented
type WorkbookFunctionsFvRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pmt undocumented
	Pmt json.RawMessage `json:"pmt,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// Type undocumented
	Type json.RawMessage `json:"type,omitempty"`
}

// WorkbookFunctionsGammaRequestParameter undocumented
type WorkbookFunctionsGammaRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
}

// WorkbookFunctionsGammaLnRequestParameter undocumented
type WorkbookFunctionsGammaLnRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
}

// WorkbookFunctionsGammaLn_PreciseRequestParameter undocumented
type WorkbookFunctionsGammaLn_PreciseRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
}

// WorkbookFunctionsGamma_DistRequestParameter undocumented
type WorkbookFunctionsGamma_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Alpha undocumented
	Alpha json.RawMessage `json:"alpha,omitempty"`
	// Beta undocumented
	Beta json.RawMessage `json:"beta,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsGamma_InvRequestParameter undocumented
type WorkbookFunctionsGamma_InvRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// Alpha undocumented
	Alpha json.RawMessage `json:"alpha,omitempty"`
	// Beta undocumented
	Beta json.RawMessage `json:"beta,omitempty"`
}

// WorkbookFunctionsGaussRequestParameter undocumented
type WorkbookFunctionsGaussRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
}

// WorkbookFunctionsGcdRequestParameter undocumented
type WorkbookFunctionsGcdRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsGeStepRequestParameter undocumented
type WorkbookFunctionsGeStepRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Step undocumented
	Step json.RawMessage `json:"step,omitempty"`
}

// WorkbookFunctionsGeoMeanRequestParameter undocumented
type WorkbookFunctionsGeoMeanRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsHlookupRequestParameter undocumented
type WorkbookFunctionsHlookupRequestParameter struct {
	// LookupValue undocumented
	LookupValue json.RawMessage `json:"lookupValue,omitempty"`
	// TableArray undocumented
	TableArray json.RawMessage `json:"tableArray,omitempty"`
	// RowIndexNum undocumented
	RowIndexNum json.RawMessage `json:"rowIndexNum,omitempty"`
	// RangeLookup undocumented
	RangeLookup json.RawMessage `json:"rangeLookup,omitempty"`
}

// WorkbookFunctionsHarMeanRequestParameter undocumented
type WorkbookFunctionsHarMeanRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsHex2BinRequestParameter undocumented
type WorkbookFunctionsHex2BinRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Places undocumented
	Places json.RawMessage `json:"places,omitempty"`
}

// WorkbookFunctionsHex2DecRequestParameter undocumented
type WorkbookFunctionsHex2DecRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsHex2OctRequestParameter undocumented
type WorkbookFunctionsHex2OctRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Places undocumented
	Places json.RawMessage `json:"places,omitempty"`
}

// WorkbookFunctionsHourRequestParameter undocumented
type WorkbookFunctionsHourRequestParameter struct {
	// SerialNumber undocumented
	SerialNumber json.RawMessage `json:"serialNumber,omitempty"`
}

// WorkbookFunctionsHypGeom_DistRequestParameter undocumented
type WorkbookFunctionsHypGeom_DistRequestParameter struct {
	// SampleS undocumented
	SampleS json.RawMessage `json:"sampleS,omitempty"`
	// NumberSample undocumented
	NumberSample json.RawMessage `json:"numberSample,omitempty"`
	// PopulationS undocumented
	PopulationS json.RawMessage `json:"populationS,omitempty"`
	// NumberPop undocumented
	NumberPop json.RawMessage `json:"numberPop,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsHyperlinkRequestParameter undocumented
type WorkbookFunctionsHyperlinkRequestParameter struct {
	// LinkLocation undocumented
	LinkLocation json.RawMessage `json:"linkLocation,omitempty"`
	// FriendlyName undocumented
	FriendlyName json.RawMessage `json:"friendlyName,omitempty"`
}

// WorkbookFunctionsIso_CeilingRequestParameter undocumented
type WorkbookFunctionsIso_CeilingRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Significance undocumented
	Significance json.RawMessage `json:"significance,omitempty"`
}

// WorkbookFunctionsIfRequestParameter undocumented
type WorkbookFunctionsIfRequestParameter struct {
	// LogicalTest undocumented
	LogicalTest json.RawMessage `json:"logicalTest,omitempty"`
	// ValueIfTrue undocumented
	ValueIfTrue json.RawMessage `json:"valueIfTrue,omitempty"`
	// ValueIfFalse undocumented
	ValueIfFalse json.RawMessage `json:"valueIfFalse,omitempty"`
}

// WorkbookFunctionsImAbsRequestParameter undocumented
type WorkbookFunctionsImAbsRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImArgumentRequestParameter undocumented
type WorkbookFunctionsImArgumentRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImConjugateRequestParameter undocumented
type WorkbookFunctionsImConjugateRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImCosRequestParameter undocumented
type WorkbookFunctionsImCosRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImCoshRequestParameter undocumented
type WorkbookFunctionsImCoshRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImCotRequestParameter undocumented
type WorkbookFunctionsImCotRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImCscRequestParameter undocumented
type WorkbookFunctionsImCscRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImCschRequestParameter undocumented
type WorkbookFunctionsImCschRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImDivRequestParameter undocumented
type WorkbookFunctionsImDivRequestParameter struct {
	// Inumber1 undocumented
	Inumber1 json.RawMessage `json:"inumber1,omitempty"`
	// Inumber2 undocumented
	Inumber2 json.RawMessage `json:"inumber2,omitempty"`
}

// WorkbookFunctionsImExpRequestParameter undocumented
type WorkbookFunctionsImExpRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImLnRequestParameter undocumented
type WorkbookFunctionsImLnRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImLog10RequestParameter undocumented
type WorkbookFunctionsImLog10RequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImLog2RequestParameter undocumented
type WorkbookFunctionsImLog2RequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImPowerRequestParameter undocumented
type WorkbookFunctionsImPowerRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsImProductRequestParameter undocumented
type WorkbookFunctionsImProductRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsImRealRequestParameter undocumented
type WorkbookFunctionsImRealRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImSecRequestParameter undocumented
type WorkbookFunctionsImSecRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImSechRequestParameter undocumented
type WorkbookFunctionsImSechRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImSinRequestParameter undocumented
type WorkbookFunctionsImSinRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImSinhRequestParameter undocumented
type WorkbookFunctionsImSinhRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImSqrtRequestParameter undocumented
type WorkbookFunctionsImSqrtRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImSubRequestParameter undocumented
type WorkbookFunctionsImSubRequestParameter struct {
	// Inumber1 undocumented
	Inumber1 json.RawMessage `json:"inumber1,omitempty"`
	// Inumber2 undocumented
	Inumber2 json.RawMessage `json:"inumber2,omitempty"`
}

// WorkbookFunctionsImSumRequestParameter undocumented
type WorkbookFunctionsImSumRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsImTanRequestParameter undocumented
type WorkbookFunctionsImTanRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsImaginaryRequestParameter undocumented
type WorkbookFunctionsImaginaryRequestParameter struct {
	// Inumber undocumented
	Inumber json.RawMessage `json:"inumber,omitempty"`
}

// WorkbookFunctionsIntRequestParameter undocumented
type WorkbookFunctionsIntRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsIntRateRequestParameter undocumented
type WorkbookFunctionsIntRateRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Investment undocumented
	Investment json.RawMessage `json:"investment,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsIpmtRequestParameter undocumented
type WorkbookFunctionsIpmtRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Per undocumented
	Per json.RawMessage `json:"per,omitempty"`
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// Fv undocumented
	Fv json.RawMessage `json:"fv,omitempty"`
	// Type undocumented
	Type json.RawMessage `json:"type,omitempty"`
}

// WorkbookFunctionsIrrRequestParameter undocumented
type WorkbookFunctionsIrrRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
	// Guess undocumented
	Guess json.RawMessage `json:"guess,omitempty"`
}

// WorkbookFunctionsIsErrRequestParameter undocumented
type WorkbookFunctionsIsErrRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsIsErrorRequestParameter undocumented
type WorkbookFunctionsIsErrorRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsIsEvenRequestParameter undocumented
type WorkbookFunctionsIsEvenRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsIsFormulaRequestParameter undocumented
type WorkbookFunctionsIsFormulaRequestParameter struct {
	// Reference undocumented
	Reference json.RawMessage `json:"reference,omitempty"`
}

// WorkbookFunctionsIsLogicalRequestParameter undocumented
type WorkbookFunctionsIsLogicalRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsIsNARequestParameter undocumented
type WorkbookFunctionsIsNARequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsIsNonTextRequestParameter undocumented
type WorkbookFunctionsIsNonTextRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsIsNumberRequestParameter undocumented
type WorkbookFunctionsIsNumberRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsIsOddRequestParameter undocumented
type WorkbookFunctionsIsOddRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsIsTextRequestParameter undocumented
type WorkbookFunctionsIsTextRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsIsoWeekNumRequestParameter undocumented
type WorkbookFunctionsIsoWeekNumRequestParameter struct {
	// Date undocumented
	Date json.RawMessage `json:"date,omitempty"`
}

// WorkbookFunctionsIspmtRequestParameter undocumented
type WorkbookFunctionsIspmtRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Per undocumented
	Per json.RawMessage `json:"per,omitempty"`
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
}

// WorkbookFunctionsIsrefRequestParameter undocumented
type WorkbookFunctionsIsrefRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsKurtRequestParameter undocumented
type WorkbookFunctionsKurtRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsLargeRequestParameter undocumented
type WorkbookFunctionsLargeRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// K undocumented
	K json.RawMessage `json:"k,omitempty"`
}

// WorkbookFunctionsLcmRequestParameter undocumented
type WorkbookFunctionsLcmRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsLeftRequestParameter undocumented
type WorkbookFunctionsLeftRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
	// NumChars undocumented
	NumChars json.RawMessage `json:"numChars,omitempty"`
}

// WorkbookFunctionsLeftbRequestParameter undocumented
type WorkbookFunctionsLeftbRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
	// NumBytes undocumented
	NumBytes json.RawMessage `json:"numBytes,omitempty"`
}

// WorkbookFunctionsLenRequestParameter undocumented
type WorkbookFunctionsLenRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsLenbRequestParameter undocumented
type WorkbookFunctionsLenbRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsLnRequestParameter undocumented
type WorkbookFunctionsLnRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsLogRequestParameter undocumented
type WorkbookFunctionsLogRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Base undocumented
	Base json.RawMessage `json:"base,omitempty"`
}

// WorkbookFunctionsLog10RequestParameter undocumented
type WorkbookFunctionsLog10RequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsLogNorm_DistRequestParameter undocumented
type WorkbookFunctionsLogNorm_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Mean undocumented
	Mean json.RawMessage `json:"mean,omitempty"`
	// StandardDev undocumented
	StandardDev json.RawMessage `json:"standardDev,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsLogNorm_InvRequestParameter undocumented
type WorkbookFunctionsLogNorm_InvRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// Mean undocumented
	Mean json.RawMessage `json:"mean,omitempty"`
	// StandardDev undocumented
	StandardDev json.RawMessage `json:"standardDev,omitempty"`
}

// WorkbookFunctionsLookupRequestParameter undocumented
type WorkbookFunctionsLookupRequestParameter struct {
	// LookupValue undocumented
	LookupValue json.RawMessage `json:"lookupValue,omitempty"`
	// LookupVector undocumented
	LookupVector json.RawMessage `json:"lookupVector,omitempty"`
	// ResultVector undocumented
	ResultVector json.RawMessage `json:"resultVector,omitempty"`
}

// WorkbookFunctionsLowerRequestParameter undocumented
type WorkbookFunctionsLowerRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsMdurationRequestParameter undocumented
type WorkbookFunctionsMdurationRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Coupon undocumented
	Coupon json.RawMessage `json:"coupon,omitempty"`
	// Yld undocumented
	Yld json.RawMessage `json:"yld,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsMirrRequestParameter undocumented
type WorkbookFunctionsMirrRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
	// FinanceRate undocumented
	FinanceRate json.RawMessage `json:"financeRate,omitempty"`
	// ReinvestRate undocumented
	ReinvestRate json.RawMessage `json:"reinvestRate,omitempty"`
}

// WorkbookFunctionsMroundRequestParameter undocumented
type WorkbookFunctionsMroundRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Multiple undocumented
	Multiple json.RawMessage `json:"multiple,omitempty"`
}

// WorkbookFunctionsMatchRequestParameter undocumented
type WorkbookFunctionsMatchRequestParameter struct {
	// LookupValue undocumented
	LookupValue json.RawMessage `json:"lookupValue,omitempty"`
	// LookupArray undocumented
	LookupArray json.RawMessage `json:"lookupArray,omitempty"`
	// MatchType undocumented
	MatchType json.RawMessage `json:"matchType,omitempty"`
}

// WorkbookFunctionsMaxRequestParameter undocumented
type WorkbookFunctionsMaxRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsMaxARequestParameter undocumented
type WorkbookFunctionsMaxARequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsMedianRequestParameter undocumented
type WorkbookFunctionsMedianRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsMidRequestParameter undocumented
type WorkbookFunctionsMidRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
	// StartNum undocumented
	StartNum json.RawMessage `json:"startNum,omitempty"`
	// NumChars undocumented
	NumChars json.RawMessage `json:"numChars,omitempty"`
}

// WorkbookFunctionsMidbRequestParameter undocumented
type WorkbookFunctionsMidbRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
	// StartNum undocumented
	StartNum json.RawMessage `json:"startNum,omitempty"`
	// NumBytes undocumented
	NumBytes json.RawMessage `json:"numBytes,omitempty"`
}

// WorkbookFunctionsMinRequestParameter undocumented
type WorkbookFunctionsMinRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsMinARequestParameter undocumented
type WorkbookFunctionsMinARequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsMinuteRequestParameter undocumented
type WorkbookFunctionsMinuteRequestParameter struct {
	// SerialNumber undocumented
	SerialNumber json.RawMessage `json:"serialNumber,omitempty"`
}

// WorkbookFunctionsModRequestParameter undocumented
type WorkbookFunctionsModRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Divisor undocumented
	Divisor json.RawMessage `json:"divisor,omitempty"`
}

// WorkbookFunctionsMonthRequestParameter undocumented
type WorkbookFunctionsMonthRequestParameter struct {
	// SerialNumber undocumented
	SerialNumber json.RawMessage `json:"serialNumber,omitempty"`
}

// WorkbookFunctionsMultiNomialRequestParameter undocumented
type WorkbookFunctionsMultiNomialRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsNRequestParameter undocumented
type WorkbookFunctionsNRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsNperRequestParameter undocumented
type WorkbookFunctionsNperRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Pmt undocumented
	Pmt json.RawMessage `json:"pmt,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// Fv undocumented
	Fv json.RawMessage `json:"fv,omitempty"`
	// Type undocumented
	Type json.RawMessage `json:"type,omitempty"`
}

// WorkbookFunctionsNaRequestParameter undocumented
type WorkbookFunctionsNaRequestParameter struct {
}

// WorkbookFunctionsNegBinom_DistRequestParameter undocumented
type WorkbookFunctionsNegBinom_DistRequestParameter struct {
	// NumberF undocumented
	NumberF json.RawMessage `json:"numberF,omitempty"`
	// NumberS undocumented
	NumberS json.RawMessage `json:"numberS,omitempty"`
	// ProbabilityS undocumented
	ProbabilityS json.RawMessage `json:"probabilityS,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsNetworkDaysRequestParameter undocumented
type WorkbookFunctionsNetworkDaysRequestParameter struct {
	// StartDate undocumented
	StartDate json.RawMessage `json:"startDate,omitempty"`
	// EndDate undocumented
	EndDate json.RawMessage `json:"endDate,omitempty"`
	// Holidays undocumented
	Holidays json.RawMessage `json:"holidays,omitempty"`
}

// WorkbookFunctionsNetworkDays_IntlRequestParameter undocumented
type WorkbookFunctionsNetworkDays_IntlRequestParameter struct {
	// StartDate undocumented
	StartDate json.RawMessage `json:"startDate,omitempty"`
	// EndDate undocumented
	EndDate json.RawMessage `json:"endDate,omitempty"`
	// Weekend undocumented
	Weekend json.RawMessage `json:"weekend,omitempty"`
	// Holidays undocumented
	Holidays json.RawMessage `json:"holidays,omitempty"`
}

// WorkbookFunctionsNominalRequestParameter undocumented
type WorkbookFunctionsNominalRequestParameter struct {
	// EffectRate undocumented
	EffectRate json.RawMessage `json:"effectRate,omitempty"`
	// Npery undocumented
	Npery json.RawMessage `json:"npery,omitempty"`
}

// WorkbookFunctionsNorm_DistRequestParameter undocumented
type WorkbookFunctionsNorm_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Mean undocumented
	Mean json.RawMessage `json:"mean,omitempty"`
	// StandardDev undocumented
	StandardDev json.RawMessage `json:"standardDev,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsNorm_InvRequestParameter undocumented
type WorkbookFunctionsNorm_InvRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// Mean undocumented
	Mean json.RawMessage `json:"mean,omitempty"`
	// StandardDev undocumented
	StandardDev json.RawMessage `json:"standardDev,omitempty"`
}

// WorkbookFunctionsNorm_S_DistRequestParameter undocumented
type WorkbookFunctionsNorm_S_DistRequestParameter struct {
	// Z undocumented
	Z json.RawMessage `json:"z,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsNorm_S_InvRequestParameter undocumented
type WorkbookFunctionsNorm_S_InvRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
}

// WorkbookFunctionsNotRequestParameter undocumented
type WorkbookFunctionsNotRequestParameter struct {
	// Logical undocumented
	Logical json.RawMessage `json:"logical,omitempty"`
}

// WorkbookFunctionsNowRequestParameter undocumented
type WorkbookFunctionsNowRequestParameter struct {
}

// WorkbookFunctionsNpvRequestParameter undocumented
type WorkbookFunctionsNpvRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsNumberValueRequestParameter undocumented
type WorkbookFunctionsNumberValueRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
	// DecimalSeparator undocumented
	DecimalSeparator json.RawMessage `json:"decimalSeparator,omitempty"`
	// GroupSeparator undocumented
	GroupSeparator json.RawMessage `json:"groupSeparator,omitempty"`
}

// WorkbookFunctionsOct2BinRequestParameter undocumented
type WorkbookFunctionsOct2BinRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Places undocumented
	Places json.RawMessage `json:"places,omitempty"`
}

// WorkbookFunctionsOct2DecRequestParameter undocumented
type WorkbookFunctionsOct2DecRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsOct2HexRequestParameter undocumented
type WorkbookFunctionsOct2HexRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Places undocumented
	Places json.RawMessage `json:"places,omitempty"`
}

// WorkbookFunctionsOddRequestParameter undocumented
type WorkbookFunctionsOddRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsOddFPriceRequestParameter undocumented
type WorkbookFunctionsOddFPriceRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Issue undocumented
	Issue json.RawMessage `json:"issue,omitempty"`
	// FirstCoupon undocumented
	FirstCoupon json.RawMessage `json:"firstCoupon,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Yld undocumented
	Yld json.RawMessage `json:"yld,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsOddFYieldRequestParameter undocumented
type WorkbookFunctionsOddFYieldRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Issue undocumented
	Issue json.RawMessage `json:"issue,omitempty"`
	// FirstCoupon undocumented
	FirstCoupon json.RawMessage `json:"firstCoupon,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Pr undocumented
	Pr json.RawMessage `json:"pr,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsOddLPriceRequestParameter undocumented
type WorkbookFunctionsOddLPriceRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// LastInterest undocumented
	LastInterest json.RawMessage `json:"lastInterest,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Yld undocumented
	Yld json.RawMessage `json:"yld,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsOddLYieldRequestParameter undocumented
type WorkbookFunctionsOddLYieldRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// LastInterest undocumented
	LastInterest json.RawMessage `json:"lastInterest,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Pr undocumented
	Pr json.RawMessage `json:"pr,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsOrRequestParameter undocumented
type WorkbookFunctionsOrRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsPdurationRequestParameter undocumented
type WorkbookFunctionsPdurationRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// Fv undocumented
	Fv json.RawMessage `json:"fv,omitempty"`
}

// WorkbookFunctionsPercentRank_ExcRequestParameter undocumented
type WorkbookFunctionsPercentRank_ExcRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Significance undocumented
	Significance json.RawMessage `json:"significance,omitempty"`
}

// WorkbookFunctionsPercentRank_IncRequestParameter undocumented
type WorkbookFunctionsPercentRank_IncRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Significance undocumented
	Significance json.RawMessage `json:"significance,omitempty"`
}

// WorkbookFunctionsPercentile_ExcRequestParameter undocumented
type WorkbookFunctionsPercentile_ExcRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// K undocumented
	K json.RawMessage `json:"k,omitempty"`
}

// WorkbookFunctionsPercentile_IncRequestParameter undocumented
type WorkbookFunctionsPercentile_IncRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// K undocumented
	K json.RawMessage `json:"k,omitempty"`
}

// WorkbookFunctionsPermutRequestParameter undocumented
type WorkbookFunctionsPermutRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// NumberChosen undocumented
	NumberChosen json.RawMessage `json:"numberChosen,omitempty"`
}

// WorkbookFunctionsPermutationaRequestParameter undocumented
type WorkbookFunctionsPermutationaRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// NumberChosen undocumented
	NumberChosen json.RawMessage `json:"numberChosen,omitempty"`
}

// WorkbookFunctionsPhiRequestParameter undocumented
type WorkbookFunctionsPhiRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
}

// WorkbookFunctionsPiRequestParameter undocumented
type WorkbookFunctionsPiRequestParameter struct {
}

// WorkbookFunctionsPmtRequestParameter undocumented
type WorkbookFunctionsPmtRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// Fv undocumented
	Fv json.RawMessage `json:"fv,omitempty"`
	// Type undocumented
	Type json.RawMessage `json:"type,omitempty"`
}

// WorkbookFunctionsPoisson_DistRequestParameter undocumented
type WorkbookFunctionsPoisson_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Mean undocumented
	Mean json.RawMessage `json:"mean,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsPowerRequestParameter undocumented
type WorkbookFunctionsPowerRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Power undocumented
	Power json.RawMessage `json:"power,omitempty"`
}

// WorkbookFunctionsPpmtRequestParameter undocumented
type WorkbookFunctionsPpmtRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Per undocumented
	Per json.RawMessage `json:"per,omitempty"`
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// Fv undocumented
	Fv json.RawMessage `json:"fv,omitempty"`
	// Type undocumented
	Type json.RawMessage `json:"type,omitempty"`
}

// WorkbookFunctionsPriceRequestParameter undocumented
type WorkbookFunctionsPriceRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Yld undocumented
	Yld json.RawMessage `json:"yld,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsPriceDiscRequestParameter undocumented
type WorkbookFunctionsPriceDiscRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Discount undocumented
	Discount json.RawMessage `json:"discount,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsPriceMatRequestParameter undocumented
type WorkbookFunctionsPriceMatRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Issue undocumented
	Issue json.RawMessage `json:"issue,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Yld undocumented
	Yld json.RawMessage `json:"yld,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsProductRequestParameter undocumented
type WorkbookFunctionsProductRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsProperRequestParameter undocumented
type WorkbookFunctionsProperRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsPvRequestParameter undocumented
type WorkbookFunctionsPvRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pmt undocumented
	Pmt json.RawMessage `json:"pmt,omitempty"`
	// Fv undocumented
	Fv json.RawMessage `json:"fv,omitempty"`
	// Type undocumented
	Type json.RawMessage `json:"type,omitempty"`
}

// WorkbookFunctionsQuartile_ExcRequestParameter undocumented
type WorkbookFunctionsQuartile_ExcRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// Quart undocumented
	Quart json.RawMessage `json:"quart,omitempty"`
}

// WorkbookFunctionsQuartile_IncRequestParameter undocumented
type WorkbookFunctionsQuartile_IncRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// Quart undocumented
	Quart json.RawMessage `json:"quart,omitempty"`
}

// WorkbookFunctionsQuotientRequestParameter undocumented
type WorkbookFunctionsQuotientRequestParameter struct {
	// Numerator undocumented
	Numerator json.RawMessage `json:"numerator,omitempty"`
	// Denominator undocumented
	Denominator json.RawMessage `json:"denominator,omitempty"`
}

// WorkbookFunctionsRadiansRequestParameter undocumented
type WorkbookFunctionsRadiansRequestParameter struct {
	// Angle undocumented
	Angle json.RawMessage `json:"angle,omitempty"`
}

// WorkbookFunctionsRandRequestParameter undocumented
type WorkbookFunctionsRandRequestParameter struct {
}

// WorkbookFunctionsRandBetweenRequestParameter undocumented
type WorkbookFunctionsRandBetweenRequestParameter struct {
	// Bottom undocumented
	Bottom json.RawMessage `json:"bottom,omitempty"`
	// Top undocumented
	Top json.RawMessage `json:"top,omitempty"`
}

// WorkbookFunctionsRank_AvgRequestParameter undocumented
type WorkbookFunctionsRank_AvgRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Ref undocumented
	Ref json.RawMessage `json:"ref,omitempty"`
	// Order undocumented
	Order json.RawMessage `json:"order,omitempty"`
}

// WorkbookFunctionsRank_EqRequestParameter undocumented
type WorkbookFunctionsRank_EqRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Ref undocumented
	Ref json.RawMessage `json:"ref,omitempty"`
	// Order undocumented
	Order json.RawMessage `json:"order,omitempty"`
}

// WorkbookFunctionsRateRequestParameter undocumented
type WorkbookFunctionsRateRequestParameter struct {
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pmt undocumented
	Pmt json.RawMessage `json:"pmt,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// Fv undocumented
	Fv json.RawMessage `json:"fv,omitempty"`
	// Type undocumented
	Type json.RawMessage `json:"type,omitempty"`
	// Guess undocumented
	Guess json.RawMessage `json:"guess,omitempty"`
}

// WorkbookFunctionsReceivedRequestParameter undocumented
type WorkbookFunctionsReceivedRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Investment undocumented
	Investment json.RawMessage `json:"investment,omitempty"`
	// Discount undocumented
	Discount json.RawMessage `json:"discount,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsReplaceRequestParameter undocumented
type WorkbookFunctionsReplaceRequestParameter struct {
	// OldText undocumented
	OldText json.RawMessage `json:"oldText,omitempty"`
	// StartNum undocumented
	StartNum json.RawMessage `json:"startNum,omitempty"`
	// NumChars undocumented
	NumChars json.RawMessage `json:"numChars,omitempty"`
	// NewText undocumented
	NewText json.RawMessage `json:"newText,omitempty"`
}

// WorkbookFunctionsReplaceBRequestParameter undocumented
type WorkbookFunctionsReplaceBRequestParameter struct {
	// OldText undocumented
	OldText json.RawMessage `json:"oldText,omitempty"`
	// StartNum undocumented
	StartNum json.RawMessage `json:"startNum,omitempty"`
	// NumBytes undocumented
	NumBytes json.RawMessage `json:"numBytes,omitempty"`
	// NewText undocumented
	NewText json.RawMessage `json:"newText,omitempty"`
}

// WorkbookFunctionsReptRequestParameter undocumented
type WorkbookFunctionsReptRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
	// NumberTimes undocumented
	NumberTimes json.RawMessage `json:"numberTimes,omitempty"`
}

// WorkbookFunctionsRightRequestParameter undocumented
type WorkbookFunctionsRightRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
	// NumChars undocumented
	NumChars json.RawMessage `json:"numChars,omitempty"`
}

// WorkbookFunctionsRightbRequestParameter undocumented
type WorkbookFunctionsRightbRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
	// NumBytes undocumented
	NumBytes json.RawMessage `json:"numBytes,omitempty"`
}

// WorkbookFunctionsRomanRequestParameter undocumented
type WorkbookFunctionsRomanRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Form undocumented
	Form json.RawMessage `json:"form,omitempty"`
}

// WorkbookFunctionsRoundRequestParameter undocumented
type WorkbookFunctionsRoundRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// NumDigits undocumented
	NumDigits json.RawMessage `json:"numDigits,omitempty"`
}

// WorkbookFunctionsRoundDownRequestParameter undocumented
type WorkbookFunctionsRoundDownRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// NumDigits undocumented
	NumDigits json.RawMessage `json:"numDigits,omitempty"`
}

// WorkbookFunctionsRoundUpRequestParameter undocumented
type WorkbookFunctionsRoundUpRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// NumDigits undocumented
	NumDigits json.RawMessage `json:"numDigits,omitempty"`
}

// WorkbookFunctionsRowsRequestParameter undocumented
type WorkbookFunctionsRowsRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
}

// WorkbookFunctionsRriRequestParameter undocumented
type WorkbookFunctionsRriRequestParameter struct {
	// Nper undocumented
	Nper json.RawMessage `json:"nper,omitempty"`
	// Pv undocumented
	Pv json.RawMessage `json:"pv,omitempty"`
	// Fv undocumented
	Fv json.RawMessage `json:"fv,omitempty"`
}

// WorkbookFunctionsSecRequestParameter undocumented
type WorkbookFunctionsSecRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsSechRequestParameter undocumented
type WorkbookFunctionsSechRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsSecondRequestParameter undocumented
type WorkbookFunctionsSecondRequestParameter struct {
	// SerialNumber undocumented
	SerialNumber json.RawMessage `json:"serialNumber,omitempty"`
}

// WorkbookFunctionsSeriesSumRequestParameter undocumented
type WorkbookFunctionsSeriesSumRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// N undocumented
	N json.RawMessage `json:"n,omitempty"`
	// M undocumented
	M json.RawMessage `json:"m,omitempty"`
	// Coefficients undocumented
	Coefficients json.RawMessage `json:"coefficients,omitempty"`
}

// WorkbookFunctionsSheetRequestParameter undocumented
type WorkbookFunctionsSheetRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsSheetsRequestParameter undocumented
type WorkbookFunctionsSheetsRequestParameter struct {
	// Reference undocumented
	Reference json.RawMessage `json:"reference,omitempty"`
}

// WorkbookFunctionsSignRequestParameter undocumented
type WorkbookFunctionsSignRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsSinRequestParameter undocumented
type WorkbookFunctionsSinRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsSinhRequestParameter undocumented
type WorkbookFunctionsSinhRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsSkewRequestParameter undocumented
type WorkbookFunctionsSkewRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsSkew_pRequestParameter undocumented
type WorkbookFunctionsSkew_pRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsSlnRequestParameter undocumented
type WorkbookFunctionsSlnRequestParameter struct {
	// Cost undocumented
	Cost json.RawMessage `json:"cost,omitempty"`
	// Salvage undocumented
	Salvage json.RawMessage `json:"salvage,omitempty"`
	// Life undocumented
	Life json.RawMessage `json:"life,omitempty"`
}

// WorkbookFunctionsSmallRequestParameter undocumented
type WorkbookFunctionsSmallRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// K undocumented
	K json.RawMessage `json:"k,omitempty"`
}

// WorkbookFunctionsSqrtRequestParameter undocumented
type WorkbookFunctionsSqrtRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsSqrtPiRequestParameter undocumented
type WorkbookFunctionsSqrtPiRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsStDevARequestParameter undocumented
type WorkbookFunctionsStDevARequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsStDevPARequestParameter undocumented
type WorkbookFunctionsStDevPARequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsStDev_PRequestParameter undocumented
type WorkbookFunctionsStDev_PRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsStDev_SRequestParameter undocumented
type WorkbookFunctionsStDev_SRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsStandardizeRequestParameter undocumented
type WorkbookFunctionsStandardizeRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Mean undocumented
	Mean json.RawMessage `json:"mean,omitempty"`
	// StandardDev undocumented
	StandardDev json.RawMessage `json:"standardDev,omitempty"`
}

// WorkbookFunctionsSubstituteRequestParameter undocumented
type WorkbookFunctionsSubstituteRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
	// OldText undocumented
	OldText json.RawMessage `json:"oldText,omitempty"`
	// NewText undocumented
	NewText json.RawMessage `json:"newText,omitempty"`
	// InstanceNum undocumented
	InstanceNum json.RawMessage `json:"instanceNum,omitempty"`
}

// WorkbookFunctionsSubtotalRequestParameter undocumented
type WorkbookFunctionsSubtotalRequestParameter struct {
	// FunctionNum undocumented
	FunctionNum json.RawMessage `json:"functionNum,omitempty"`
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsSumRequestParameter undocumented
type WorkbookFunctionsSumRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsSumIfRequestParameter undocumented
type WorkbookFunctionsSumIfRequestParameter struct {
	// Range undocumented
	Range json.RawMessage `json:"range,omitempty"`
	// Criteria undocumented
	Criteria json.RawMessage `json:"criteria,omitempty"`
	// SumRange undocumented
	SumRange json.RawMessage `json:"sumRange,omitempty"`
}

// WorkbookFunctionsSumIfsRequestParameter undocumented
type WorkbookFunctionsSumIfsRequestParameter struct {
	// SumRange undocumented
	SumRange json.RawMessage `json:"sumRange,omitempty"`
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsSumSqRequestParameter undocumented
type WorkbookFunctionsSumSqRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsSydRequestParameter undocumented
type WorkbookFunctionsSydRequestParameter struct {
	// Cost undocumented
	Cost json.RawMessage `json:"cost,omitempty"`
	// Salvage undocumented
	Salvage json.RawMessage `json:"salvage,omitempty"`
	// Life undocumented
	Life json.RawMessage `json:"life,omitempty"`
	// Per undocumented
	Per json.RawMessage `json:"per,omitempty"`
}

// WorkbookFunctionsTRequestParameter undocumented
type WorkbookFunctionsTRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsTbillEqRequestParameter undocumented
type WorkbookFunctionsTbillEqRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Discount undocumented
	Discount json.RawMessage `json:"discount,omitempty"`
}

// WorkbookFunctionsTbillPriceRequestParameter undocumented
type WorkbookFunctionsTbillPriceRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Discount undocumented
	Discount json.RawMessage `json:"discount,omitempty"`
}

// WorkbookFunctionsTbillYieldRequestParameter undocumented
type WorkbookFunctionsTbillYieldRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Pr undocumented
	Pr json.RawMessage `json:"pr,omitempty"`
}

// WorkbookFunctionsT_DistRequestParameter undocumented
type WorkbookFunctionsT_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// DegFreedom undocumented
	DegFreedom json.RawMessage `json:"degFreedom,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsT_Dist_2TRequestParameter undocumented
type WorkbookFunctionsT_Dist_2TRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// DegFreedom undocumented
	DegFreedom json.RawMessage `json:"degFreedom,omitempty"`
}

// WorkbookFunctionsT_Dist_RTRequestParameter undocumented
type WorkbookFunctionsT_Dist_RTRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// DegFreedom undocumented
	DegFreedom json.RawMessage `json:"degFreedom,omitempty"`
}

// WorkbookFunctionsT_InvRequestParameter undocumented
type WorkbookFunctionsT_InvRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// DegFreedom undocumented
	DegFreedom json.RawMessage `json:"degFreedom,omitempty"`
}

// WorkbookFunctionsT_Inv_2TRequestParameter undocumented
type WorkbookFunctionsT_Inv_2TRequestParameter struct {
	// Probability undocumented
	Probability json.RawMessage `json:"probability,omitempty"`
	// DegFreedom undocumented
	DegFreedom json.RawMessage `json:"degFreedom,omitempty"`
}

// WorkbookFunctionsTanRequestParameter undocumented
type WorkbookFunctionsTanRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsTanhRequestParameter undocumented
type WorkbookFunctionsTanhRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsTextRequestParameter undocumented
type WorkbookFunctionsTextRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
	// FormatText undocumented
	FormatText json.RawMessage `json:"formatText,omitempty"`
}

// WorkbookFunctionsTimeRequestParameter undocumented
type WorkbookFunctionsTimeRequestParameter struct {
	// Hour undocumented
	Hour json.RawMessage `json:"hour,omitempty"`
	// Minute undocumented
	Minute json.RawMessage `json:"minute,omitempty"`
	// Second undocumented
	Second json.RawMessage `json:"second,omitempty"`
}

// WorkbookFunctionsTimevalueRequestParameter undocumented
type WorkbookFunctionsTimevalueRequestParameter struct {
	// TimeText undocumented
	TimeText json.RawMessage `json:"timeText,omitempty"`
}

// WorkbookFunctionsTodayRequestParameter undocumented
type WorkbookFunctionsTodayRequestParameter struct {
}

// WorkbookFunctionsTrimRequestParameter undocumented
type WorkbookFunctionsTrimRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsTrimMeanRequestParameter undocumented
type WorkbookFunctionsTrimMeanRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// Percent undocumented
	Percent json.RawMessage `json:"percent,omitempty"`
}

// WorkbookFunctionsTrueRequestParameter undocumented
type WorkbookFunctionsTrueRequestParameter struct {
}

// WorkbookFunctionsTruncRequestParameter undocumented
type WorkbookFunctionsTruncRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// NumDigits undocumented
	NumDigits json.RawMessage `json:"numDigits,omitempty"`
}

// WorkbookFunctionsTypeRequestParameter undocumented
type WorkbookFunctionsTypeRequestParameter struct {
	// Value undocumented
	Value json.RawMessage `json:"value,omitempty"`
}

// WorkbookFunctionsUsdollarRequestParameter undocumented
type WorkbookFunctionsUsdollarRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
	// Decimals undocumented
	Decimals json.RawMessage `json:"decimals,omitempty"`
}

// WorkbookFunctionsUnicharRequestParameter undocumented
type WorkbookFunctionsUnicharRequestParameter struct {
	// Number undocumented
	Number json.RawMessage `json:"number,omitempty"`
}

// WorkbookFunctionsUnicodeRequestParameter undocumented
type WorkbookFunctionsUnicodeRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsUpperRequestParameter undocumented
type WorkbookFunctionsUpperRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsVlookupRequestParameter undocumented
type WorkbookFunctionsVlookupRequestParameter struct {
	// LookupValue undocumented
	LookupValue json.RawMessage `json:"lookupValue,omitempty"`
	// TableArray undocumented
	TableArray json.RawMessage `json:"tableArray,omitempty"`
	// ColIndexNum undocumented
	ColIndexNum json.RawMessage `json:"colIndexNum,omitempty"`
	// RangeLookup undocumented
	RangeLookup json.RawMessage `json:"rangeLookup,omitempty"`
}

// WorkbookFunctionsValueRequestParameter undocumented
type WorkbookFunctionsValueRequestParameter struct {
	// Text undocumented
	Text json.RawMessage `json:"text,omitempty"`
}

// WorkbookFunctionsVarARequestParameter undocumented
type WorkbookFunctionsVarARequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsVarPARequestParameter undocumented
type WorkbookFunctionsVarPARequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsVar_PRequestParameter undocumented
type WorkbookFunctionsVar_PRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsVar_SRequestParameter undocumented
type WorkbookFunctionsVar_SRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsVdbRequestParameter undocumented
type WorkbookFunctionsVdbRequestParameter struct {
	// Cost undocumented
	Cost json.RawMessage `json:"cost,omitempty"`
	// Salvage undocumented
	Salvage json.RawMessage `json:"salvage,omitempty"`
	// Life undocumented
	Life json.RawMessage `json:"life,omitempty"`
	// StartPeriod undocumented
	StartPeriod json.RawMessage `json:"startPeriod,omitempty"`
	// EndPeriod undocumented
	EndPeriod json.RawMessage `json:"endPeriod,omitempty"`
	// Factor undocumented
	Factor json.RawMessage `json:"factor,omitempty"`
	// NoSwitch undocumented
	NoSwitch json.RawMessage `json:"noSwitch,omitempty"`
}

// WorkbookFunctionsWeekNumRequestParameter undocumented
type WorkbookFunctionsWeekNumRequestParameter struct {
	// SerialNumber undocumented
	SerialNumber json.RawMessage `json:"serialNumber,omitempty"`
	// ReturnType undocumented
	ReturnType json.RawMessage `json:"returnType,omitempty"`
}

// WorkbookFunctionsWeekdayRequestParameter undocumented
type WorkbookFunctionsWeekdayRequestParameter struct {
	// SerialNumber undocumented
	SerialNumber json.RawMessage `json:"serialNumber,omitempty"`
	// ReturnType undocumented
	ReturnType json.RawMessage `json:"returnType,omitempty"`
}

// WorkbookFunctionsWeibull_DistRequestParameter undocumented
type WorkbookFunctionsWeibull_DistRequestParameter struct {
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Alpha undocumented
	Alpha json.RawMessage `json:"alpha,omitempty"`
	// Beta undocumented
	Beta json.RawMessage `json:"beta,omitempty"`
	// Cumulative undocumented
	Cumulative json.RawMessage `json:"cumulative,omitempty"`
}

// WorkbookFunctionsWorkDayRequestParameter undocumented
type WorkbookFunctionsWorkDayRequestParameter struct {
	// StartDate undocumented
	StartDate json.RawMessage `json:"startDate,omitempty"`
	// Days undocumented
	Days json.RawMessage `json:"days,omitempty"`
	// Holidays undocumented
	Holidays json.RawMessage `json:"holidays,omitempty"`
}

// WorkbookFunctionsWorkDay_IntlRequestParameter undocumented
type WorkbookFunctionsWorkDay_IntlRequestParameter struct {
	// StartDate undocumented
	StartDate json.RawMessage `json:"startDate,omitempty"`
	// Days undocumented
	Days json.RawMessage `json:"days,omitempty"`
	// Weekend undocumented
	Weekend json.RawMessage `json:"weekend,omitempty"`
	// Holidays undocumented
	Holidays json.RawMessage `json:"holidays,omitempty"`
}

// WorkbookFunctionsXirrRequestParameter undocumented
type WorkbookFunctionsXirrRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
	// Dates undocumented
	Dates json.RawMessage `json:"dates,omitempty"`
	// Guess undocumented
	Guess json.RawMessage `json:"guess,omitempty"`
}

// WorkbookFunctionsXnpvRequestParameter undocumented
type WorkbookFunctionsXnpvRequestParameter struct {
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
	// Dates undocumented
	Dates json.RawMessage `json:"dates,omitempty"`
}

// WorkbookFunctionsXorRequestParameter undocumented
type WorkbookFunctionsXorRequestParameter struct {
	// Values undocumented
	Values json.RawMessage `json:"values,omitempty"`
}

// WorkbookFunctionsYearRequestParameter undocumented
type WorkbookFunctionsYearRequestParameter struct {
	// SerialNumber undocumented
	SerialNumber json.RawMessage `json:"serialNumber,omitempty"`
}

// WorkbookFunctionsYearFracRequestParameter undocumented
type WorkbookFunctionsYearFracRequestParameter struct {
	// StartDate undocumented
	StartDate json.RawMessage `json:"startDate,omitempty"`
	// EndDate undocumented
	EndDate json.RawMessage `json:"endDate,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsYieldRequestParameter undocumented
type WorkbookFunctionsYieldRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Pr undocumented
	Pr json.RawMessage `json:"pr,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Frequency undocumented
	Frequency json.RawMessage `json:"frequency,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsYieldDiscRequestParameter undocumented
type WorkbookFunctionsYieldDiscRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Pr undocumented
	Pr json.RawMessage `json:"pr,omitempty"`
	// Redemption undocumented
	Redemption json.RawMessage `json:"redemption,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsYieldMatRequestParameter undocumented
type WorkbookFunctionsYieldMatRequestParameter struct {
	// Settlement undocumented
	Settlement json.RawMessage `json:"settlement,omitempty"`
	// Maturity undocumented
	Maturity json.RawMessage `json:"maturity,omitempty"`
	// Issue undocumented
	Issue json.RawMessage `json:"issue,omitempty"`
	// Rate undocumented
	Rate json.RawMessage `json:"rate,omitempty"`
	// Pr undocumented
	Pr json.RawMessage `json:"pr,omitempty"`
	// Basis undocumented
	Basis json.RawMessage `json:"basis,omitempty"`
}

// WorkbookFunctionsZ_TestRequestParameter undocumented
type WorkbookFunctionsZ_TestRequestParameter struct {
	// Array undocumented
	Array json.RawMessage `json:"array,omitempty"`
	// X undocumented
	X json.RawMessage `json:"x,omitempty"`
	// Sigma undocumented
	Sigma json.RawMessage `json:"sigma,omitempty"`
}

// WorkbookPivotTableRefreshRequestParameter undocumented
type WorkbookPivotTableRefreshRequestParameter struct {
}

// WorkbookRangeClearRequestParameter undocumented
type WorkbookRangeClearRequestParameter struct {
	// ApplyTo undocumented
	ApplyTo *string `json:"applyTo,omitempty"`
}

// WorkbookRangeDeleteRequestParameter undocumented
type WorkbookRangeDeleteRequestParameter struct {
	// Shift undocumented
	Shift *string `json:"shift,omitempty"`
}

// WorkbookRangeInsertRequestParameter undocumented
type WorkbookRangeInsertRequestParameter struct {
	// Shift undocumented
	Shift *string `json:"shift,omitempty"`
}

// WorkbookRangeMergeRequestParameter undocumented
type WorkbookRangeMergeRequestParameter struct {
	// Across undocumented
	Across *bool `json:"across,omitempty"`
}

// WorkbookRangeUnmergeRequestParameter undocumented
type WorkbookRangeUnmergeRequestParameter struct {
}

// WorkbookRangeFillClearRequestParameter undocumented
type WorkbookRangeFillClearRequestParameter struct {
}

// WorkbookRangeFormatAutofitColumnsRequestParameter undocumented
type WorkbookRangeFormatAutofitColumnsRequestParameter struct {
}

// WorkbookRangeFormatAutofitRowsRequestParameter undocumented
type WorkbookRangeFormatAutofitRowsRequestParameter struct {
}

// WorkbookRangeSortApplyRequestParameter undocumented
type WorkbookRangeSortApplyRequestParameter struct {
	// Fields undocumented
	Fields []WorkbookSortField `json:"fields,omitempty"`
	// MatchCase undocumented
	MatchCase *bool `json:"matchCase,omitempty"`
	// HasHeaders undocumented
	HasHeaders *bool `json:"hasHeaders,omitempty"`
	// Orientation undocumented
	Orientation *string `json:"orientation,omitempty"`
	// Method undocumented
	Method *string `json:"method,omitempty"`
}

// WorkbookTableClearFiltersRequestParameter undocumented
type WorkbookTableClearFiltersRequestParameter struct {
}

// WorkbookTableConvertToRangeRequestParameter undocumented
type WorkbookTableConvertToRangeRequestParameter struct {
}

// WorkbookTableReapplyFiltersRequestParameter undocumented
type WorkbookTableReapplyFiltersRequestParameter struct {
}

// WorkbookTableSortApplyRequestParameter undocumented
type WorkbookTableSortApplyRequestParameter struct {
	// Fields undocumented
	Fields []WorkbookSortField `json:"fields,omitempty"`
	// MatchCase undocumented
	MatchCase *bool `json:"matchCase,omitempty"`
	// Method undocumented
	Method *string `json:"method,omitempty"`
}

// WorkbookTableSortClearRequestParameter undocumented
type WorkbookTableSortClearRequestParameter struct {
}

// WorkbookTableSortReapplyRequestParameter undocumented
type WorkbookTableSortReapplyRequestParameter struct {
}

// WorkbookWorksheetProtectionProtectRequestParameter undocumented
type WorkbookWorksheetProtectionProtectRequestParameter struct {
	// Options undocumented
	Options *WorkbookWorksheetProtectionOptions `json:"options,omitempty"`
}

// WorkbookWorksheetProtectionUnprotectRequestParameter undocumented
type WorkbookWorksheetProtectionUnprotectRequestParameter struct {
}

// Application is navigation property
func (b *WorkbookRequestBuilder) Application() *WorkbookApplicationRequestBuilder {
	bb := &WorkbookApplicationRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/application"
	return bb
}

// Comments returns request builder for WorkbookComment collection
func (b *WorkbookRequestBuilder) Comments() *WorkbookCommentsCollectionRequestBuilder {
	bb := &WorkbookCommentsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/comments"
	return bb
}

// WorkbookCommentsCollectionRequestBuilder is request builder for WorkbookComment collection
type WorkbookCommentsCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookComment collection
func (b *WorkbookCommentsCollectionRequestBuilder) Request() *WorkbookCommentsCollectionRequest {
	return &WorkbookCommentsCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookComment item
func (b *WorkbookCommentsCollectionRequestBuilder) ID(id string) *WorkbookCommentRequestBuilder {
	bb := &WorkbookCommentRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookCommentsCollectionRequest is request for WorkbookComment collection
type WorkbookCommentsCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookComment collection
func (r *WorkbookCommentsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookComment, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookComment
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookComment
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookComment collection, max N pages
func (r *WorkbookCommentsCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookComment, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookComment collection
func (r *WorkbookCommentsCollectionRequest) Get(ctx context.Context) ([]WorkbookComment, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookComment collection
func (r *WorkbookCommentsCollectionRequest) Add(ctx context.Context, reqObj *WorkbookComment) (resObj *WorkbookComment, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Functions is navigation property
func (b *WorkbookRequestBuilder) Functions() *WorkbookFunctionsRequestBuilder {
	bb := &WorkbookFunctionsRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/functions"
	return bb
}

// Names returns request builder for WorkbookNamedItem collection
func (b *WorkbookRequestBuilder) Names() *WorkbookNamesCollectionRequestBuilder {
	bb := &WorkbookNamesCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/names"
	return bb
}

// WorkbookNamesCollectionRequestBuilder is request builder for WorkbookNamedItem collection
type WorkbookNamesCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookNamedItem collection
func (b *WorkbookNamesCollectionRequestBuilder) Request() *WorkbookNamesCollectionRequest {
	return &WorkbookNamesCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookNamedItem item
func (b *WorkbookNamesCollectionRequestBuilder) ID(id string) *WorkbookNamedItemRequestBuilder {
	bb := &WorkbookNamedItemRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookNamesCollectionRequest is request for WorkbookNamedItem collection
type WorkbookNamesCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookNamedItem collection
func (r *WorkbookNamesCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookNamedItem, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookNamedItem
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookNamedItem
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookNamedItem collection, max N pages
func (r *WorkbookNamesCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookNamedItem, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookNamedItem collection
func (r *WorkbookNamesCollectionRequest) Get(ctx context.Context) ([]WorkbookNamedItem, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookNamedItem collection
func (r *WorkbookNamesCollectionRequest) Add(ctx context.Context, reqObj *WorkbookNamedItem) (resObj *WorkbookNamedItem, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Tables returns request builder for WorkbookTable collection
func (b *WorkbookRequestBuilder) Tables() *WorkbookTablesCollectionRequestBuilder {
	bb := &WorkbookTablesCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/tables"
	return bb
}

// WorkbookTablesCollectionRequestBuilder is request builder for WorkbookTable collection
type WorkbookTablesCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookTable collection
func (b *WorkbookTablesCollectionRequestBuilder) Request() *WorkbookTablesCollectionRequest {
	return &WorkbookTablesCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookTable item
func (b *WorkbookTablesCollectionRequestBuilder) ID(id string) *WorkbookTableRequestBuilder {
	bb := &WorkbookTableRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookTablesCollectionRequest is request for WorkbookTable collection
type WorkbookTablesCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookTable collection
func (r *WorkbookTablesCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookTable, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookTable
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookTable
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookTable collection, max N pages
func (r *WorkbookTablesCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookTable, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookTable collection
func (r *WorkbookTablesCollectionRequest) Get(ctx context.Context) ([]WorkbookTable, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookTable collection
func (r *WorkbookTablesCollectionRequest) Add(ctx context.Context, reqObj *WorkbookTable) (resObj *WorkbookTable, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Worksheets returns request builder for WorkbookWorksheet collection
func (b *WorkbookRequestBuilder) Worksheets() *WorkbookWorksheetsCollectionRequestBuilder {
	bb := &WorkbookWorksheetsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/worksheets"
	return bb
}

// WorkbookWorksheetsCollectionRequestBuilder is request builder for WorkbookWorksheet collection
type WorkbookWorksheetsCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookWorksheet collection
func (b *WorkbookWorksheetsCollectionRequestBuilder) Request() *WorkbookWorksheetsCollectionRequest {
	return &WorkbookWorksheetsCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookWorksheet item
func (b *WorkbookWorksheetsCollectionRequestBuilder) ID(id string) *WorkbookWorksheetRequestBuilder {
	bb := &WorkbookWorksheetRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookWorksheetsCollectionRequest is request for WorkbookWorksheet collection
type WorkbookWorksheetsCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookWorksheet collection
func (r *WorkbookWorksheetsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookWorksheet, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookWorksheet
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookWorksheet
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookWorksheet collection, max N pages
func (r *WorkbookWorksheetsCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookWorksheet, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookWorksheet collection
func (r *WorkbookWorksheetsCollectionRequest) Get(ctx context.Context) ([]WorkbookWorksheet, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookWorksheet collection
func (r *WorkbookWorksheetsCollectionRequest) Add(ctx context.Context, reqObj *WorkbookWorksheet) (resObj *WorkbookWorksheet, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Axes is navigation property
func (b *WorkbookChartRequestBuilder) Axes() *WorkbookChartAxesRequestBuilder {
	bb := &WorkbookChartAxesRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/axes"
	return bb
}

// DataLabels is navigation property
func (b *WorkbookChartRequestBuilder) DataLabels() *WorkbookChartDataLabelsRequestBuilder {
	bb := &WorkbookChartDataLabelsRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/dataLabels"
	return bb
}

// Format is navigation property
func (b *WorkbookChartRequestBuilder) Format() *WorkbookChartAreaFormatRequestBuilder {
	bb := &WorkbookChartAreaFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// Legend is navigation property
func (b *WorkbookChartRequestBuilder) Legend() *WorkbookChartLegendRequestBuilder {
	bb := &WorkbookChartLegendRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/legend"
	return bb
}

// Series returns request builder for WorkbookChartSeries collection
func (b *WorkbookChartRequestBuilder) Series() *WorkbookChartSeriesCollectionRequestBuilder {
	bb := &WorkbookChartSeriesCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/series"
	return bb
}

// WorkbookChartSeriesCollectionRequestBuilder is request builder for WorkbookChartSeries collection
type WorkbookChartSeriesCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookChartSeries collection
func (b *WorkbookChartSeriesCollectionRequestBuilder) Request() *WorkbookChartSeriesCollectionRequest {
	return &WorkbookChartSeriesCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookChartSeries item
func (b *WorkbookChartSeriesCollectionRequestBuilder) ID(id string) *WorkbookChartSeriesRequestBuilder {
	bb := &WorkbookChartSeriesRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookChartSeriesCollectionRequest is request for WorkbookChartSeries collection
type WorkbookChartSeriesCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookChartSeries collection
func (r *WorkbookChartSeriesCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookChartSeries, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookChartSeries
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookChartSeries
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookChartSeries collection, max N pages
func (r *WorkbookChartSeriesCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookChartSeries, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookChartSeries collection
func (r *WorkbookChartSeriesCollectionRequest) Get(ctx context.Context) ([]WorkbookChartSeries, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookChartSeries collection
func (r *WorkbookChartSeriesCollectionRequest) Add(ctx context.Context, reqObj *WorkbookChartSeries) (resObj *WorkbookChartSeries, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Title is navigation property
func (b *WorkbookChartRequestBuilder) Title() *WorkbookChartTitleRequestBuilder {
	bb := &WorkbookChartTitleRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/title"
	return bb
}

// Worksheet is navigation property
func (b *WorkbookChartRequestBuilder) Worksheet() *WorkbookWorksheetRequestBuilder {
	bb := &WorkbookWorksheetRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/worksheet"
	return bb
}

// Fill is navigation property
func (b *WorkbookChartAreaFormatRequestBuilder) Fill() *WorkbookChartFillRequestBuilder {
	bb := &WorkbookChartFillRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/fill"
	return bb
}

// Font is navigation property
func (b *WorkbookChartAreaFormatRequestBuilder) Font() *WorkbookChartFontRequestBuilder {
	bb := &WorkbookChartFontRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/font"
	return bb
}

// CategoryAxis is navigation property
func (b *WorkbookChartAxesRequestBuilder) CategoryAxis() *WorkbookChartAxisRequestBuilder {
	bb := &WorkbookChartAxisRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/categoryAxis"
	return bb
}

// SeriesAxis is navigation property
func (b *WorkbookChartAxesRequestBuilder) SeriesAxis() *WorkbookChartAxisRequestBuilder {
	bb := &WorkbookChartAxisRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/seriesAxis"
	return bb
}

// ValueAxis is navigation property
func (b *WorkbookChartAxesRequestBuilder) ValueAxis() *WorkbookChartAxisRequestBuilder {
	bb := &WorkbookChartAxisRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/valueAxis"
	return bb
}

// Format is navigation property
func (b *WorkbookChartAxisRequestBuilder) Format() *WorkbookChartAxisFormatRequestBuilder {
	bb := &WorkbookChartAxisFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// MajorGridlines is navigation property
func (b *WorkbookChartAxisRequestBuilder) MajorGridlines() *WorkbookChartGridlinesRequestBuilder {
	bb := &WorkbookChartGridlinesRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/majorGridlines"
	return bb
}

// MinorGridlines is navigation property
func (b *WorkbookChartAxisRequestBuilder) MinorGridlines() *WorkbookChartGridlinesRequestBuilder {
	bb := &WorkbookChartGridlinesRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/minorGridlines"
	return bb
}

// Title is navigation property
func (b *WorkbookChartAxisRequestBuilder) Title() *WorkbookChartAxisTitleRequestBuilder {
	bb := &WorkbookChartAxisTitleRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/title"
	return bb
}

// Font is navigation property
func (b *WorkbookChartAxisFormatRequestBuilder) Font() *WorkbookChartFontRequestBuilder {
	bb := &WorkbookChartFontRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/font"
	return bb
}

// Line is navigation property
func (b *WorkbookChartAxisFormatRequestBuilder) Line() *WorkbookChartLineFormatRequestBuilder {
	bb := &WorkbookChartLineFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/line"
	return bb
}

// Format is navigation property
func (b *WorkbookChartAxisTitleRequestBuilder) Format() *WorkbookChartAxisTitleFormatRequestBuilder {
	bb := &WorkbookChartAxisTitleFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// Font is navigation property
func (b *WorkbookChartAxisTitleFormatRequestBuilder) Font() *WorkbookChartFontRequestBuilder {
	bb := &WorkbookChartFontRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/font"
	return bb
}

// Fill is navigation property
func (b *WorkbookChartDataLabelFormatRequestBuilder) Fill() *WorkbookChartFillRequestBuilder {
	bb := &WorkbookChartFillRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/fill"
	return bb
}

// Font is navigation property
func (b *WorkbookChartDataLabelFormatRequestBuilder) Font() *WorkbookChartFontRequestBuilder {
	bb := &WorkbookChartFontRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/font"
	return bb
}

// Format is navigation property
func (b *WorkbookChartDataLabelsRequestBuilder) Format() *WorkbookChartDataLabelFormatRequestBuilder {
	bb := &WorkbookChartDataLabelFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// Format is navigation property
func (b *WorkbookChartGridlinesRequestBuilder) Format() *WorkbookChartGridlinesFormatRequestBuilder {
	bb := &WorkbookChartGridlinesFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// Line is navigation property
func (b *WorkbookChartGridlinesFormatRequestBuilder) Line() *WorkbookChartLineFormatRequestBuilder {
	bb := &WorkbookChartLineFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/line"
	return bb
}

// Format is navigation property
func (b *WorkbookChartLegendRequestBuilder) Format() *WorkbookChartLegendFormatRequestBuilder {
	bb := &WorkbookChartLegendFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// Fill is navigation property
func (b *WorkbookChartLegendFormatRequestBuilder) Fill() *WorkbookChartFillRequestBuilder {
	bb := &WorkbookChartFillRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/fill"
	return bb
}

// Font is navigation property
func (b *WorkbookChartLegendFormatRequestBuilder) Font() *WorkbookChartFontRequestBuilder {
	bb := &WorkbookChartFontRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/font"
	return bb
}

// Format is navigation property
func (b *WorkbookChartPointRequestBuilder) Format() *WorkbookChartPointFormatRequestBuilder {
	bb := &WorkbookChartPointFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// Fill is navigation property
func (b *WorkbookChartPointFormatRequestBuilder) Fill() *WorkbookChartFillRequestBuilder {
	bb := &WorkbookChartFillRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/fill"
	return bb
}

// Format is navigation property
func (b *WorkbookChartSeriesRequestBuilder) Format() *WorkbookChartSeriesFormatRequestBuilder {
	bb := &WorkbookChartSeriesFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// Points returns request builder for WorkbookChartPoint collection
func (b *WorkbookChartSeriesRequestBuilder) Points() *WorkbookChartSeriesPointsCollectionRequestBuilder {
	bb := &WorkbookChartSeriesPointsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/points"
	return bb
}

// WorkbookChartSeriesPointsCollectionRequestBuilder is request builder for WorkbookChartPoint collection
type WorkbookChartSeriesPointsCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookChartPoint collection
func (b *WorkbookChartSeriesPointsCollectionRequestBuilder) Request() *WorkbookChartSeriesPointsCollectionRequest {
	return &WorkbookChartSeriesPointsCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookChartPoint item
func (b *WorkbookChartSeriesPointsCollectionRequestBuilder) ID(id string) *WorkbookChartPointRequestBuilder {
	bb := &WorkbookChartPointRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookChartSeriesPointsCollectionRequest is request for WorkbookChartPoint collection
type WorkbookChartSeriesPointsCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookChartPoint collection
func (r *WorkbookChartSeriesPointsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookChartPoint, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookChartPoint
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookChartPoint
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookChartPoint collection, max N pages
func (r *WorkbookChartSeriesPointsCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookChartPoint, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookChartPoint collection
func (r *WorkbookChartSeriesPointsCollectionRequest) Get(ctx context.Context) ([]WorkbookChartPoint, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookChartPoint collection
func (r *WorkbookChartSeriesPointsCollectionRequest) Add(ctx context.Context, reqObj *WorkbookChartPoint) (resObj *WorkbookChartPoint, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Fill is navigation property
func (b *WorkbookChartSeriesFormatRequestBuilder) Fill() *WorkbookChartFillRequestBuilder {
	bb := &WorkbookChartFillRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/fill"
	return bb
}

// Line is navigation property
func (b *WorkbookChartSeriesFormatRequestBuilder) Line() *WorkbookChartLineFormatRequestBuilder {
	bb := &WorkbookChartLineFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/line"
	return bb
}

// Format is navigation property
func (b *WorkbookChartTitleRequestBuilder) Format() *WorkbookChartTitleFormatRequestBuilder {
	bb := &WorkbookChartTitleFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// Fill is navigation property
func (b *WorkbookChartTitleFormatRequestBuilder) Fill() *WorkbookChartFillRequestBuilder {
	bb := &WorkbookChartFillRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/fill"
	return bb
}

// Font is navigation property
func (b *WorkbookChartTitleFormatRequestBuilder) Font() *WorkbookChartFontRequestBuilder {
	bb := &WorkbookChartFontRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/font"
	return bb
}

// Replies returns request builder for WorkbookCommentReply collection
func (b *WorkbookCommentRequestBuilder) Replies() *WorkbookCommentRepliesCollectionRequestBuilder {
	bb := &WorkbookCommentRepliesCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/replies"
	return bb
}

// WorkbookCommentRepliesCollectionRequestBuilder is request builder for WorkbookCommentReply collection
type WorkbookCommentRepliesCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookCommentReply collection
func (b *WorkbookCommentRepliesCollectionRequestBuilder) Request() *WorkbookCommentRepliesCollectionRequest {
	return &WorkbookCommentRepliesCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookCommentReply item
func (b *WorkbookCommentRepliesCollectionRequestBuilder) ID(id string) *WorkbookCommentReplyRequestBuilder {
	bb := &WorkbookCommentReplyRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookCommentRepliesCollectionRequest is request for WorkbookCommentReply collection
type WorkbookCommentRepliesCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookCommentReply collection
func (r *WorkbookCommentRepliesCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookCommentReply, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookCommentReply
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookCommentReply
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookCommentReply collection, max N pages
func (r *WorkbookCommentRepliesCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookCommentReply, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookCommentReply collection
func (r *WorkbookCommentRepliesCollectionRequest) Get(ctx context.Context) ([]WorkbookCommentReply, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookCommentReply collection
func (r *WorkbookCommentRepliesCollectionRequest) Add(ctx context.Context, reqObj *WorkbookCommentReply) (resObj *WorkbookCommentReply, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Worksheet is navigation property
func (b *WorkbookNamedItemRequestBuilder) Worksheet() *WorkbookWorksheetRequestBuilder {
	bb := &WorkbookWorksheetRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/worksheet"
	return bb
}

// Worksheet is navigation property
func (b *WorkbookPivotTableRequestBuilder) Worksheet() *WorkbookWorksheetRequestBuilder {
	bb := &WorkbookWorksheetRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/worksheet"
	return bb
}

// Format is navigation property
func (b *WorkbookRangeRequestBuilder) Format() *WorkbookRangeFormatRequestBuilder {
	bb := &WorkbookRangeFormatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/format"
	return bb
}

// Sort is navigation property
func (b *WorkbookRangeRequestBuilder) Sort() *WorkbookRangeSortRequestBuilder {
	bb := &WorkbookRangeSortRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/sort"
	return bb
}

// Worksheet is navigation property
func (b *WorkbookRangeRequestBuilder) Worksheet() *WorkbookWorksheetRequestBuilder {
	bb := &WorkbookWorksheetRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/worksheet"
	return bb
}

// Borders returns request builder for WorkbookRangeBorder collection
func (b *WorkbookRangeFormatRequestBuilder) Borders() *WorkbookRangeFormatBordersCollectionRequestBuilder {
	bb := &WorkbookRangeFormatBordersCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/borders"
	return bb
}

// WorkbookRangeFormatBordersCollectionRequestBuilder is request builder for WorkbookRangeBorder collection
type WorkbookRangeFormatBordersCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookRangeBorder collection
func (b *WorkbookRangeFormatBordersCollectionRequestBuilder) Request() *WorkbookRangeFormatBordersCollectionRequest {
	return &WorkbookRangeFormatBordersCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookRangeBorder item
func (b *WorkbookRangeFormatBordersCollectionRequestBuilder) ID(id string) *WorkbookRangeBorderRequestBuilder {
	bb := &WorkbookRangeBorderRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookRangeFormatBordersCollectionRequest is request for WorkbookRangeBorder collection
type WorkbookRangeFormatBordersCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookRangeBorder collection
func (r *WorkbookRangeFormatBordersCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookRangeBorder, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookRangeBorder
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookRangeBorder
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookRangeBorder collection, max N pages
func (r *WorkbookRangeFormatBordersCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookRangeBorder, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookRangeBorder collection
func (r *WorkbookRangeFormatBordersCollectionRequest) Get(ctx context.Context) ([]WorkbookRangeBorder, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookRangeBorder collection
func (r *WorkbookRangeFormatBordersCollectionRequest) Add(ctx context.Context, reqObj *WorkbookRangeBorder) (resObj *WorkbookRangeBorder, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Fill is navigation property
func (b *WorkbookRangeFormatRequestBuilder) Fill() *WorkbookRangeFillRequestBuilder {
	bb := &WorkbookRangeFillRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/fill"
	return bb
}

// Font is navigation property
func (b *WorkbookRangeFormatRequestBuilder) Font() *WorkbookRangeFontRequestBuilder {
	bb := &WorkbookRangeFontRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/font"
	return bb
}

// Protection is navigation property
func (b *WorkbookRangeFormatRequestBuilder) Protection() *WorkbookFormatProtectionRequestBuilder {
	bb := &WorkbookFormatProtectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/protection"
	return bb
}

// Rows returns request builder for WorkbookRangeView collection
func (b *WorkbookRangeViewRequestBuilder) Rows() *WorkbookRangeViewRowsCollectionRequestBuilder {
	bb := &WorkbookRangeViewRowsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/rows"
	return bb
}

// WorkbookRangeViewRowsCollectionRequestBuilder is request builder for WorkbookRangeView collection
type WorkbookRangeViewRowsCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookRangeView collection
func (b *WorkbookRangeViewRowsCollectionRequestBuilder) Request() *WorkbookRangeViewRowsCollectionRequest {
	return &WorkbookRangeViewRowsCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookRangeView item
func (b *WorkbookRangeViewRowsCollectionRequestBuilder) ID(id string) *WorkbookRangeViewRequestBuilder {
	bb := &WorkbookRangeViewRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookRangeViewRowsCollectionRequest is request for WorkbookRangeView collection
type WorkbookRangeViewRowsCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookRangeView collection
func (r *WorkbookRangeViewRowsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookRangeView, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookRangeView
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookRangeView
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookRangeView collection, max N pages
func (r *WorkbookRangeViewRowsCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookRangeView, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookRangeView collection
func (r *WorkbookRangeViewRowsCollectionRequest) Get(ctx context.Context) ([]WorkbookRangeView, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookRangeView collection
func (r *WorkbookRangeViewRowsCollectionRequest) Add(ctx context.Context, reqObj *WorkbookRangeView) (resObj *WorkbookRangeView, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Columns returns request builder for WorkbookTableColumn collection
func (b *WorkbookTableRequestBuilder) Columns() *WorkbookTableColumnsCollectionRequestBuilder {
	bb := &WorkbookTableColumnsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/columns"
	return bb
}

// WorkbookTableColumnsCollectionRequestBuilder is request builder for WorkbookTableColumn collection
type WorkbookTableColumnsCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookTableColumn collection
func (b *WorkbookTableColumnsCollectionRequestBuilder) Request() *WorkbookTableColumnsCollectionRequest {
	return &WorkbookTableColumnsCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookTableColumn item
func (b *WorkbookTableColumnsCollectionRequestBuilder) ID(id string) *WorkbookTableColumnRequestBuilder {
	bb := &WorkbookTableColumnRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookTableColumnsCollectionRequest is request for WorkbookTableColumn collection
type WorkbookTableColumnsCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookTableColumn collection
func (r *WorkbookTableColumnsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookTableColumn, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookTableColumn
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookTableColumn
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookTableColumn collection, max N pages
func (r *WorkbookTableColumnsCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookTableColumn, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookTableColumn collection
func (r *WorkbookTableColumnsCollectionRequest) Get(ctx context.Context) ([]WorkbookTableColumn, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookTableColumn collection
func (r *WorkbookTableColumnsCollectionRequest) Add(ctx context.Context, reqObj *WorkbookTableColumn) (resObj *WorkbookTableColumn, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Rows returns request builder for WorkbookTableRow collection
func (b *WorkbookTableRequestBuilder) Rows() *WorkbookTableRowsCollectionRequestBuilder {
	bb := &WorkbookTableRowsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/rows"
	return bb
}

// WorkbookTableRowsCollectionRequestBuilder is request builder for WorkbookTableRow collection
type WorkbookTableRowsCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookTableRow collection
func (b *WorkbookTableRowsCollectionRequestBuilder) Request() *WorkbookTableRowsCollectionRequest {
	return &WorkbookTableRowsCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookTableRow item
func (b *WorkbookTableRowsCollectionRequestBuilder) ID(id string) *WorkbookTableRowRequestBuilder {
	bb := &WorkbookTableRowRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookTableRowsCollectionRequest is request for WorkbookTableRow collection
type WorkbookTableRowsCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookTableRow collection
func (r *WorkbookTableRowsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookTableRow, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookTableRow
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookTableRow
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookTableRow collection, max N pages
func (r *WorkbookTableRowsCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookTableRow, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookTableRow collection
func (r *WorkbookTableRowsCollectionRequest) Get(ctx context.Context) ([]WorkbookTableRow, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookTableRow collection
func (r *WorkbookTableRowsCollectionRequest) Add(ctx context.Context, reqObj *WorkbookTableRow) (resObj *WorkbookTableRow, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Sort is navigation property
func (b *WorkbookTableRequestBuilder) Sort() *WorkbookTableSortRequestBuilder {
	bb := &WorkbookTableSortRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/sort"
	return bb
}

// Worksheet is navigation property
func (b *WorkbookTableRequestBuilder) Worksheet() *WorkbookWorksheetRequestBuilder {
	bb := &WorkbookWorksheetRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/worksheet"
	return bb
}

// Filter is navigation property
func (b *WorkbookTableColumnRequestBuilder) Filter() *WorkbookFilterRequestBuilder {
	bb := &WorkbookFilterRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/filter"
	return bb
}

// Charts returns request builder for WorkbookChart collection
func (b *WorkbookWorksheetRequestBuilder) Charts() *WorkbookWorksheetChartsCollectionRequestBuilder {
	bb := &WorkbookWorksheetChartsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/charts"
	return bb
}

// WorkbookWorksheetChartsCollectionRequestBuilder is request builder for WorkbookChart collection
type WorkbookWorksheetChartsCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookChart collection
func (b *WorkbookWorksheetChartsCollectionRequestBuilder) Request() *WorkbookWorksheetChartsCollectionRequest {
	return &WorkbookWorksheetChartsCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookChart item
func (b *WorkbookWorksheetChartsCollectionRequestBuilder) ID(id string) *WorkbookChartRequestBuilder {
	bb := &WorkbookChartRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookWorksheetChartsCollectionRequest is request for WorkbookChart collection
type WorkbookWorksheetChartsCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookChart collection
func (r *WorkbookWorksheetChartsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookChart, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookChart
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookChart
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookChart collection, max N pages
func (r *WorkbookWorksheetChartsCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookChart, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookChart collection
func (r *WorkbookWorksheetChartsCollectionRequest) Get(ctx context.Context) ([]WorkbookChart, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookChart collection
func (r *WorkbookWorksheetChartsCollectionRequest) Add(ctx context.Context, reqObj *WorkbookChart) (resObj *WorkbookChart, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Names returns request builder for WorkbookNamedItem collection
func (b *WorkbookWorksheetRequestBuilder) Names() *WorkbookWorksheetNamesCollectionRequestBuilder {
	bb := &WorkbookWorksheetNamesCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/names"
	return bb
}

// WorkbookWorksheetNamesCollectionRequestBuilder is request builder for WorkbookNamedItem collection
type WorkbookWorksheetNamesCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookNamedItem collection
func (b *WorkbookWorksheetNamesCollectionRequestBuilder) Request() *WorkbookWorksheetNamesCollectionRequest {
	return &WorkbookWorksheetNamesCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookNamedItem item
func (b *WorkbookWorksheetNamesCollectionRequestBuilder) ID(id string) *WorkbookNamedItemRequestBuilder {
	bb := &WorkbookNamedItemRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookWorksheetNamesCollectionRequest is request for WorkbookNamedItem collection
type WorkbookWorksheetNamesCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookNamedItem collection
func (r *WorkbookWorksheetNamesCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookNamedItem, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookNamedItem
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookNamedItem
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookNamedItem collection, max N pages
func (r *WorkbookWorksheetNamesCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookNamedItem, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookNamedItem collection
func (r *WorkbookWorksheetNamesCollectionRequest) Get(ctx context.Context) ([]WorkbookNamedItem, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookNamedItem collection
func (r *WorkbookWorksheetNamesCollectionRequest) Add(ctx context.Context, reqObj *WorkbookNamedItem) (resObj *WorkbookNamedItem, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// PivotTables returns request builder for WorkbookPivotTable collection
func (b *WorkbookWorksheetRequestBuilder) PivotTables() *WorkbookWorksheetPivotTablesCollectionRequestBuilder {
	bb := &WorkbookWorksheetPivotTablesCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/pivotTables"
	return bb
}

// WorkbookWorksheetPivotTablesCollectionRequestBuilder is request builder for WorkbookPivotTable collection
type WorkbookWorksheetPivotTablesCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookPivotTable collection
func (b *WorkbookWorksheetPivotTablesCollectionRequestBuilder) Request() *WorkbookWorksheetPivotTablesCollectionRequest {
	return &WorkbookWorksheetPivotTablesCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookPivotTable item
func (b *WorkbookWorksheetPivotTablesCollectionRequestBuilder) ID(id string) *WorkbookPivotTableRequestBuilder {
	bb := &WorkbookPivotTableRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookWorksheetPivotTablesCollectionRequest is request for WorkbookPivotTable collection
type WorkbookWorksheetPivotTablesCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookPivotTable collection
func (r *WorkbookWorksheetPivotTablesCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookPivotTable, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookPivotTable
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookPivotTable
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookPivotTable collection, max N pages
func (r *WorkbookWorksheetPivotTablesCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookPivotTable, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookPivotTable collection
func (r *WorkbookWorksheetPivotTablesCollectionRequest) Get(ctx context.Context) ([]WorkbookPivotTable, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookPivotTable collection
func (r *WorkbookWorksheetPivotTablesCollectionRequest) Add(ctx context.Context, reqObj *WorkbookPivotTable) (resObj *WorkbookPivotTable, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}

// Protection is navigation property
func (b *WorkbookWorksheetRequestBuilder) Protection() *WorkbookWorksheetProtectionRequestBuilder {
	bb := &WorkbookWorksheetProtectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/protection"
	return bb
}

// Tables returns request builder for WorkbookTable collection
func (b *WorkbookWorksheetRequestBuilder) Tables() *WorkbookWorksheetTablesCollectionRequestBuilder {
	bb := &WorkbookWorksheetTablesCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/tables"
	return bb
}

// WorkbookWorksheetTablesCollectionRequestBuilder is request builder for WorkbookTable collection
type WorkbookWorksheetTablesCollectionRequestBuilder struct{ BaseRequestBuilder }

// Request returns request for WorkbookTable collection
func (b *WorkbookWorksheetTablesCollectionRequestBuilder) Request() *WorkbookWorksheetTablesCollectionRequest {
	return &WorkbookWorksheetTablesCollectionRequest{
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
	}
}

// ID returns request builder for WorkbookTable item
func (b *WorkbookWorksheetTablesCollectionRequestBuilder) ID(id string) *WorkbookTableRequestBuilder {
	bb := &WorkbookTableRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	bb.baseURL += "/" + id
	return bb
}

// WorkbookWorksheetTablesCollectionRequest is request for WorkbookTable collection
type WorkbookWorksheetTablesCollectionRequest struct{ BaseRequest }

// Paging perfoms paging operation for WorkbookTable collection
func (r *WorkbookWorksheetTablesCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]WorkbookTable, error) {
	req, err := r.NewJSONRequest(method, path, obj)
	if err != nil {
		return nil, err
	}
	if ctx != nil {
		req = req.WithContext(ctx)
	}
	res, err := r.client.Do(req)
	if err != nil {
		return nil, err
	}
	var values []WorkbookTable
	for {
		if res.StatusCode != http.StatusOK {
			b, _ := ioutil.ReadAll(res.Body)
			res.Body.Close()
			errRes := &ErrorResponse{Response: res}
			err := jsonx.Unmarshal(b, errRes)
			if err != nil {
				return nil, fmt.Errorf("%s: %s", res.Status, string(b))
			}
			return nil, errRes
		}
		var (
			paging Paging
			value  []WorkbookTable
		)
		err := jsonx.NewDecoder(res.Body).Decode(&paging)
		res.Body.Close()
		if err != nil {
			return nil, err
		}
		err = jsonx.Unmarshal(paging.Value, &value)
		if err != nil {
			return nil, err
		}
		values = append(values, value...)
		if n >= 0 {
			n--
		}
		if n == 0 || len(paging.NextLink) == 0 {
			return values, nil
		}
		req, err = http.NewRequest("GET", paging.NextLink, nil)
		if ctx != nil {
			req = req.WithContext(ctx)
		}
		res, err = r.client.Do(req)
		if err != nil {
			return nil, err
		}
	}
}

// GetN performs GET request for WorkbookTable collection, max N pages
func (r *WorkbookWorksheetTablesCollectionRequest) GetN(ctx context.Context, n int) ([]WorkbookTable, error) {
	var query string
	if r.query != nil {
		query = "?" + r.query.Encode()
	}
	return r.Paging(ctx, "GET", query, nil, n)
}

// Get performs GET request for WorkbookTable collection
func (r *WorkbookWorksheetTablesCollectionRequest) Get(ctx context.Context) ([]WorkbookTable, error) {
	return r.GetN(ctx, 0)
}

// Add performs POST request for WorkbookTable collection
func (r *WorkbookWorksheetTablesCollectionRequest) Add(ctx context.Context, reqObj *WorkbookTable) (resObj *WorkbookTable, err error) {
	err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj)
	return
}