1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235
|
// Package sheets provides access to the Google Sheets API.
//
// See https://developers.google.com/sheets/
//
// Usage example:
//
// import "google.golang.org/api/sheets/v4"
// ...
// sheetsService, err := sheets.New(oauthHttpClient)
package sheets // import "google.golang.org/api/sheets/v4"
import (
"bytes"
"encoding/json"
"errors"
"fmt"
context "golang.org/x/net/context"
ctxhttp "golang.org/x/net/context/ctxhttp"
gensupport "google.golang.org/api/gensupport"
googleapi "google.golang.org/api/googleapi"
"io"
"net/http"
"net/url"
"strconv"
"strings"
)
// Always reference these packages, just in case the auto-generated code
// below doesn't.
var _ = bytes.NewBuffer
var _ = strconv.Itoa
var _ = fmt.Sprintf
var _ = json.NewDecoder
var _ = io.Copy
var _ = url.Parse
var _ = gensupport.MarshalJSON
var _ = googleapi.Version
var _ = errors.New
var _ = strings.Replace
var _ = context.Canceled
var _ = ctxhttp.Do
const apiId = "sheets:v4"
const apiName = "sheets"
const apiVersion = "v4"
const basePath = "https://sheets.googleapis.com/"
// OAuth2 scopes used by this API.
const (
// View and manage the files in your Google Drive
DriveScope = "https://www.googleapis.com/auth/drive"
// View the files in your Google Drive
DriveReadonlyScope = "https://www.googleapis.com/auth/drive.readonly"
// View and manage your spreadsheets in Google Drive
SpreadsheetsScope = "https://www.googleapis.com/auth/spreadsheets"
// View your Google Spreadsheets
SpreadsheetsReadonlyScope = "https://www.googleapis.com/auth/spreadsheets.readonly"
)
func New(client *http.Client) (*Service, error) {
if client == nil {
return nil, errors.New("client is nil")
}
s := &Service{client: client, BasePath: basePath}
s.Spreadsheets = NewSpreadsheetsService(s)
return s, nil
}
type Service struct {
client *http.Client
BasePath string // API endpoint base URL
UserAgent string // optional additional User-Agent fragment
Spreadsheets *SpreadsheetsService
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewSpreadsheetsService(s *Service) *SpreadsheetsService {
rs := &SpreadsheetsService{s: s}
rs.Sheets = NewSpreadsheetsSheetsService(s)
rs.Values = NewSpreadsheetsValuesService(s)
return rs
}
type SpreadsheetsService struct {
s *Service
Sheets *SpreadsheetsSheetsService
Values *SpreadsheetsValuesService
}
func NewSpreadsheetsSheetsService(s *Service) *SpreadsheetsSheetsService {
rs := &SpreadsheetsSheetsService{s: s}
return rs
}
type SpreadsheetsSheetsService struct {
s *Service
}
func NewSpreadsheetsValuesService(s *Service) *SpreadsheetsValuesService {
rs := &SpreadsheetsValuesService{s: s}
return rs
}
type SpreadsheetsValuesService struct {
s *Service
}
// AddBandingRequest: Adds a new banded range to the spreadsheet.
type AddBandingRequest struct {
// BandedRange: The banded range to add. The bandedRangeId
// field is optional; if one is not set, an id will be randomly
// generated. (It
// is an error to specify the ID of a range that already exists.)
BandedRange *BandedRange `json:"bandedRange,omitempty"`
// ForceSendFields is a list of field names (e.g. "BandedRange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BandedRange") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddBandingRequest) MarshalJSON() ([]byte, error) {
type noMethod AddBandingRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddBandingResponse: The result of adding a banded range.
type AddBandingResponse struct {
// BandedRange: The banded range that was added.
BandedRange *BandedRange `json:"bandedRange,omitempty"`
// ForceSendFields is a list of field names (e.g. "BandedRange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BandedRange") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddBandingResponse) MarshalJSON() ([]byte, error) {
type noMethod AddBandingResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddChartRequest: Adds a chart to a sheet in the spreadsheet.
type AddChartRequest struct {
// Chart: The chart that should be added to the spreadsheet, including
// the position
// where it should be placed. The chartId
// field is optional; if one is not set, an id will be randomly
// generated. (It
// is an error to specify the ID of a chart that already exists.)
Chart *EmbeddedChart `json:"chart,omitempty"`
// ForceSendFields is a list of field names (e.g. "Chart") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Chart") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddChartRequest) MarshalJSON() ([]byte, error) {
type noMethod AddChartRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddChartResponse: The result of adding a chart to a spreadsheet.
type AddChartResponse struct {
// Chart: The newly added chart.
Chart *EmbeddedChart `json:"chart,omitempty"`
// ForceSendFields is a list of field names (e.g. "Chart") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Chart") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddChartResponse) MarshalJSON() ([]byte, error) {
type noMethod AddChartResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddConditionalFormatRuleRequest: Adds a new conditional format rule
// at the given index.
// All subsequent rules' indexes are incremented.
type AddConditionalFormatRuleRequest struct {
// Index: The zero-based index where the rule should be inserted.
Index int64 `json:"index,omitempty"`
// Rule: The rule to add.
Rule *ConditionalFormatRule `json:"rule,omitempty"`
// ForceSendFields is a list of field names (e.g. "Index") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Index") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddConditionalFormatRuleRequest) MarshalJSON() ([]byte, error) {
type noMethod AddConditionalFormatRuleRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddFilterViewRequest: Adds a filter view.
type AddFilterViewRequest struct {
// Filter: The filter to add. The filterViewId
// field is optional; if one is not set, an id will be randomly
// generated. (It
// is an error to specify the ID of a filter that already exists.)
Filter *FilterView `json:"filter,omitempty"`
// ForceSendFields is a list of field names (e.g. "Filter") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Filter") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddFilterViewRequest) MarshalJSON() ([]byte, error) {
type noMethod AddFilterViewRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddFilterViewResponse: The result of adding a filter view.
type AddFilterViewResponse struct {
// Filter: The newly added filter view.
Filter *FilterView `json:"filter,omitempty"`
// ForceSendFields is a list of field names (e.g. "Filter") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Filter") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddFilterViewResponse) MarshalJSON() ([]byte, error) {
type noMethod AddFilterViewResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddNamedRangeRequest: Adds a named range to the spreadsheet.
type AddNamedRangeRequest struct {
// NamedRange: The named range to add. The namedRangeId
// field is optional; if one is not set, an id will be randomly
// generated. (It
// is an error to specify the ID of a range that already exists.)
NamedRange *NamedRange `json:"namedRange,omitempty"`
// ForceSendFields is a list of field names (e.g. "NamedRange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "NamedRange") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddNamedRangeRequest) MarshalJSON() ([]byte, error) {
type noMethod AddNamedRangeRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddNamedRangeResponse: The result of adding a named range.
type AddNamedRangeResponse struct {
// NamedRange: The named range to add.
NamedRange *NamedRange `json:"namedRange,omitempty"`
// ForceSendFields is a list of field names (e.g. "NamedRange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "NamedRange") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddNamedRangeResponse) MarshalJSON() ([]byte, error) {
type noMethod AddNamedRangeResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddProtectedRangeRequest: Adds a new protected range.
type AddProtectedRangeRequest struct {
// ProtectedRange: The protected range to be added. The
// protectedRangeId field is optional; if
// one is not set, an id will be randomly generated. (It is an error
// to
// specify the ID of a range that already exists.)
ProtectedRange *ProtectedRange `json:"protectedRange,omitempty"`
// ForceSendFields is a list of field names (e.g. "ProtectedRange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ProtectedRange") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *AddProtectedRangeRequest) MarshalJSON() ([]byte, error) {
type noMethod AddProtectedRangeRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddProtectedRangeResponse: The result of adding a new protected
// range.
type AddProtectedRangeResponse struct {
// ProtectedRange: The newly added protected range.
ProtectedRange *ProtectedRange `json:"protectedRange,omitempty"`
// ForceSendFields is a list of field names (e.g. "ProtectedRange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ProtectedRange") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *AddProtectedRangeResponse) MarshalJSON() ([]byte, error) {
type noMethod AddProtectedRangeResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddSheetRequest: Adds a new sheet.
// When a sheet is added at a given index,
// all subsequent sheets' indexes are incremented.
// To add an object sheet, use AddChartRequest instead and
// specify
// EmbeddedObjectPosition.sheetId or
// EmbeddedObjectPosition.newSheet.
type AddSheetRequest struct {
// Properties: The properties the new sheet should have.
// All properties are optional.
// The sheetId field is optional; if one is not
// set, an id will be randomly generated. (It is an error to specify the
// ID
// of a sheet that already exists.)
Properties *SheetProperties `json:"properties,omitempty"`
// ForceSendFields is a list of field names (e.g. "Properties") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Properties") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddSheetRequest) MarshalJSON() ([]byte, error) {
type noMethod AddSheetRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AddSheetResponse: The result of adding a sheet.
type AddSheetResponse struct {
// Properties: The properties of the newly added sheet.
Properties *SheetProperties `json:"properties,omitempty"`
// ForceSendFields is a list of field names (e.g. "Properties") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Properties") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AddSheetResponse) MarshalJSON() ([]byte, error) {
type noMethod AddSheetResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AppendCellsRequest: Adds new cells after the last row with data in a
// sheet,
// inserting new rows into the sheet if necessary.
type AppendCellsRequest struct {
// Fields: The fields of CellData that should be updated.
// At least one field must be specified.
// The root is the CellData; 'row.values.' should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// Rows: The data to append.
Rows []*RowData `json:"rows,omitempty"`
// SheetId: The sheet ID to append the data to.
SheetId int64 `json:"sheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "Fields") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Fields") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AppendCellsRequest) MarshalJSON() ([]byte, error) {
type noMethod AppendCellsRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AppendDimensionRequest: Appends rows or columns to the end of a
// sheet.
type AppendDimensionRequest struct {
// Dimension: Whether rows or columns should be appended.
//
// Possible values:
// "DIMENSION_UNSPECIFIED" - The default value, do not use.
// "ROWS" - Operates on the rows of a sheet.
// "COLUMNS" - Operates on the columns of a sheet.
Dimension string `json:"dimension,omitempty"`
// Length: The number of rows or columns to append.
Length int64 `json:"length,omitempty"`
// SheetId: The sheet to append rows or columns to.
SheetId int64 `json:"sheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "Dimension") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Dimension") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AppendDimensionRequest) MarshalJSON() ([]byte, error) {
type noMethod AppendDimensionRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AppendValuesResponse: The response when updating a range of values in
// a spreadsheet.
type AppendValuesResponse struct {
// SpreadsheetId: The spreadsheet the updates were applied to.
SpreadsheetId string `json:"spreadsheetId,omitempty"`
// TableRange: The range (in A1 notation) of the table that values are
// being appended to
// (before the values were appended).
// Empty if no table was found.
TableRange string `json:"tableRange,omitempty"`
// Updates: Information about the updates that were applied.
Updates *UpdateValuesResponse `json:"updates,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "SpreadsheetId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "SpreadsheetId") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AppendValuesResponse) MarshalJSON() ([]byte, error) {
type noMethod AppendValuesResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AutoFillRequest: Fills in more data based on existing data.
type AutoFillRequest struct {
// Range: The range to autofill. This will examine the range and
// detect
// the location that has data and automatically fill that data
// in to the rest of the range.
Range *GridRange `json:"range,omitempty"`
// SourceAndDestination: The source and destination areas to
// autofill.
// This explicitly lists the source of the autofill and where to
// extend that data.
SourceAndDestination *SourceAndDestination `json:"sourceAndDestination,omitempty"`
// UseAlternateSeries: True if we should generate data with the
// "alternate" series.
// This differs based on the type and amount of source data.
UseAlternateSeries bool `json:"useAlternateSeries,omitempty"`
// ForceSendFields is a list of field names (e.g. "Range") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Range") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AutoFillRequest) MarshalJSON() ([]byte, error) {
type noMethod AutoFillRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AutoResizeDimensionsRequest: Automatically resizes one or more
// dimensions based on the contents
// of the cells in that dimension.
type AutoResizeDimensionsRequest struct {
// Dimensions: The dimensions to automatically resize.
// Only COLUMNS are supported.
Dimensions *DimensionRange `json:"dimensions,omitempty"`
// ForceSendFields is a list of field names (e.g. "Dimensions") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Dimensions") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AutoResizeDimensionsRequest) MarshalJSON() ([]byte, error) {
type noMethod AutoResizeDimensionsRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BandedRange: A banded (alternating colors) range in a sheet.
type BandedRange struct {
// BandedRangeId: The id of the banded range.
BandedRangeId int64 `json:"bandedRangeId,omitempty"`
// ColumnProperties: Properties for column bands. These properties will
// be applied on a column-
// by-column basis throughout all the columns in the range. At least one
// of
// row_properties or column_properties must be specified.
ColumnProperties *BandingProperties `json:"columnProperties,omitempty"`
// Range: The range over which these properties are applied.
Range *GridRange `json:"range,omitempty"`
// RowProperties: Properties for row bands. These properties will be
// applied on a row-by-row
// basis throughout all the rows in the range. At least one
// of
// row_properties or column_properties must be specified.
RowProperties *BandingProperties `json:"rowProperties,omitempty"`
// ForceSendFields is a list of field names (e.g. "BandedRangeId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BandedRangeId") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BandedRange) MarshalJSON() ([]byte, error) {
type noMethod BandedRange
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BandingProperties: Properties referring a single dimension (either
// row or column). If both
// BandedRange.row_properties and BandedRange.column_properties are
// set, the fill colors are applied to cells according to the following
// rules:
//
// * header_color and footer_color take priority over band colors.
// * first_band_color takes priority over second_band_color.
// * row_properties takes priority over column_properties.
//
// For example, the first row color takes priority over the first
// column
// color, but the first column color takes priority over the second row
// color.
// Similarly, the row header takes priority over the column header in
// the
// top left cell, but the column header takes priority over the first
// row
// color if the row header is not set.
type BandingProperties struct {
// FirstBandColor: The first color that is alternating. (Required)
FirstBandColor *Color `json:"firstBandColor,omitempty"`
// FooterColor: The color of the last row or column. If this field is
// not set, the last
// row or column will be filled with either first_row_color
// or
// second_row_color, depending on the color of the previous row
// or
// column.
FooterColor *Color `json:"footerColor,omitempty"`
// HeaderColor: The color of the first row or column. If this field is
// set, the first
// row or column will be filled with this color and the colors
// will
// alternate between first_band_color and [second_band_color[]
// starting
// from the second row or column. Otherwise, the first row or column
// will be
// filled with first_band_color and the colors will proceed to
// alternate
// as they normally would.
HeaderColor *Color `json:"headerColor,omitempty"`
// SecondBandColor: The second color that is alternating. (Required)
SecondBandColor *Color `json:"secondBandColor,omitempty"`
// ForceSendFields is a list of field names (e.g. "FirstBandColor") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "FirstBandColor") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *BandingProperties) MarshalJSON() ([]byte, error) {
type noMethod BandingProperties
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BasicChartAxis: An axis of the chart.
// A chart may not have more than one axis per
// axis position.
type BasicChartAxis struct {
// Format: The format of the title.
// Only valid if the axis is not associated with the domain.
Format *TextFormat `json:"format,omitempty"`
// Position: The position of this axis.
//
// Possible values:
// "BASIC_CHART_AXIS_POSITION_UNSPECIFIED" - Default value, do not
// use.
// "BOTTOM_AXIS" - The axis rendered at the bottom of a chart.
// For most charts, this is the standard major axis.
// For bar charts, this is a minor axis.
// "LEFT_AXIS" - The axis rendered at the left of a chart.
// For most charts, this is a minor axis.
// For bar charts, this is the standard major axis.
// "RIGHT_AXIS" - The axis rendered at the right of a chart.
// For most charts, this is a minor axis.
// For bar charts, this is an unusual major axis.
Position string `json:"position,omitempty"`
// Title: The title of this axis. If set, this overrides any title
// inferred
// from headers of the data.
Title string `json:"title,omitempty"`
// ForceSendFields is a list of field names (e.g. "Format") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Format") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BasicChartAxis) MarshalJSON() ([]byte, error) {
type noMethod BasicChartAxis
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BasicChartDomain: The domain of a chart.
// For example, if charting stock prices over time, this would be the
// date.
type BasicChartDomain struct {
// Domain: The data of the domain. For example, if charting stock prices
// over time,
// this is the data representing the dates.
Domain *ChartData `json:"domain,omitempty"`
// ForceSendFields is a list of field names (e.g. "Domain") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Domain") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BasicChartDomain) MarshalJSON() ([]byte, error) {
type noMethod BasicChartDomain
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BasicChartSeries: A single series of data in a chart.
// For example, if charting stock prices over time, multiple series may
// exist,
// one for the "Open Price", "High Price", "Low Price" and "Close
// Price".
type BasicChartSeries struct {
// Series: The data being visualized in this chart series.
Series *ChartData `json:"series,omitempty"`
// TargetAxis: The minor axis that will specify the range of values for
// this series.
// For example, if charting stocks over time, the "Volume" series
// may want to be pinned to the right with the prices pinned to the
// left,
// because the scale of trading volume is different than the scale
// of
// prices.
// It is an error to specify an axis that isn't a valid minor axis
// for the chart's type.
//
// Possible values:
// "BASIC_CHART_AXIS_POSITION_UNSPECIFIED" - Default value, do not
// use.
// "BOTTOM_AXIS" - The axis rendered at the bottom of a chart.
// For most charts, this is the standard major axis.
// For bar charts, this is a minor axis.
// "LEFT_AXIS" - The axis rendered at the left of a chart.
// For most charts, this is a minor axis.
// For bar charts, this is the standard major axis.
// "RIGHT_AXIS" - The axis rendered at the right of a chart.
// For most charts, this is a minor axis.
// For bar charts, this is an unusual major axis.
TargetAxis string `json:"targetAxis,omitempty"`
// Type: The type of this series. Valid only if the
// chartType is
// COMBO.
// Different types will change the way the series is visualized.
// Only LINE, AREA,
// and COLUMN are supported.
//
// Possible values:
// "BASIC_CHART_TYPE_UNSPECIFIED" - Default value, do not use.
// "BAR" - A <a href="/chart/interactive/docs/gallery/barchart">bar
// chart</a>.
// "LINE" - A <a href="/chart/interactive/docs/gallery/linechart">line
// chart</a>.
// "AREA" - An <a
// href="/chart/interactive/docs/gallery/areachart">area chart</a>.
// "COLUMN" - A <a
// href="/chart/interactive/docs/gallery/columnchart">column chart</a>.
// "SCATTER" - A <a
// href="/chart/interactive/docs/gallery/scatterchart">scatter
// chart</a>.
// "COMBO" - A <a
// href="/chart/interactive/docs/gallery/combochart">combo chart</a>.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Series") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Series") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BasicChartSeries) MarshalJSON() ([]byte, error) {
type noMethod BasicChartSeries
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BasicChartSpec: The specification for a basic chart. See
// BasicChartType for the list
// of charts this supports.
type BasicChartSpec struct {
// Axis: The axis on the chart.
Axis []*BasicChartAxis `json:"axis,omitempty"`
// ChartType: The type of the chart.
//
// Possible values:
// "BASIC_CHART_TYPE_UNSPECIFIED" - Default value, do not use.
// "BAR" - A <a href="/chart/interactive/docs/gallery/barchart">bar
// chart</a>.
// "LINE" - A <a href="/chart/interactive/docs/gallery/linechart">line
// chart</a>.
// "AREA" - An <a
// href="/chart/interactive/docs/gallery/areachart">area chart</a>.
// "COLUMN" - A <a
// href="/chart/interactive/docs/gallery/columnchart">column chart</a>.
// "SCATTER" - A <a
// href="/chart/interactive/docs/gallery/scatterchart">scatter
// chart</a>.
// "COMBO" - A <a
// href="/chart/interactive/docs/gallery/combochart">combo chart</a>.
ChartType string `json:"chartType,omitempty"`
// Domains: The domain of data this is charting.
// Only a single domain is currently supported.
Domains []*BasicChartDomain `json:"domains,omitempty"`
// HeaderCount: The number of rows or columns in the data that are
// "headers".
// If not set, Google Sheets will guess how many rows are headers
// based
// on the data.
//
// (Note that BasicChartAxis.title may override the axis title
// inferred from the header values.)
HeaderCount int64 `json:"headerCount,omitempty"`
// LegendPosition: The position of the chart legend.
//
// Possible values:
// "BASIC_CHART_LEGEND_POSITION_UNSPECIFIED" - Default value, do not
// use.
// "BOTTOM_LEGEND" - The legend is rendered on the bottom of the
// chart.
// "LEFT_LEGEND" - The legend is rendered on the left of the chart.
// "RIGHT_LEGEND" - The legend is rendered on the right of the chart.
// "TOP_LEGEND" - The legend is rendered on the top of the chart.
// "NO_LEGEND" - No legend is rendered.
LegendPosition string `json:"legendPosition,omitempty"`
// Series: The data this chart is visualizing.
Series []*BasicChartSeries `json:"series,omitempty"`
// ForceSendFields is a list of field names (e.g. "Axis") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Axis") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BasicChartSpec) MarshalJSON() ([]byte, error) {
type noMethod BasicChartSpec
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BasicFilter: The default filter associated with a sheet.
type BasicFilter struct {
// Criteria: The criteria for showing/hiding values per column.
// The map's key is the column index, and the value is the criteria
// for
// that column.
Criteria map[string]FilterCriteria `json:"criteria,omitempty"`
// Range: The range the filter covers.
Range *GridRange `json:"range,omitempty"`
// SortSpecs: The sort order per column. Later specifications are used
// when values
// are equal in the earlier specifications.
SortSpecs []*SortSpec `json:"sortSpecs,omitempty"`
// ForceSendFields is a list of field names (e.g. "Criteria") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Criteria") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BasicFilter) MarshalJSON() ([]byte, error) {
type noMethod BasicFilter
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchClearValuesRequest: The request for clearing more than one range
// of values in a spreadsheet.
type BatchClearValuesRequest struct {
// Ranges: The ranges to clear, in A1 notation.
Ranges []string `json:"ranges,omitempty"`
// ForceSendFields is a list of field names (e.g. "Ranges") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Ranges") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BatchClearValuesRequest) MarshalJSON() ([]byte, error) {
type noMethod BatchClearValuesRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchClearValuesResponse: The response when updating a range of
// values in a spreadsheet.
type BatchClearValuesResponse struct {
// ClearedRanges: The ranges that were cleared, in A1 notation.
// (If the requests were for an unbounded range or a ranger larger
// than the bounds of the sheet, this will be the actual ranges
// that were cleared, bounded to the sheet's limits.)
ClearedRanges []string `json:"clearedRanges,omitempty"`
// SpreadsheetId: The spreadsheet the updates were applied to.
SpreadsheetId string `json:"spreadsheetId,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "ClearedRanges") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ClearedRanges") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BatchClearValuesResponse) MarshalJSON() ([]byte, error) {
type noMethod BatchClearValuesResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchGetValuesResponse: The response when retrieving more than one
// range of values in a spreadsheet.
type BatchGetValuesResponse struct {
// SpreadsheetId: The ID of the spreadsheet the data was retrieved from.
SpreadsheetId string `json:"spreadsheetId,omitempty"`
// ValueRanges: The requested values. The order of the ValueRanges is
// the same as the
// order of the requested ranges.
ValueRanges []*ValueRange `json:"valueRanges,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "SpreadsheetId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "SpreadsheetId") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BatchGetValuesResponse) MarshalJSON() ([]byte, error) {
type noMethod BatchGetValuesResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchUpdateSpreadsheetRequest: The request for updating any aspect of
// a spreadsheet.
type BatchUpdateSpreadsheetRequest struct {
// IncludeSpreadsheetInResponse: Determines if the update response
// should include the spreadsheet
// resource.
IncludeSpreadsheetInResponse bool `json:"includeSpreadsheetInResponse,omitempty"`
// Requests: A list of updates to apply to the spreadsheet.
Requests []*Request `json:"requests,omitempty"`
// ResponseIncludeGridData: True if grid data should be returned.
// Meaningful only if
// if include_spreadsheet_response is 'true'.
// This parameter is ignored if a field mask was set in the request.
ResponseIncludeGridData bool `json:"responseIncludeGridData,omitempty"`
// ResponseRanges: Limits the ranges included in the response
// spreadsheet.
// Meaningful only if include_spreadsheet_response is 'true'.
ResponseRanges []string `json:"responseRanges,omitempty"`
// ForceSendFields is a list of field names (e.g.
// "IncludeSpreadsheetInResponse") to unconditionally include in API
// requests. By default, fields with empty values are omitted from API
// requests. However, any non-pointer, non-interface field appearing in
// ForceSendFields will be sent to the server regardless of whether the
// field is empty or not. This may be used to include empty fields in
// Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g.
// "IncludeSpreadsheetInResponse") to include in API requests with the
// JSON null value. By default, fields with empty values are omitted
// from API requests. However, any field with an empty value appearing
// in NullFields will be sent to the server as null. It is an error if a
// field in this list has a non-empty value. This may be used to include
// null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BatchUpdateSpreadsheetRequest) MarshalJSON() ([]byte, error) {
type noMethod BatchUpdateSpreadsheetRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchUpdateSpreadsheetResponse: The reply for batch updating a
// spreadsheet.
type BatchUpdateSpreadsheetResponse struct {
// Replies: The reply of the updates. This maps 1:1 with the updates,
// although
// replies to some requests may be empty.
Replies []*Response `json:"replies,omitempty"`
// SpreadsheetId: The spreadsheet the updates were applied to.
SpreadsheetId string `json:"spreadsheetId,omitempty"`
// UpdatedSpreadsheet: The spreadsheet after updates were applied. This
// is only set
// if
// [BatchUpdateSpreadsheetRequest.include_spreadsheet_in_response] is
// `true`.
UpdatedSpreadsheet *Spreadsheet `json:"updatedSpreadsheet,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Replies") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Replies") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BatchUpdateSpreadsheetResponse) MarshalJSON() ([]byte, error) {
type noMethod BatchUpdateSpreadsheetResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchUpdateValuesRequest: The request for updating more than one
// range of values in a spreadsheet.
type BatchUpdateValuesRequest struct {
// Data: The new values to apply to the spreadsheet.
Data []*ValueRange `json:"data,omitempty"`
// IncludeValuesInResponse: Determines if the update response should
// include the values
// of the cells that were updated. By default, responses
// do not include the updated values. The `updatedData` field
// within
// each of the BatchUpdateValuesResponse.responses will contain
// the updated values. If the range to write was larger than than the
// range
// actually written, the response will include all values in the
// requested
// range (excluding trailing empty rows and columns).
IncludeValuesInResponse bool `json:"includeValuesInResponse,omitempty"`
// ResponseDateTimeRenderOption: Determines how dates, times, and
// durations in the response should be
// rendered. This is ignored if response_value_render_option
// is
// FORMATTED_VALUE.
// The default dateTime render option is
// [DateTimeRenderOption.SERIAL_NUMBER].
//
// Possible values:
// "SERIAL_NUMBER" - Instructs date, time, datetime, and duration
// fields to be output
// as doubles in "serial number" format, as popularized by Lotus
// 1-2-3.
// Days are counted from December 31st 1899 and are incremented by
// 1,
// and times are fractions of a day. For example, January 1st 1900 at
// noon
// would be 1.5, 1 because it's 1 day offset from December 31st
// 1899,
// and .5 because noon is half a day. February 1st 1900 at 3pm would
// be 32.625. This correctly treats the year 1900 as not a leap year.
// "FORMATTED_STRING" - Instructs date, time, datetime, and duration
// fields to be output
// as strings in their given number format (which is dependent
// on the spreadsheet locale).
ResponseDateTimeRenderOption string `json:"responseDateTimeRenderOption,omitempty"`
// ResponseValueRenderOption: Determines how values in the response
// should be rendered.
// The default render option is ValueRenderOption.FORMATTED_VALUE.
//
// Possible values:
// "FORMATTED_VALUE" - Values will be calculated & formatted in the
// reply according to the
// cell's formatting. Formatting is based on the spreadsheet's
// locale,
// not the requesting user's locale.
// For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as
// currency,
// then `A2` would return "$1.23".
// "UNFORMATTED_VALUE" - Values will be calculated, but not formatted
// in the reply.
// For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as
// currency,
// then `A2` would return the number `1.23`.
// "FORMULA" - Values will not be calculated. The reply will include
// the formulas.
// For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as
// currency,
// then A2 would return "=A1".
ResponseValueRenderOption string `json:"responseValueRenderOption,omitempty"`
// ValueInputOption: How the input data should be interpreted.
//
// Possible values:
// "INPUT_VALUE_OPTION_UNSPECIFIED" - Default input value. This value
// must not be used.
// "RAW" - The values the user has entered will not be parsed and will
// be stored
// as-is.
// "USER_ENTERED" - The values will be parsed as if the user typed
// them into the UI.
// Numbers will stay as numbers, but strings may be converted to
// numbers,
// dates, etc. following the same rules that are applied when
// entering
// text into a cell via the Google Sheets UI.
ValueInputOption string `json:"valueInputOption,omitempty"`
// ForceSendFields is a list of field names (e.g. "Data") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Data") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BatchUpdateValuesRequest) MarshalJSON() ([]byte, error) {
type noMethod BatchUpdateValuesRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchUpdateValuesResponse: The response when updating a range of
// values in a spreadsheet.
type BatchUpdateValuesResponse struct {
// Responses: One UpdateValuesResponse per requested range, in the same
// order as
// the requests appeared.
Responses []*UpdateValuesResponse `json:"responses,omitempty"`
// SpreadsheetId: The spreadsheet the updates were applied to.
SpreadsheetId string `json:"spreadsheetId,omitempty"`
// TotalUpdatedCells: The total number of cells updated.
TotalUpdatedCells int64 `json:"totalUpdatedCells,omitempty"`
// TotalUpdatedColumns: The total number of columns where at least one
// cell in the column was
// updated.
TotalUpdatedColumns int64 `json:"totalUpdatedColumns,omitempty"`
// TotalUpdatedRows: The total number of rows where at least one cell in
// the row was updated.
TotalUpdatedRows int64 `json:"totalUpdatedRows,omitempty"`
// TotalUpdatedSheets: The total number of sheets where at least one
// cell in the sheet was
// updated.
TotalUpdatedSheets int64 `json:"totalUpdatedSheets,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Responses") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Responses") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BatchUpdateValuesResponse) MarshalJSON() ([]byte, error) {
type noMethod BatchUpdateValuesResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BooleanCondition: A condition that can evaluate to true or
// false.
// BooleanConditions are used by conditional formatting,
// data validation, and the criteria in filters.
type BooleanCondition struct {
// Type: The type of condition.
//
// Possible values:
// "CONDITION_TYPE_UNSPECIFIED" - The default value, do not use.
// "NUMBER_GREATER" - The cell's value must be greater than the
// condition's value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "NUMBER_GREATER_THAN_EQ" - The cell's value must be greater than or
// equal to the condition's value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "NUMBER_LESS" - The cell's value must be less than the condition's
// value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "NUMBER_LESS_THAN_EQ" - The cell's value must be less than or equal
// to the condition's value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "NUMBER_EQ" - The cell's value must be equal to the condition's
// value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "NUMBER_NOT_EQ" - The cell's value must be not equal to the
// condition's value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "NUMBER_BETWEEN" - The cell's value must be between the two
// condition values.
// Supported by data validation, conditional formatting and
// filters.
// Requires exactly two ConditionValues.
// "NUMBER_NOT_BETWEEN" - The cell's value must not be between the two
// condition values.
// Supported by data validation, conditional formatting and
// filters.
// Requires exactly two ConditionValues.
// "TEXT_CONTAINS" - The cell's value must contain the condition's
// value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "TEXT_NOT_CONTAINS" - The cell's value must not contain the
// condition's value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "TEXT_STARTS_WITH" - The cell's value must start with the
// condition's value.
// Supported by conditional formatting and filters.
// Requires a single ConditionValue.
// "TEXT_ENDS_WITH" - The cell's value must end with the condition's
// value.
// Supported by conditional formatting and filters.
// Requires a single ConditionValue.
// "TEXT_EQ" - The cell's value must be exactly the condition's
// value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "TEXT_IS_EMAIL" - The cell's value must be a valid email
// address.
// Supported by data validation.
// Requires no ConditionValues.
// "TEXT_IS_URL" - The cell's value must be a valid URL.
// Supported by data validation.
// Requires no ConditionValues.
// "DATE_EQ" - The cell's value must be the same date as the
// condition's value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
// "DATE_BEFORE" - The cell's value must be before the date of the
// condition's value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue
// that may be a relative date.
// "DATE_AFTER" - The cell's value must be after the date of the
// condition's value.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue
// that may be a relative date.
// "DATE_ON_OR_BEFORE" - The cell's value must be on or before the
// date of the condition's value.
// Supported by data validation.
// Requires a single ConditionValue
// that may be a relative date.
// "DATE_ON_OR_AFTER" - The cell's value must be on or after the date
// of the condition's value.
// Supported by data validation.
// Requires a single ConditionValue
// that may be a relative date.
// "DATE_BETWEEN" - The cell's value must be between the dates of the
// two condition values.
// Supported by data validation.
// Requires exactly two ConditionValues.
// "DATE_NOT_BETWEEN" - The cell's value must be outside the dates of
// the two condition values.
// Supported by data validation.
// Requires exactly two ConditionValues.
// "DATE_IS_VALID" - The cell's value must be a date.
// Supported by data validation.
// Requires no ConditionValues.
// "ONE_OF_RANGE" - The cell's value must be listed in the grid in
// condition value's range.
// Supported by data validation.
// Requires a single ConditionValue,
// and the value must be a valid range in A1 notation.
// "ONE_OF_LIST" - The cell's value must in the list of condition
// values.
// Supported by data validation.
// Supports any number of condition values,
// one per item in the list.
// Formulas are not supported in the values.
// "BLANK" - The cell's value must be empty.
// Supported by conditional formatting and filters.
// Requires no ConditionValues.
// "NOT_BLANK" - The cell's value must not be empty.
// Supported by conditional formatting and filters.
// Requires no ConditionValues.
// "CUSTOM_FORMULA" - The condition's formula must evaluate to
// true.
// Supported by data validation, conditional formatting and
// filters.
// Requires a single ConditionValue.
Type string `json:"type,omitempty"`
// Values: The values of the condition. The number of supported values
// depends
// on the condition type. Some support zero values,
// others one or two values,
// and ConditionType.ONE_OF_LIST supports an arbitrary number of values.
Values []*ConditionValue `json:"values,omitempty"`
// ForceSendFields is a list of field names (e.g. "Type") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Type") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BooleanCondition) MarshalJSON() ([]byte, error) {
type noMethod BooleanCondition
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BooleanRule: A rule that may or may not match, depending on the
// condition.
type BooleanRule struct {
// Condition: The condition of the rule. If the condition evaluates to
// true,
// the format will be applied.
Condition *BooleanCondition `json:"condition,omitempty"`
// Format: The format to apply.
// Conditional formatting can only apply a subset of formatting:
// bold, italic,
// strikethrough,
// foreground color &
// background color.
Format *CellFormat `json:"format,omitempty"`
// ForceSendFields is a list of field names (e.g. "Condition") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Condition") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *BooleanRule) MarshalJSON() ([]byte, error) {
type noMethod BooleanRule
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Border: A border along a cell.
type Border struct {
// Color: The color of the border.
Color *Color `json:"color,omitempty"`
// Style: The style of the border.
//
// Possible values:
// "STYLE_UNSPECIFIED" - The style is not specified. Do not use this.
// "DOTTED" - The border is dotted.
// "DASHED" - The border is dashed.
// "SOLID" - The border is a thin solid line.
// "SOLID_MEDIUM" - The border is a medium solid line.
// "SOLID_THICK" - The border is a thick solid line.
// "NONE" - No border.
// Used only when updating a border in order to erase it.
// "DOUBLE" - The border is two solid lines.
Style string `json:"style,omitempty"`
// Width: The width of the border, in pixels.
// Deprecated; the width is determined by the "style" field.
Width int64 `json:"width,omitempty"`
// ForceSendFields is a list of field names (e.g. "Color") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Color") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Border) MarshalJSON() ([]byte, error) {
type noMethod Border
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Borders: The borders of the cell.
type Borders struct {
// Bottom: The bottom border of the cell.
Bottom *Border `json:"bottom,omitempty"`
// Left: The left border of the cell.
Left *Border `json:"left,omitempty"`
// Right: The right border of the cell.
Right *Border `json:"right,omitempty"`
// Top: The top border of the cell.
Top *Border `json:"top,omitempty"`
// ForceSendFields is a list of field names (e.g. "Bottom") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Bottom") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Borders) MarshalJSON() ([]byte, error) {
type noMethod Borders
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CellData: Data about a specific cell.
type CellData struct {
// DataValidation: A data validation rule on the cell, if any.
//
// When writing, the new data validation rule will overwrite any prior
// rule.
DataValidation *DataValidationRule `json:"dataValidation,omitempty"`
// EffectiveFormat: The effective format being used by the cell.
// This includes the results of applying any conditional formatting
// and,
// if the cell contains a formula, the computed number format.
// If the effective format is the default format, effective format
// will
// not be written.
// This field is read-only.
EffectiveFormat *CellFormat `json:"effectiveFormat,omitempty"`
// EffectiveValue: The effective value of the cell. For cells with
// formulas, this will be
// the calculated value. For cells with literals, this will be
// the same as the user_entered_value.
// This field is read-only.
EffectiveValue *ExtendedValue `json:"effectiveValue,omitempty"`
// FormattedValue: The formatted value of the cell.
// This is the value as it's shown to the user.
// This field is read-only.
FormattedValue string `json:"formattedValue,omitempty"`
// Hyperlink: A hyperlink this cell points to, if any.
// This field is read-only. (To set it, use a `=HYPERLINK` formula.)
Hyperlink string `json:"hyperlink,omitempty"`
// Note: Any note on the cell.
Note string `json:"note,omitempty"`
// PivotTable: A pivot table anchored at this cell. The size of pivot
// table itself
// is computed dynamically based on its data, grouping, filters,
// values,
// etc. Only the top-left cell of the pivot table contains the pivot
// table
// definition. The other cells will contain the calculated values of
// the
// results of the pivot in their effective_value fields.
PivotTable *PivotTable `json:"pivotTable,omitempty"`
// TextFormatRuns: Runs of rich text applied to subsections of the cell.
// Runs are only valid
// on user entered strings, not formulas, bools, or numbers.
// Runs start at specific indexes in the text and continue until the
// next
// run. Properties of a run will continue unless explicitly changed
// in a subsequent run (and properties of the first run will
// continue
// the properties of the cell unless explicitly changed).
//
// When writing, the new runs will overwrite any prior runs. When
// writing a
// new user_entered_value, previous runs will be erased.
TextFormatRuns []*TextFormatRun `json:"textFormatRuns,omitempty"`
// UserEnteredFormat: The format the user entered for the cell.
//
// When writing, the new format will be merged with the existing format.
UserEnteredFormat *CellFormat `json:"userEnteredFormat,omitempty"`
// UserEnteredValue: The value the user entered in the cell. e.g,
// `1234`, `'Hello'`, or `=NOW()`
// Note: Dates, Times and DateTimes are represented as doubles in
// serial number format.
UserEnteredValue *ExtendedValue `json:"userEnteredValue,omitempty"`
// ForceSendFields is a list of field names (e.g. "DataValidation") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DataValidation") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *CellData) MarshalJSON() ([]byte, error) {
type noMethod CellData
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CellFormat: The format of a cell.
type CellFormat struct {
// BackgroundColor: The background color of the cell.
BackgroundColor *Color `json:"backgroundColor,omitempty"`
// Borders: The borders of the cell.
Borders *Borders `json:"borders,omitempty"`
// HorizontalAlignment: The horizontal alignment of the value in the
// cell.
//
// Possible values:
// "HORIZONTAL_ALIGN_UNSPECIFIED" - The horizontal alignment is not
// specified. Do not use this.
// "LEFT" - The text is explicitly aligned to the left of the cell.
// "CENTER" - The text is explicitly aligned to the center of the
// cell.
// "RIGHT" - The text is explicitly aligned to the right of the cell.
HorizontalAlignment string `json:"horizontalAlignment,omitempty"`
// HyperlinkDisplayType: How a hyperlink, if it exists, should be
// displayed in the cell.
//
// Possible values:
// "HYPERLINK_DISPLAY_TYPE_UNSPECIFIED" - The default value: the
// hyperlink is rendered. Do not use this.
// "LINKED" - A hyperlink should be explicitly rendered.
// "PLAIN_TEXT" - A hyperlink should not be rendered.
HyperlinkDisplayType string `json:"hyperlinkDisplayType,omitempty"`
// NumberFormat: A format describing how number values should be
// represented to the user.
NumberFormat *NumberFormat `json:"numberFormat,omitempty"`
// Padding: The padding of the cell.
Padding *Padding `json:"padding,omitempty"`
// TextDirection: The direction of the text in the cell.
//
// Possible values:
// "TEXT_DIRECTION_UNSPECIFIED" - The text direction is not specified.
// Do not use this.
// "LEFT_TO_RIGHT" - The text direction of left-to-right was set by
// the user.
// "RIGHT_TO_LEFT" - The text direction of right-to-left was set by
// the user.
TextDirection string `json:"textDirection,omitempty"`
// TextFormat: The format of the text in the cell (unless overridden by
// a format run).
TextFormat *TextFormat `json:"textFormat,omitempty"`
// VerticalAlignment: The vertical alignment of the value in the cell.
//
// Possible values:
// "VERTICAL_ALIGN_UNSPECIFIED" - The vertical alignment is not
// specified. Do not use this.
// "TOP" - The text is explicitly aligned to the top of the cell.
// "MIDDLE" - The text is explicitly aligned to the middle of the
// cell.
// "BOTTOM" - The text is explicitly aligned to the bottom of the
// cell.
VerticalAlignment string `json:"verticalAlignment,omitempty"`
// WrapStrategy: The wrap strategy for the value in the cell.
//
// Possible values:
// "WRAP_STRATEGY_UNSPECIFIED" - The default value, do not use.
// "OVERFLOW_CELL" - Lines that are longer than the cell width will be
// written in the next
// cell over, so long as that cell is empty. If the next cell over
// is
// non-empty, this behaves the same as CLIP. The text will never wrap
// to the next line unless the user manually inserts a new
// line.
// Example:
//
// | First sentence. |
// | Manual newline that is very long. <- Text continues into next
// cell
// | Next newline. |
// "LEGACY_WRAP" - This wrap strategy represents the old Google Sheets
// wrap strategy where
// words that are longer than a line are clipped rather than broken.
// This
// strategy is not supported on all platforms and is being phased
// out.
// Example:
//
// | Cell has a |
// | loooooooooo| <- Word is clipped.
// | word. |
// "CLIP" - Lines that are longer than the cell width will be
// clipped.
// The text will never wrap to the next line unless the user
// manually
// inserts a new line.
// Example:
//
// | First sentence. |
// | Manual newline t| <- Text is clipped
// | Next newline. |
// "WRAP" - Words that are longer than a line are wrapped at the
// character level
// rather than clipped.
// Example:
//
// | Cell has a |
// | loooooooooo| <- Word is broken.
// | ong word. |
WrapStrategy string `json:"wrapStrategy,omitempty"`
// ForceSendFields is a list of field names (e.g. "BackgroundColor") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BackgroundColor") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *CellFormat) MarshalJSON() ([]byte, error) {
type noMethod CellFormat
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ChartData: The data included in a domain or series.
type ChartData struct {
// SourceRange: The source ranges of the data.
SourceRange *ChartSourceRange `json:"sourceRange,omitempty"`
// ForceSendFields is a list of field names (e.g. "SourceRange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "SourceRange") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ChartData) MarshalJSON() ([]byte, error) {
type noMethod ChartData
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ChartSourceRange: Source ranges for a chart.
type ChartSourceRange struct {
// Sources: The ranges of data for a series or domain.
// Exactly one dimension must have a length of 1,
// and all sources in the list must have the same dimension
// with length 1.
// The domain (if it exists) & all series must have the same number
// of source ranges. If using more than one source range, then the
// source
// range at a given offset must be contiguous across the domain and
// series.
//
// For example, these are valid configurations:
//
// domain sources: A1:A5
// series1 sources: B1:B5
// series2 sources: D6:D10
//
// domain sources: A1:A5, C10:C12
// series1 sources: B1:B5, D10:D12
// series2 sources: C1:C5, E10:E12
Sources []*GridRange `json:"sources,omitempty"`
// ForceSendFields is a list of field names (e.g. "Sources") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Sources") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ChartSourceRange) MarshalJSON() ([]byte, error) {
type noMethod ChartSourceRange
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ChartSpec: The specifications of a chart.
type ChartSpec struct {
// BasicChart: A basic chart specification, can be one of many kinds of
// charts.
// See BasicChartType for the list of all
// charts this supports.
BasicChart *BasicChartSpec `json:"basicChart,omitempty"`
// HiddenDimensionStrategy: Determines how the charts will use hidden
// rows or columns.
//
// Possible values:
// "CHART_HIDDEN_DIMENSION_STRATEGY_UNSPECIFIED" - Default value, do
// not use.
// "SKIP_HIDDEN_ROWS_AND_COLUMNS" - Charts will skip hidden rows and
// columns.
// "SKIP_HIDDEN_ROWS" - Charts will skip hidden rows only.
// "SKIP_HIDDEN_COLUMNS" - Charts will skip hidden columns only.
// "SHOW_ALL" - Charts will not skip any hidden rows or columns.
HiddenDimensionStrategy string `json:"hiddenDimensionStrategy,omitempty"`
// PieChart: A pie chart specification.
PieChart *PieChartSpec `json:"pieChart,omitempty"`
// Title: The title of the chart.
Title string `json:"title,omitempty"`
// ForceSendFields is a list of field names (e.g. "BasicChart") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BasicChart") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ChartSpec) MarshalJSON() ([]byte, error) {
type noMethod ChartSpec
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ClearBasicFilterRequest: Clears the basic filter, if any exists on
// the sheet.
type ClearBasicFilterRequest struct {
// SheetId: The sheet ID on which the basic filter should be cleared.
SheetId int64 `json:"sheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "SheetId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "SheetId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ClearBasicFilterRequest) MarshalJSON() ([]byte, error) {
type noMethod ClearBasicFilterRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ClearValuesRequest: The request for clearing a range of values in a
// spreadsheet.
type ClearValuesRequest struct {
}
// ClearValuesResponse: The response when clearing a range of values in
// a spreadsheet.
type ClearValuesResponse struct {
// ClearedRange: The range (in A1 notation) that was cleared.
// (If the request was for an unbounded range or a ranger larger
// than the bounds of the sheet, this will be the actual range
// that was cleared, bounded to the sheet's limits.)
ClearedRange string `json:"clearedRange,omitempty"`
// SpreadsheetId: The spreadsheet the updates were applied to.
SpreadsheetId string `json:"spreadsheetId,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "ClearedRange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ClearedRange") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ClearValuesResponse) MarshalJSON() ([]byte, error) {
type noMethod ClearValuesResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Color: Represents a color in the RGBA color space. This
// representation is designed
// for simplicity of conversion to/from color representations in
// various
// languages over compactness; for example, the fields of this
// representation
// can be trivially provided to the constructor of "java.awt.Color" in
// Java; it
// can also be trivially provided to UIColor's
// "+colorWithRed:green:blue:alpha"
// method in iOS; and, with just a little work, it can be easily
// formatted into
// a CSS "rgba()" string in JavaScript, as well. Here are some
// examples:
//
// Example (Java):
//
// import com.google.type.Color;
//
// // ...
// public static java.awt.Color fromProto(Color protocolor) {
// float alpha = protocolor.hasAlpha()
// ? protocolor.getAlpha().getValue()
// : 1.0;
//
// return new java.awt.Color(
// protocolor.getRed(),
// protocolor.getGreen(),
// protocolor.getBlue(),
// alpha);
// }
//
// public static Color toProto(java.awt.Color color) {
// float red = (float) color.getRed();
// float green = (float) color.getGreen();
// float blue = (float) color.getBlue();
// float denominator = 255.0;
// Color.Builder resultBuilder =
// Color
// .newBuilder()
// .setRed(red / denominator)
// .setGreen(green / denominator)
// .setBlue(blue / denominator);
// int alpha = color.getAlpha();
// if (alpha != 255) {
// result.setAlpha(
// FloatValue
// .newBuilder()
// .setValue(((float) alpha) / denominator)
// .build());
// }
// return resultBuilder.build();
// }
// // ...
//
// Example (iOS / Obj-C):
//
// // ...
// static UIColor* fromProto(Color* protocolor) {
// float red = [protocolor red];
// float green = [protocolor green];
// float blue = [protocolor blue];
// FloatValue* alpha_wrapper = [protocolor alpha];
// float alpha = 1.0;
// if (alpha_wrapper != nil) {
// alpha = [alpha_wrapper value];
// }
// return [UIColor colorWithRed:red green:green blue:blue
// alpha:alpha];
// }
//
// static Color* toProto(UIColor* color) {
// CGFloat red, green, blue, alpha;
// if (![color getRed:&red green:&green blue:&blue
// alpha:&alpha]) {
// return nil;
// }
// Color* result = [Color alloc] init];
// [result setRed:red];
// [result setGreen:green];
// [result setBlue:blue];
// if (alpha <= 0.9999) {
// [result setAlpha:floatWrapperWithValue(alpha)];
// }
// [result autorelease];
// return result;
// }
// // ...
//
// Example (JavaScript):
//
// // ...
//
// var protoToCssColor = function(rgb_color) {
// var redFrac = rgb_color.red || 0.0;
// var greenFrac = rgb_color.green || 0.0;
// var blueFrac = rgb_color.blue || 0.0;
// var red = Math.floor(redFrac * 255);
// var green = Math.floor(greenFrac * 255);
// var blue = Math.floor(blueFrac * 255);
//
// if (!('alpha' in rgb_color)) {
// return rgbToCssColor_(red, green, blue);
// }
//
// var alphaFrac = rgb_color.alpha.value || 0.0;
// var rgbParams = [red, green, blue].join(',');
// return ['rgba(', rgbParams, ',', alphaFrac, ')'].join('');
// };
//
// var rgbToCssColor_ = function(red, green, blue) {
// var rgbNumber = new Number((red << 16) | (green << 8) | blue);
// var hexString = rgbNumber.toString(16);
// var missingZeros = 6 - hexString.length;
// var resultBuilder = ['#'];
// for (var i = 0; i < missingZeros; i++) {
// resultBuilder.push('0');
// }
// resultBuilder.push(hexString);
// return resultBuilder.join('');
// };
//
// // ...
type Color struct {
// Alpha: The fraction of this color that should be applied to the
// pixel. That is,
// the final pixel color is defined by the equation:
//
// pixel color = alpha * (this color) + (1.0 - alpha) * (background
// color)
//
// This means that a value of 1.0 corresponds to a solid color,
// whereas
// a value of 0.0 corresponds to a completely transparent color.
// This
// uses a wrapper message rather than a simple float scalar so that it
// is
// possible to distinguish between a default value and the value being
// unset.
// If omitted, this color object is to be rendered as a solid color
// (as if the alpha value had been explicitly given with a value of
// 1.0).
Alpha float64 `json:"alpha,omitempty"`
// Blue: The amount of blue in the color as a value in the interval [0,
// 1].
Blue float64 `json:"blue,omitempty"`
// Green: The amount of green in the color as a value in the interval
// [0, 1].
Green float64 `json:"green,omitempty"`
// Red: The amount of red in the color as a value in the interval [0,
// 1].
Red float64 `json:"red,omitempty"`
// ForceSendFields is a list of field names (e.g. "Alpha") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Alpha") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Color) MarshalJSON() ([]byte, error) {
type noMethod Color
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ConditionValue: The value of the condition.
type ConditionValue struct {
// RelativeDate: A relative date (based on the current date).
// Valid only if the type is
// DATE_BEFORE,
// DATE_AFTER,
// DATE_ON_OR_BEFORE or
// DATE_ON_OR_AFTER.
//
// Relative dates are not supported in data validation.
// They are supported only in conditional formatting and
// conditional filters.
//
// Possible values:
// "RELATIVE_DATE_UNSPECIFIED" - Default value, do not use.
// "PAST_YEAR" - The value is one year before today.
// "PAST_MONTH" - The value is one month before today.
// "PAST_WEEK" - The value is one week before today.
// "YESTERDAY" - The value is yesterday.
// "TODAY" - The value is today.
// "TOMORROW" - The value is tomorrow.
RelativeDate string `json:"relativeDate,omitempty"`
// UserEnteredValue: A value the condition is based on.
// The value will be parsed as if the user typed into a cell.
// Formulas are supported (and must begin with an `=`).
UserEnteredValue string `json:"userEnteredValue,omitempty"`
// ForceSendFields is a list of field names (e.g. "RelativeDate") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "RelativeDate") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ConditionValue) MarshalJSON() ([]byte, error) {
type noMethod ConditionValue
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ConditionalFormatRule: A rule describing a conditional format.
type ConditionalFormatRule struct {
// BooleanRule: The formatting is either "on" or "off" according to the
// rule.
BooleanRule *BooleanRule `json:"booleanRule,omitempty"`
// GradientRule: The formatting will vary based on the gradients in the
// rule.
GradientRule *GradientRule `json:"gradientRule,omitempty"`
// Ranges: The ranges that will be formatted if the condition is
// true.
// All the ranges must be on the same grid.
Ranges []*GridRange `json:"ranges,omitempty"`
// ForceSendFields is a list of field names (e.g. "BooleanRule") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BooleanRule") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ConditionalFormatRule) MarshalJSON() ([]byte, error) {
type noMethod ConditionalFormatRule
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CopyPasteRequest: Copies data from the source to the destination.
type CopyPasteRequest struct {
// Destination: The location to paste to. If the range covers a span
// that's
// a multiple of the source's height or width, then the
// data will be repeated to fill in the destination range.
// If the range is smaller than the source range, the entire
// source data will still be copied (beyond the end of the destination
// range).
Destination *GridRange `json:"destination,omitempty"`
// PasteOrientation: How that data should be oriented when pasting.
//
// Possible values:
// "NORMAL" - Paste normally.
// "TRANSPOSE" - Paste transposed, where all rows become columns and
// vice versa.
PasteOrientation string `json:"pasteOrientation,omitempty"`
// PasteType: What kind of data to paste.
//
// Possible values:
// "PASTE_NORMAL" - Paste values, formulas, formats, and merges.
// "PASTE_VALUES" - Paste the values ONLY without formats, formulas,
// or merges.
// "PASTE_FORMAT" - Paste the format and data validation only.
// "PASTE_NO_BORDERS" - Like PASTE_NORMAL but without borders.
// "PASTE_FORMULA" - Paste the formulas only.
// "PASTE_DATA_VALIDATION" - Paste the data validation only.
// "PASTE_CONDITIONAL_FORMATTING" - Paste the conditional formatting
// rules only.
PasteType string `json:"pasteType,omitempty"`
// Source: The source range to copy.
Source *GridRange `json:"source,omitempty"`
// ForceSendFields is a list of field names (e.g. "Destination") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Destination") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *CopyPasteRequest) MarshalJSON() ([]byte, error) {
type noMethod CopyPasteRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CopySheetToAnotherSpreadsheetRequest: The request to copy a sheet
// across spreadsheets.
type CopySheetToAnotherSpreadsheetRequest struct {
// DestinationSpreadsheetId: The ID of the spreadsheet to copy the sheet
// to.
DestinationSpreadsheetId string `json:"destinationSpreadsheetId,omitempty"`
// ForceSendFields is a list of field names (e.g.
// "DestinationSpreadsheetId") to unconditionally include in API
// requests. By default, fields with empty values are omitted from API
// requests. However, any non-pointer, non-interface field appearing in
// ForceSendFields will be sent to the server regardless of whether the
// field is empty or not. This may be used to include empty fields in
// Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DestinationSpreadsheetId")
// to include in API requests with the JSON null value. By default,
// fields with empty values are omitted from API requests. However, any
// field with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *CopySheetToAnotherSpreadsheetRequest) MarshalJSON() ([]byte, error) {
type noMethod CopySheetToAnotherSpreadsheetRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CutPasteRequest: Moves data from the source to the destination.
type CutPasteRequest struct {
// Destination: The top-left coordinate where the data should be pasted.
Destination *GridCoordinate `json:"destination,omitempty"`
// PasteType: What kind of data to paste. All the source data will be
// cut, regardless
// of what is pasted.
//
// Possible values:
// "PASTE_NORMAL" - Paste values, formulas, formats, and merges.
// "PASTE_VALUES" - Paste the values ONLY without formats, formulas,
// or merges.
// "PASTE_FORMAT" - Paste the format and data validation only.
// "PASTE_NO_BORDERS" - Like PASTE_NORMAL but without borders.
// "PASTE_FORMULA" - Paste the formulas only.
// "PASTE_DATA_VALIDATION" - Paste the data validation only.
// "PASTE_CONDITIONAL_FORMATTING" - Paste the conditional formatting
// rules only.
PasteType string `json:"pasteType,omitempty"`
// Source: The source data to cut.
Source *GridRange `json:"source,omitempty"`
// ForceSendFields is a list of field names (e.g. "Destination") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Destination") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *CutPasteRequest) MarshalJSON() ([]byte, error) {
type noMethod CutPasteRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DataValidationRule: A data validation rule.
type DataValidationRule struct {
// Condition: The condition that data in the cell must match.
Condition *BooleanCondition `json:"condition,omitempty"`
// InputMessage: A message to show the user when adding data to the
// cell.
InputMessage string `json:"inputMessage,omitempty"`
// ShowCustomUi: True if the UI should be customized based on the kind
// of condition.
// If true, "List" conditions will show a dropdown.
ShowCustomUi bool `json:"showCustomUi,omitempty"`
// Strict: True if invalid data should be rejected.
Strict bool `json:"strict,omitempty"`
// ForceSendFields is a list of field names (e.g. "Condition") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Condition") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DataValidationRule) MarshalJSON() ([]byte, error) {
type noMethod DataValidationRule
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteBandingRequest: Removes the banded range with the given ID from
// the spreadsheet.
type DeleteBandingRequest struct {
// BandedRangeId: The ID of the banded range to delete.
BandedRangeId int64 `json:"bandedRangeId,omitempty"`
// ForceSendFields is a list of field names (e.g. "BandedRangeId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BandedRangeId") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeleteBandingRequest) MarshalJSON() ([]byte, error) {
type noMethod DeleteBandingRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteConditionalFormatRuleRequest: Deletes a conditional format rule
// at the given index.
// All subsequent rules' indexes are decremented.
type DeleteConditionalFormatRuleRequest struct {
// Index: The zero-based index of the rule to be deleted.
Index int64 `json:"index,omitempty"`
// SheetId: The sheet the rule is being deleted from.
SheetId int64 `json:"sheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "Index") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Index") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeleteConditionalFormatRuleRequest) MarshalJSON() ([]byte, error) {
type noMethod DeleteConditionalFormatRuleRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteConditionalFormatRuleResponse: The result of deleting a
// conditional format rule.
type DeleteConditionalFormatRuleResponse struct {
// Rule: The rule that was deleted.
Rule *ConditionalFormatRule `json:"rule,omitempty"`
// ForceSendFields is a list of field names (e.g. "Rule") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Rule") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeleteConditionalFormatRuleResponse) MarshalJSON() ([]byte, error) {
type noMethod DeleteConditionalFormatRuleResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteDimensionRequest: Deletes the dimensions from the sheet.
type DeleteDimensionRequest struct {
// Range: The dimensions to delete from the sheet.
Range *DimensionRange `json:"range,omitempty"`
// ForceSendFields is a list of field names (e.g. "Range") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Range") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeleteDimensionRequest) MarshalJSON() ([]byte, error) {
type noMethod DeleteDimensionRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteEmbeddedObjectRequest: Deletes the embedded object with the
// given ID.
type DeleteEmbeddedObjectRequest struct {
// ObjectId: The ID of the embedded object to delete.
ObjectId int64 `json:"objectId,omitempty"`
// ForceSendFields is a list of field names (e.g. "ObjectId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ObjectId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeleteEmbeddedObjectRequest) MarshalJSON() ([]byte, error) {
type noMethod DeleteEmbeddedObjectRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteFilterViewRequest: Deletes a particular filter view.
type DeleteFilterViewRequest struct {
// FilterId: The ID of the filter to delete.
FilterId int64 `json:"filterId,omitempty"`
// ForceSendFields is a list of field names (e.g. "FilterId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "FilterId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeleteFilterViewRequest) MarshalJSON() ([]byte, error) {
type noMethod DeleteFilterViewRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteNamedRangeRequest: Removes the named range with the given ID
// from the spreadsheet.
type DeleteNamedRangeRequest struct {
// NamedRangeId: The ID of the named range to delete.
NamedRangeId string `json:"namedRangeId,omitempty"`
// ForceSendFields is a list of field names (e.g. "NamedRangeId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "NamedRangeId") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeleteNamedRangeRequest) MarshalJSON() ([]byte, error) {
type noMethod DeleteNamedRangeRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteProtectedRangeRequest: Deletes the protected range with the
// given ID.
type DeleteProtectedRangeRequest struct {
// ProtectedRangeId: The ID of the protected range to delete.
ProtectedRangeId int64 `json:"protectedRangeId,omitempty"`
// ForceSendFields is a list of field names (e.g. "ProtectedRangeId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ProtectedRangeId") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *DeleteProtectedRangeRequest) MarshalJSON() ([]byte, error) {
type noMethod DeleteProtectedRangeRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteSheetRequest: Deletes the requested sheet.
type DeleteSheetRequest struct {
// SheetId: The ID of the sheet to delete.
SheetId int64 `json:"sheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "SheetId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "SheetId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DeleteSheetRequest) MarshalJSON() ([]byte, error) {
type noMethod DeleteSheetRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DimensionProperties: Properties about a dimension.
type DimensionProperties struct {
// HiddenByFilter: True if this dimension is being filtered.
// This field is read-only.
HiddenByFilter bool `json:"hiddenByFilter,omitempty"`
// HiddenByUser: True if this dimension is explicitly hidden.
HiddenByUser bool `json:"hiddenByUser,omitempty"`
// PixelSize: The height (if a row) or width (if a column) of the
// dimension in pixels.
PixelSize int64 `json:"pixelSize,omitempty"`
// ForceSendFields is a list of field names (e.g. "HiddenByFilter") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "HiddenByFilter") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *DimensionProperties) MarshalJSON() ([]byte, error) {
type noMethod DimensionProperties
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DimensionRange: A range along a single dimension on a sheet.
// All indexes are zero-based.
// Indexes are half open: the start index is inclusive
// and the end index is exclusive.
// Missing indexes indicate the range is unbounded on that side.
type DimensionRange struct {
// Dimension: The dimension of the span.
//
// Possible values:
// "DIMENSION_UNSPECIFIED" - The default value, do not use.
// "ROWS" - Operates on the rows of a sheet.
// "COLUMNS" - Operates on the columns of a sheet.
Dimension string `json:"dimension,omitempty"`
// EndIndex: The end (exclusive) of the span, or not set if unbounded.
EndIndex int64 `json:"endIndex,omitempty"`
// SheetId: The sheet this span is on.
SheetId int64 `json:"sheetId,omitempty"`
// StartIndex: The start (inclusive) of the span, or not set if
// unbounded.
StartIndex int64 `json:"startIndex,omitempty"`
// ForceSendFields is a list of field names (e.g. "Dimension") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Dimension") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DimensionRange) MarshalJSON() ([]byte, error) {
type noMethod DimensionRange
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DuplicateFilterViewRequest: Duplicates a particular filter view.
type DuplicateFilterViewRequest struct {
// FilterId: The ID of the filter being duplicated.
FilterId int64 `json:"filterId,omitempty"`
// ForceSendFields is a list of field names (e.g. "FilterId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "FilterId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DuplicateFilterViewRequest) MarshalJSON() ([]byte, error) {
type noMethod DuplicateFilterViewRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DuplicateFilterViewResponse: The result of a filter view being
// duplicated.
type DuplicateFilterViewResponse struct {
// Filter: The newly created filter.
Filter *FilterView `json:"filter,omitempty"`
// ForceSendFields is a list of field names (e.g. "Filter") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Filter") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DuplicateFilterViewResponse) MarshalJSON() ([]byte, error) {
type noMethod DuplicateFilterViewResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DuplicateSheetRequest: Duplicates the contents of a sheet.
type DuplicateSheetRequest struct {
// InsertSheetIndex: The zero-based index where the new sheet should be
// inserted.
// The index of all sheets after this are incremented.
InsertSheetIndex int64 `json:"insertSheetIndex,omitempty"`
// NewSheetId: If set, the ID of the new sheet. If not set, an ID is
// chosen.
// If set, the ID must not conflict with any existing sheet ID.
// If set, it must be non-negative.
NewSheetId int64 `json:"newSheetId,omitempty"`
// NewSheetName: The name of the new sheet. If empty, a new name is
// chosen for you.
NewSheetName string `json:"newSheetName,omitempty"`
// SourceSheetId: The sheet to duplicate.
SourceSheetId int64 `json:"sourceSheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "InsertSheetIndex") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "InsertSheetIndex") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *DuplicateSheetRequest) MarshalJSON() ([]byte, error) {
type noMethod DuplicateSheetRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DuplicateSheetResponse: The result of duplicating a sheet.
type DuplicateSheetResponse struct {
// Properties: The properties of the duplicate sheet.
Properties *SheetProperties `json:"properties,omitempty"`
// ForceSendFields is a list of field names (e.g. "Properties") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Properties") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DuplicateSheetResponse) MarshalJSON() ([]byte, error) {
type noMethod DuplicateSheetResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Editors: The editors of a protected range.
type Editors struct {
// DomainUsersCanEdit: True if anyone in the document's domain has edit
// access to the protected
// range. Domain protection is only supported on documents within a
// domain.
DomainUsersCanEdit bool `json:"domainUsersCanEdit,omitempty"`
// Groups: The email addresses of groups with edit access to the
// protected range.
Groups []string `json:"groups,omitempty"`
// Users: The email addresses of users with edit access to the protected
// range.
Users []string `json:"users,omitempty"`
// ForceSendFields is a list of field names (e.g. "DomainUsersCanEdit")
// to unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DomainUsersCanEdit") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *Editors) MarshalJSON() ([]byte, error) {
type noMethod Editors
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// EmbeddedChart: A chart embedded in a sheet.
type EmbeddedChart struct {
// ChartId: The ID of the chart.
ChartId int64 `json:"chartId,omitempty"`
// Position: The position of the chart.
Position *EmbeddedObjectPosition `json:"position,omitempty"`
// Spec: The specification of the chart.
Spec *ChartSpec `json:"spec,omitempty"`
// ForceSendFields is a list of field names (e.g. "ChartId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ChartId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *EmbeddedChart) MarshalJSON() ([]byte, error) {
type noMethod EmbeddedChart
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// EmbeddedObjectPosition: The position of an embedded object such as a
// chart.
type EmbeddedObjectPosition struct {
// NewSheet: If true, the embedded object will be put on a new sheet
// whose ID
// is chosen for you. Used only when writing.
NewSheet bool `json:"newSheet,omitempty"`
// OverlayPosition: The position at which the object is overlaid on top
// of a grid.
OverlayPosition *OverlayPosition `json:"overlayPosition,omitempty"`
// SheetId: The sheet this is on. Set only if the embedded object
// is on its own sheet. Must be non-negative.
SheetId int64 `json:"sheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "NewSheet") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "NewSheet") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *EmbeddedObjectPosition) MarshalJSON() ([]byte, error) {
type noMethod EmbeddedObjectPosition
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ErrorValue: An error in a cell.
type ErrorValue struct {
// Message: A message with more information about the error
// (in the spreadsheet's locale).
Message string `json:"message,omitempty"`
// Type: The type of error.
//
// Possible values:
// "ERROR_TYPE_UNSPECIFIED" - The default error type, do not use this.
// "ERROR" - Corresponds to the `#ERROR!` error.
// "NULL_VALUE" - Corresponds to the `#NULL!` error.
// "DIVIDE_BY_ZERO" - Corresponds to the `#DIV/0` error.
// "VALUE" - Corresponds to the `#VALUE!` error.
// "REF" - Corresponds to the `#REF!` error.
// "NAME" - Corresponds to the `#NAME?` error.
// "NUM" - Corresponds to the `#NUM`! error.
// "N_A" - Corresponds to the `#N/A` error.
// "LOADING" - Corresponds to the `Loading...` state.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Message") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Message") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ErrorValue) MarshalJSON() ([]byte, error) {
type noMethod ErrorValue
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ExtendedValue: The kinds of value that a cell in a spreadsheet can
// have.
type ExtendedValue struct {
// BoolValue: Represents a boolean value.
BoolValue bool `json:"boolValue,omitempty"`
// ErrorValue: Represents an error.
// This field is read-only.
ErrorValue *ErrorValue `json:"errorValue,omitempty"`
// FormulaValue: Represents a formula.
FormulaValue string `json:"formulaValue,omitempty"`
// NumberValue: Represents a double value.
// Note: Dates, Times and DateTimes are represented as doubles
// in
// "serial number" format.
NumberValue float64 `json:"numberValue,omitempty"`
// StringValue: Represents a string value.
// Leading single quotes are not included. For example, if the user
// typed
// `'123` into the UI, this would be represented as a `stringValue`
// of
// "123".
StringValue string `json:"stringValue,omitempty"`
// ForceSendFields is a list of field names (e.g. "BoolValue") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BoolValue") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ExtendedValue) MarshalJSON() ([]byte, error) {
type noMethod ExtendedValue
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// FilterCriteria: Criteria for showing/hiding rows in a filter or
// filter view.
type FilterCriteria struct {
// Condition: A condition that must be true for values to be
// shown.
// (This does not override hiddenValues -- if a value is listed there,
// it will still be hidden.)
Condition *BooleanCondition `json:"condition,omitempty"`
// HiddenValues: Values that should be hidden.
HiddenValues []string `json:"hiddenValues,omitempty"`
// ForceSendFields is a list of field names (e.g. "Condition") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Condition") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *FilterCriteria) MarshalJSON() ([]byte, error) {
type noMethod FilterCriteria
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// FilterView: A filter view.
type FilterView struct {
// Criteria: The criteria for showing/hiding values per column.
// The map's key is the column index, and the value is the criteria
// for
// that column.
Criteria map[string]FilterCriteria `json:"criteria,omitempty"`
// FilterViewId: The ID of the filter view.
FilterViewId int64 `json:"filterViewId,omitempty"`
// NamedRangeId: The named range this filter view is backed by, if
// any.
//
// When writing, only one of range or named_range_id
// may be set.
NamedRangeId string `json:"namedRangeId,omitempty"`
// Range: The range this filter view covers.
//
// When writing, only one of range or named_range_id
// may be set.
Range *GridRange `json:"range,omitempty"`
// SortSpecs: The sort order per column. Later specifications are used
// when values
// are equal in the earlier specifications.
SortSpecs []*SortSpec `json:"sortSpecs,omitempty"`
// Title: The name of the filter view.
Title string `json:"title,omitempty"`
// ForceSendFields is a list of field names (e.g. "Criteria") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Criteria") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *FilterView) MarshalJSON() ([]byte, error) {
type noMethod FilterView
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// FindReplaceRequest: Finds and replaces data in cells over a range,
// sheet, or all sheets.
type FindReplaceRequest struct {
// AllSheets: True to find/replace over all sheets.
AllSheets bool `json:"allSheets,omitempty"`
// Find: The value to search.
Find string `json:"find,omitempty"`
// IncludeFormulas: True if the search should include cells with
// formulas.
// False to skip cells with formulas.
IncludeFormulas bool `json:"includeFormulas,omitempty"`
// MatchCase: True if the search is case sensitive.
MatchCase bool `json:"matchCase,omitempty"`
// MatchEntireCell: True if the find value should match the entire cell.
MatchEntireCell bool `json:"matchEntireCell,omitempty"`
// Range: The range to find/replace over.
Range *GridRange `json:"range,omitempty"`
// Replacement: The value to use as the replacement.
Replacement string `json:"replacement,omitempty"`
// SearchByRegex: True if the find value is a regex.
// The regular expression and replacement should follow Java regex
// rules
// at
// https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html.
// The replacement string is allowed to refer to capturing groups.
// For example, if one cell has the contents "Google Sheets" and
// another
// has "Google Docs", then searching for "o.* (.*)" with a
// replacement of
// "$1 Rocks" would change the contents of the cells to
// "GSheets Rocks" and "GDocs Rocks" respectively.
SearchByRegex bool `json:"searchByRegex,omitempty"`
// SheetId: The sheet to find/replace over.
SheetId int64 `json:"sheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "AllSheets") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AllSheets") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *FindReplaceRequest) MarshalJSON() ([]byte, error) {
type noMethod FindReplaceRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// FindReplaceResponse: The result of the find/replace.
type FindReplaceResponse struct {
// FormulasChanged: The number of formula cells changed.
FormulasChanged int64 `json:"formulasChanged,omitempty"`
// OccurrencesChanged: The number of occurrences (possibly multiple
// within a cell) changed.
// For example, if replacing "e" with "o" in "Google Sheets", this
// would
// be "3" because "Google Sheets" -> "Googlo Shoots".
OccurrencesChanged int64 `json:"occurrencesChanged,omitempty"`
// RowsChanged: The number of rows changed.
RowsChanged int64 `json:"rowsChanged,omitempty"`
// SheetsChanged: The number of sheets changed.
SheetsChanged int64 `json:"sheetsChanged,omitempty"`
// ValuesChanged: The number of non-formula cells changed.
ValuesChanged int64 `json:"valuesChanged,omitempty"`
// ForceSendFields is a list of field names (e.g. "FormulasChanged") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "FormulasChanged") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *FindReplaceResponse) MarshalJSON() ([]byte, error) {
type noMethod FindReplaceResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// GradientRule: A rule that applies a gradient color scale format,
// based on
// the interpolation points listed. The format of a cell will vary
// based on its contents as compared to the values of the
// interpolation
// points.
type GradientRule struct {
// Maxpoint: The final interpolation point.
Maxpoint *InterpolationPoint `json:"maxpoint,omitempty"`
// Midpoint: An optional midway interpolation point.
Midpoint *InterpolationPoint `json:"midpoint,omitempty"`
// Minpoint: The starting interpolation point.
Minpoint *InterpolationPoint `json:"minpoint,omitempty"`
// ForceSendFields is a list of field names (e.g. "Maxpoint") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Maxpoint") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *GradientRule) MarshalJSON() ([]byte, error) {
type noMethod GradientRule
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// GridCoordinate: A coordinate in a sheet.
// All indexes are zero-based.
type GridCoordinate struct {
// ColumnIndex: The column index of the coordinate.
ColumnIndex int64 `json:"columnIndex,omitempty"`
// RowIndex: The row index of the coordinate.
RowIndex int64 `json:"rowIndex,omitempty"`
// SheetId: The sheet this coordinate is on.
SheetId int64 `json:"sheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "ColumnIndex") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ColumnIndex") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *GridCoordinate) MarshalJSON() ([]byte, error) {
type noMethod GridCoordinate
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// GridData: Data in the grid, as well as metadata about the dimensions.
type GridData struct {
// ColumnMetadata: Metadata about the requested columns in the grid,
// starting with the column
// in start_column.
ColumnMetadata []*DimensionProperties `json:"columnMetadata,omitempty"`
// RowData: The data in the grid, one entry per row,
// starting with the row in startRow.
// The values in RowData will correspond to columns starting
// at start_column.
RowData []*RowData `json:"rowData,omitempty"`
// RowMetadata: Metadata about the requested rows in the grid, starting
// with the row
// in start_row.
RowMetadata []*DimensionProperties `json:"rowMetadata,omitempty"`
// StartColumn: The first column this GridData refers to, zero-based.
StartColumn int64 `json:"startColumn,omitempty"`
// StartRow: The first row this GridData refers to, zero-based.
StartRow int64 `json:"startRow,omitempty"`
// ForceSendFields is a list of field names (e.g. "ColumnMetadata") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ColumnMetadata") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *GridData) MarshalJSON() ([]byte, error) {
type noMethod GridData
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// GridProperties: Properties of a grid.
type GridProperties struct {
// ColumnCount: The number of columns in the grid.
ColumnCount int64 `json:"columnCount,omitempty"`
// FrozenColumnCount: The number of columns that are frozen in the grid.
FrozenColumnCount int64 `json:"frozenColumnCount,omitempty"`
// FrozenRowCount: The number of rows that are frozen in the grid.
FrozenRowCount int64 `json:"frozenRowCount,omitempty"`
// HideGridlines: True if the grid isn't showing gridlines in the UI.
HideGridlines bool `json:"hideGridlines,omitempty"`
// RowCount: The number of rows in the grid.
RowCount int64 `json:"rowCount,omitempty"`
// ForceSendFields is a list of field names (e.g. "ColumnCount") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ColumnCount") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *GridProperties) MarshalJSON() ([]byte, error) {
type noMethod GridProperties
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// GridRange: A range on a sheet.
// All indexes are zero-based.
// Indexes are half open, e.g the start index is inclusive
// and the end index is exclusive -- [start_index, end_index).
// Missing indexes indicate the range is unbounded on that side.
//
// For example, if "Sheet1" is sheet ID 0, then:
//
// `Sheet1!A1:A1 == sheet_id: 0,
// start_row_index: 0, end_row_index: 1,
// start_column_index: 0, end_column_index: 1`
//
// `Sheet1!A3:B4 == sheet_id: 0,
// start_row_index: 2, end_row_index: 4,
// start_column_index: 0, end_column_index: 2`
//
// `Sheet1!A:B == sheet_id: 0,
// start_column_index: 0, end_column_index: 2`
//
// `Sheet1!A5:B == sheet_id: 0,
// start_row_index: 4,
// start_column_index: 0, end_column_index: 2`
//
// `Sheet1 == sheet_id:0`
//
// The start index must always be less than or equal to the end
// index.
// If the start index equals the end index, then the range is
// empty.
// Empty ranges are typically not meaningful and are usually rendered in
// the
// UI as `#REF!`.
type GridRange struct {
// EndColumnIndex: The end column (exclusive) of the range, or not set
// if unbounded.
EndColumnIndex int64 `json:"endColumnIndex,omitempty"`
// EndRowIndex: The end row (exclusive) of the range, or not set if
// unbounded.
EndRowIndex int64 `json:"endRowIndex,omitempty"`
// SheetId: The sheet this range is on.
SheetId int64 `json:"sheetId,omitempty"`
// StartColumnIndex: The start column (inclusive) of the range, or not
// set if unbounded.
StartColumnIndex int64 `json:"startColumnIndex,omitempty"`
// StartRowIndex: The start row (inclusive) of the range, or not set if
// unbounded.
StartRowIndex int64 `json:"startRowIndex,omitempty"`
// ForceSendFields is a list of field names (e.g. "EndColumnIndex") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "EndColumnIndex") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *GridRange) MarshalJSON() ([]byte, error) {
type noMethod GridRange
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// InsertDimensionRequest: Inserts rows or columns in a sheet at a
// particular index.
type InsertDimensionRequest struct {
// InheritFromBefore: Whether dimension properties should be extended
// from the dimensions
// before or after the newly inserted dimensions.
// True to inherit from the dimensions before (in which case the
// start
// index must be greater than 0), and false to inherit from the
// dimensions
// after.
//
// For example, if row index 0 has red background and row index 1
// has a green background, then inserting 2 rows at index 1 can
// inherit
// either the green or red background. If `inheritFromBefore` is
// true,
// the two new rows will be red (because the row before the insertion
// point
// was red), whereas if `inheritFromBefore` is false, the two new rows
// will
// be green (because the row after the insertion point was green).
InheritFromBefore bool `json:"inheritFromBefore,omitempty"`
// Range: The dimensions to insert. Both the start and end indexes must
// be bounded.
Range *DimensionRange `json:"range,omitempty"`
// ForceSendFields is a list of field names (e.g. "InheritFromBefore")
// to unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "InheritFromBefore") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *InsertDimensionRequest) MarshalJSON() ([]byte, error) {
type noMethod InsertDimensionRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// InterpolationPoint: A single interpolation point on a gradient
// conditional format.
// These pin the gradient color scale according to the color,
// type and value chosen.
type InterpolationPoint struct {
// Color: The color this interpolation point should use.
Color *Color `json:"color,omitempty"`
// Type: How the value should be interpreted.
//
// Possible values:
// "INTERPOLATION_POINT_TYPE_UNSPECIFIED" - The default value, do not
// use.
// "MIN" - The interpolation point will use the minimum value in
// the
// cells over the range of the conditional format.
// "MAX" - The interpolation point will use the maximum value in
// the
// cells over the range of the conditional format.
// "NUMBER" - The interpolation point will use exactly the value
// in
// InterpolationPoint.value.
// "PERCENT" - The interpolation point will be the given percentage
// over
// all the cells in the range of the conditional format.
// This is equivalent to NUMBER if the value was:
// `=(MAX(FLATTEN(range)) * (value / 100))
// + (MIN(FLATTEN(range)) * (1 - (value / 100)))`
// (where errors in the range are ignored when flattening).
// "PERCENTILE" - The interpolation point will be the given
// percentile
// over all the cells in the range of the conditional format.
// This is equivalent to NUMBER if the value
// was:
// `=PERCENTILE(FLATTEN(range), value / 100)`
// (where errors in the range are ignored when flattening).
Type string `json:"type,omitempty"`
// Value: The value this interpolation point uses. May be a
// formula.
// Unused if type is MIN or
// MAX.
Value string `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "Color") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Color") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *InterpolationPoint) MarshalJSON() ([]byte, error) {
type noMethod InterpolationPoint
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MergeCellsRequest: Merges all cells in the range.
type MergeCellsRequest struct {
// MergeType: How the cells should be merged.
//
// Possible values:
// "MERGE_ALL" - Create a single merge from the range
// "MERGE_COLUMNS" - Create a merge for each column in the range
// "MERGE_ROWS" - Create a merge for each row in the range
MergeType string `json:"mergeType,omitempty"`
// Range: The range of cells to merge.
Range *GridRange `json:"range,omitempty"`
// ForceSendFields is a list of field names (e.g. "MergeType") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "MergeType") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *MergeCellsRequest) MarshalJSON() ([]byte, error) {
type noMethod MergeCellsRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MoveDimensionRequest: Moves one or more rows or columns.
type MoveDimensionRequest struct {
// DestinationIndex: The zero-based start index of where to move the
// source data to,
// based on the coordinates *before* the source data is removed
// from the grid. Existing data will be shifted down or
// right
// (depending on the dimension) to make room for the moved
// dimensions.
// The source dimensions are removed from the grid, so the
// the data may end up in a different index than specified.
//
// For example, given `A1..A5` of `0, 1, 2, 3, 4` and wanting to
// move
// "1" and "2" to between "3" and "4", the source would be
// `ROWS [1..3)`,and the destination index would be "4"
// (the zero-based index of row 5).
// The end result would be `A1..A5` of `0, 3, 1, 2, 4`.
DestinationIndex int64 `json:"destinationIndex,omitempty"`
// Source: The source dimensions to move.
Source *DimensionRange `json:"source,omitempty"`
// ForceSendFields is a list of field names (e.g. "DestinationIndex") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DestinationIndex") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *MoveDimensionRequest) MarshalJSON() ([]byte, error) {
type noMethod MoveDimensionRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// NamedRange: A named range.
type NamedRange struct {
// Name: The name of the named range.
Name string `json:"name,omitempty"`
// NamedRangeId: The ID of the named range.
NamedRangeId string `json:"namedRangeId,omitempty"`
// Range: The range this represents.
Range *GridRange `json:"range,omitempty"`
// ForceSendFields is a list of field names (e.g. "Name") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Name") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *NamedRange) MarshalJSON() ([]byte, error) {
type noMethod NamedRange
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// NumberFormat: The number format of a cell.
type NumberFormat struct {
// Pattern: Pattern string used for formatting. If not set, a default
// pattern based on
// the user's locale will be used if necessary for the given type.
// See the [Date and Number Formats guide](/sheets/guides/formats) for
// more
// information about the supported patterns.
Pattern string `json:"pattern,omitempty"`
// Type: The type of the number format.
// When writing, this field must be set.
//
// Possible values:
// "NUMBER_FORMAT_TYPE_UNSPECIFIED" - The number format is not
// specified
// and is based on the contents of the cell.
// Do not explicitly use this.
// "TEXT" - Text formatting, e.g `1000.12`
// "NUMBER" - Number formatting, e.g, `1,000.12`
// "PERCENT" - Percent formatting, e.g `10.12%`
// "CURRENCY" - Currency formatting, e.g `$1,000.12`
// "DATE" - Date formatting, e.g `9/26/2008`
// "TIME" - Time formatting, e.g `3:59:00 PM`
// "DATE_TIME" - Date+Time formatting, e.g `9/26/08 15:59:00`
// "SCIENTIFIC" - Scientific number formatting, e.g `1.01E+03`
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Pattern") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Pattern") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *NumberFormat) MarshalJSON() ([]byte, error) {
type noMethod NumberFormat
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// OverlayPosition: The location an object is overlaid on top of a grid.
type OverlayPosition struct {
// AnchorCell: The cell the object is anchored to.
AnchorCell *GridCoordinate `json:"anchorCell,omitempty"`
// HeightPixels: The height of the object, in pixels. Defaults to 371.
HeightPixels int64 `json:"heightPixels,omitempty"`
// OffsetXPixels: The horizontal offset, in pixels, that the object is
// offset
// from the anchor cell.
OffsetXPixels int64 `json:"offsetXPixels,omitempty"`
// OffsetYPixels: The vertical offset, in pixels, that the object is
// offset
// from the anchor cell.
OffsetYPixels int64 `json:"offsetYPixels,omitempty"`
// WidthPixels: The width of the object, in pixels. Defaults to 600.
WidthPixels int64 `json:"widthPixels,omitempty"`
// ForceSendFields is a list of field names (e.g. "AnchorCell") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AnchorCell") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *OverlayPosition) MarshalJSON() ([]byte, error) {
type noMethod OverlayPosition
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Padding: The amount of padding around the cell, in pixels.
// When updating padding, every field must be specified.
type Padding struct {
// Bottom: The bottom padding of the cell.
Bottom int64 `json:"bottom,omitempty"`
// Left: The left padding of the cell.
Left int64 `json:"left,omitempty"`
// Right: The right padding of the cell.
Right int64 `json:"right,omitempty"`
// Top: The top padding of the cell.
Top int64 `json:"top,omitempty"`
// ForceSendFields is a list of field names (e.g. "Bottom") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Bottom") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Padding) MarshalJSON() ([]byte, error) {
type noMethod Padding
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PasteDataRequest: Inserts data into the spreadsheet starting at the
// specified coordinate.
type PasteDataRequest struct {
// Coordinate: The coordinate at which the data should start being
// inserted.
Coordinate *GridCoordinate `json:"coordinate,omitempty"`
// Data: The data to insert.
Data string `json:"data,omitempty"`
// Delimiter: The delimiter in the data.
Delimiter string `json:"delimiter,omitempty"`
// Html: True if the data is HTML.
Html bool `json:"html,omitempty"`
// Type: How the data should be pasted.
//
// Possible values:
// "PASTE_NORMAL" - Paste values, formulas, formats, and merges.
// "PASTE_VALUES" - Paste the values ONLY without formats, formulas,
// or merges.
// "PASTE_FORMAT" - Paste the format and data validation only.
// "PASTE_NO_BORDERS" - Like PASTE_NORMAL but without borders.
// "PASTE_FORMULA" - Paste the formulas only.
// "PASTE_DATA_VALIDATION" - Paste the data validation only.
// "PASTE_CONDITIONAL_FORMATTING" - Paste the conditional formatting
// rules only.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Coordinate") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Coordinate") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PasteDataRequest) MarshalJSON() ([]byte, error) {
type noMethod PasteDataRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PieChartSpec: A <a
// href="/chart/interactive/docs/gallery/piechart">pie chart</a>.
type PieChartSpec struct {
// Domain: The data that covers the domain of the pie chart.
Domain *ChartData `json:"domain,omitempty"`
// LegendPosition: Where the legend of the pie chart should be drawn.
//
// Possible values:
// "PIE_CHART_LEGEND_POSITION_UNSPECIFIED" - Default value, do not
// use.
// "BOTTOM_LEGEND" - The legend is rendered on the bottom of the
// chart.
// "LEFT_LEGEND" - The legend is rendered on the left of the chart.
// "RIGHT_LEGEND" - The legend is rendered on the right of the chart.
// "TOP_LEGEND" - The legend is rendered on the top of the chart.
// "NO_LEGEND" - No legend is rendered.
// "LABELED_LEGEND" - Each pie slice has a label attached to it.
LegendPosition string `json:"legendPosition,omitempty"`
// PieHole: The size of the hole in the pie chart.
PieHole float64 `json:"pieHole,omitempty"`
// Series: The data that covers the one and only series of the pie
// chart.
Series *ChartData `json:"series,omitempty"`
// ThreeDimensional: True if the pie is three dimensional.
ThreeDimensional bool `json:"threeDimensional,omitempty"`
// ForceSendFields is a list of field names (e.g. "Domain") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Domain") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PieChartSpec) MarshalJSON() ([]byte, error) {
type noMethod PieChartSpec
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotFilterCriteria: Criteria for showing/hiding rows in a pivot
// table.
type PivotFilterCriteria struct {
// VisibleValues: Values that should be included. Values not listed
// here are excluded.
VisibleValues []string `json:"visibleValues,omitempty"`
// ForceSendFields is a list of field names (e.g. "VisibleValues") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "VisibleValues") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PivotFilterCriteria) MarshalJSON() ([]byte, error) {
type noMethod PivotFilterCriteria
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotGroup: A single grouping (either row or column) in a pivot
// table.
type PivotGroup struct {
// ShowTotals: True if the pivot table should include the totals for
// this grouping.
ShowTotals bool `json:"showTotals,omitempty"`
// SortOrder: The order the values in this group should be sorted.
//
// Possible values:
// "SORT_ORDER_UNSPECIFIED" - Default value, do not use this.
// "ASCENDING" - Sort ascending.
// "DESCENDING" - Sort descending.
SortOrder string `json:"sortOrder,omitempty"`
// SourceColumnOffset: The column offset of the source range that this
// grouping is based on.
//
// For example, if the source was `C10:E15`, a `sourceColumnOffset` of
// `0`
// means this group refers to column `C`, whereas the offset `1` would
// refer
// to column `D`.
SourceColumnOffset int64 `json:"sourceColumnOffset,omitempty"`
// ValueBucket: The bucket of the opposite pivot group to sort by.
// If not specified, sorting is alphabetical by this group's values.
ValueBucket *PivotGroupSortValueBucket `json:"valueBucket,omitempty"`
// ValueMetadata: Metadata about values in the grouping.
ValueMetadata []*PivotGroupValueMetadata `json:"valueMetadata,omitempty"`
// ForceSendFields is a list of field names (e.g. "ShowTotals") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ShowTotals") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PivotGroup) MarshalJSON() ([]byte, error) {
type noMethod PivotGroup
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotGroupSortValueBucket: Information about which values in a pivot
// group should be used for sorting.
type PivotGroupSortValueBucket struct {
// Buckets: Determines the bucket from which values are chosen to
// sort.
//
// For example, in a pivot table with one row group & two column
// groups,
// the row group can list up to two values. The first value
// corresponds
// to a value within the first column group, and the second
// value
// corresponds to a value in the second column group. If no values
// are listed, this would indicate that the row should be sorted
// according
// to the "Grand Total" over the column groups. If a single value is
// listed,
// this would correspond to using the "Total" of that bucket.
Buckets []*ExtendedValue `json:"buckets,omitempty"`
// ValuesIndex: The offset in the PivotTable.values list which the
// values in this
// grouping should be sorted by.
ValuesIndex int64 `json:"valuesIndex,omitempty"`
// ForceSendFields is a list of field names (e.g. "Buckets") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Buckets") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PivotGroupSortValueBucket) MarshalJSON() ([]byte, error) {
type noMethod PivotGroupSortValueBucket
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotGroupValueMetadata: Metadata about a value in a pivot grouping.
type PivotGroupValueMetadata struct {
// Collapsed: True if the data corresponding to the value is collapsed.
Collapsed bool `json:"collapsed,omitempty"`
// Value: The calculated value the metadata corresponds to.
// (Note that formulaValue is not valid,
// because the values will be calculated.)
Value *ExtendedValue `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "Collapsed") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Collapsed") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PivotGroupValueMetadata) MarshalJSON() ([]byte, error) {
type noMethod PivotGroupValueMetadata
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotTable: A pivot table.
type PivotTable struct {
// Columns: Each column grouping in the pivot table.
Columns []*PivotGroup `json:"columns,omitempty"`
// Criteria: An optional mapping of filters per source column
// offset.
//
// The filters will be applied before aggregating data into the pivot
// table.
// The map's key is the column offset of the source range that you want
// to
// filter, and the value is the criteria for that column.
//
// For example, if the source was `C10:E15`, a key of `0` will have the
// filter
// for column `C`, whereas the key `1` is for column `D`.
Criteria map[string]PivotFilterCriteria `json:"criteria,omitempty"`
// Rows: Each row grouping in the pivot table.
Rows []*PivotGroup `json:"rows,omitempty"`
// Source: The range the pivot table is reading data from.
Source *GridRange `json:"source,omitempty"`
// ValueLayout: Whether values should be listed horizontally (as
// columns)
// or vertically (as rows).
//
// Possible values:
// "HORIZONTAL" - Values are laid out horizontally (as columns).
// "VERTICAL" - Values are laid out vertically (as rows).
ValueLayout string `json:"valueLayout,omitempty"`
// Values: A list of values to include in the pivot table.
Values []*PivotValue `json:"values,omitempty"`
// ForceSendFields is a list of field names (e.g. "Columns") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Columns") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PivotTable) MarshalJSON() ([]byte, error) {
type noMethod PivotTable
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotValue: The definition of how a value in a pivot table should be
// calculated.
type PivotValue struct {
// Formula: A custom formula to calculate the value. The formula must
// start
// with an `=` character.
Formula string `json:"formula,omitempty"`
// Name: A name to use for the value. This is only used if formula was
// set.
// Otherwise, the column name is used.
Name string `json:"name,omitempty"`
// SourceColumnOffset: The column offset of the source range that this
// value reads from.
//
// For example, if the source was `C10:E15`, a `sourceColumnOffset` of
// `0`
// means this value refers to column `C`, whereas the offset `1`
// would
// refer to column `D`.
SourceColumnOffset int64 `json:"sourceColumnOffset,omitempty"`
// SummarizeFunction: A function to summarize the value.
// If formula is set, the only supported values are
// SUM and
// CUSTOM.
// If sourceColumnOffset is set, then `CUSTOM`
// is not supported.
//
// Possible values:
// "PIVOT_STANDARD_VALUE_FUNCTION_UNSPECIFIED" - The default, do not
// use.
// "SUM" - Corresponds to the `SUM` function.
// "COUNTA" - Corresponds to the `COUNTA` function.
// "COUNT" - Corresponds to the `COUNT` function.
// "COUNTUNIQUE" - Corresponds to the `COUNTUNIQUE` function.
// "AVERAGE" - Corresponds to the `AVERAGE` function.
// "MAX" - Corresponds to the `MAX` function.
// "MIN" - Corresponds to the `MIN` function.
// "MEDIAN" - Corresponds to the `MEDIAN` function.
// "PRODUCT" - Corresponds to the `PRODUCT` function.
// "STDEV" - Corresponds to the `STDEV` function.
// "STDEVP" - Corresponds to the `STDEVP` function.
// "VAR" - Corresponds to the `VAR` function.
// "VARP" - Corresponds to the `VARP` function.
// "CUSTOM" - Indicates the formula should be used as-is.
// Only valid if PivotValue.formula was set.
SummarizeFunction string `json:"summarizeFunction,omitempty"`
// ForceSendFields is a list of field names (e.g. "Formula") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Formula") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *PivotValue) MarshalJSON() ([]byte, error) {
type noMethod PivotValue
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ProtectedRange: A protected range.
type ProtectedRange struct {
// Description: The description of this protected range.
Description string `json:"description,omitempty"`
// Editors: The users and groups with edit access to the protected
// range.
// This field is only visible to users with edit access to the
// protected
// range and the document.
// Editors are not supported with warning_only protection.
Editors *Editors `json:"editors,omitempty"`
// NamedRangeId: The named range this protected range is backed by, if
// any.
//
// When writing, only one of range or named_range_id
// may be set.
NamedRangeId string `json:"namedRangeId,omitempty"`
// ProtectedRangeId: The ID of the protected range.
// This field is read-only.
ProtectedRangeId int64 `json:"protectedRangeId,omitempty"`
// Range: The range that is being protected.
// The range may be fully unbounded, in which case this is considered
// a protected sheet.
//
// When writing, only one of range or named_range_id
// may be set.
Range *GridRange `json:"range,omitempty"`
// RequestingUserCanEdit: True if the user who requested this protected
// range can edit the
// protected area.
// This field is read-only.
RequestingUserCanEdit bool `json:"requestingUserCanEdit,omitempty"`
// UnprotectedRanges: The list of unprotected ranges within a protected
// sheet.
// Unprotected ranges are only supported on protected sheets.
UnprotectedRanges []*GridRange `json:"unprotectedRanges,omitempty"`
// WarningOnly: True if this protected range will show a warning when
// editing.
// Warning-based protection means that every user can edit data in
// the
// protected range, except editing will prompt a warning asking the
// user
// to confirm the edit.
//
// When writing: if this field is true, then editors is
// ignored.
// Additionally, if this field is changed from true to false and
// the
// `editors` field is not set (nor included in the field mask), then
// the editors will be set to all the editors in the document.
WarningOnly bool `json:"warningOnly,omitempty"`
// ForceSendFields is a list of field names (e.g. "Description") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Description") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ProtectedRange) MarshalJSON() ([]byte, error) {
type noMethod ProtectedRange
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// RepeatCellRequest: Updates all cells in the range to the values in
// the given Cell object.
// Only the fields listed in the fields field are updated; others
// are
// unchanged.
//
// If writing a cell with a formula, the formula's ranges will
// automatically
// increment for each field in the range.
// For example, if writing a cell with formula `=A1` into range
// B2:C4,
// B2 would be `=A1`, B3 would be `=A2`, B4 would be `=A3`,
// C2 would be `=B1`, C3 would be `=B2`, C4 would be `=B3`.
//
// To keep the formula's ranges static, use the `$` indicator.
// For example, use the formula `=$A$1` to prevent both the row and
// the
// column from incrementing.
type RepeatCellRequest struct {
// Cell: The data to write.
Cell *CellData `json:"cell,omitempty"`
// Fields: The fields that should be updated. At least one field must
// be specified.
// The root `cell` is implied and should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// Range: The range to repeat the cell in.
Range *GridRange `json:"range,omitempty"`
// ForceSendFields is a list of field names (e.g. "Cell") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Cell") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *RepeatCellRequest) MarshalJSON() ([]byte, error) {
type noMethod RepeatCellRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Request: A single kind of update to apply to a spreadsheet.
type Request struct {
// AddBanding: Adds a new banded range
AddBanding *AddBandingRequest `json:"addBanding,omitempty"`
// AddChart: Adds a chart.
AddChart *AddChartRequest `json:"addChart,omitempty"`
// AddConditionalFormatRule: Adds a new conditional format rule.
AddConditionalFormatRule *AddConditionalFormatRuleRequest `json:"addConditionalFormatRule,omitempty"`
// AddFilterView: Adds a filter view.
AddFilterView *AddFilterViewRequest `json:"addFilterView,omitempty"`
// AddNamedRange: Adds a named range.
AddNamedRange *AddNamedRangeRequest `json:"addNamedRange,omitempty"`
// AddProtectedRange: Adds a protected range.
AddProtectedRange *AddProtectedRangeRequest `json:"addProtectedRange,omitempty"`
// AddSheet: Adds a sheet.
AddSheet *AddSheetRequest `json:"addSheet,omitempty"`
// AppendCells: Appends cells after the last row with data in a sheet.
AppendCells *AppendCellsRequest `json:"appendCells,omitempty"`
// AppendDimension: Appends dimensions to the end of a sheet.
AppendDimension *AppendDimensionRequest `json:"appendDimension,omitempty"`
// AutoFill: Automatically fills in more data based on existing data.
AutoFill *AutoFillRequest `json:"autoFill,omitempty"`
// AutoResizeDimensions: Automatically resizes one or more dimensions
// based on the contents
// of the cells in that dimension.
AutoResizeDimensions *AutoResizeDimensionsRequest `json:"autoResizeDimensions,omitempty"`
// ClearBasicFilter: Clears the basic filter on a sheet.
ClearBasicFilter *ClearBasicFilterRequest `json:"clearBasicFilter,omitempty"`
// CopyPaste: Copies data from one area and pastes it to another.
CopyPaste *CopyPasteRequest `json:"copyPaste,omitempty"`
// CutPaste: Cuts data from one area and pastes it to another.
CutPaste *CutPasteRequest `json:"cutPaste,omitempty"`
// DeleteBanding: Removes a banded range
DeleteBanding *DeleteBandingRequest `json:"deleteBanding,omitempty"`
// DeleteConditionalFormatRule: Deletes an existing conditional format
// rule.
DeleteConditionalFormatRule *DeleteConditionalFormatRuleRequest `json:"deleteConditionalFormatRule,omitempty"`
// DeleteDimension: Deletes rows or columns in a sheet.
DeleteDimension *DeleteDimensionRequest `json:"deleteDimension,omitempty"`
// DeleteEmbeddedObject: Deletes an embedded object (e.g, chart, image)
// in a sheet.
DeleteEmbeddedObject *DeleteEmbeddedObjectRequest `json:"deleteEmbeddedObject,omitempty"`
// DeleteFilterView: Deletes a filter view from a sheet.
DeleteFilterView *DeleteFilterViewRequest `json:"deleteFilterView,omitempty"`
// DeleteNamedRange: Deletes a named range.
DeleteNamedRange *DeleteNamedRangeRequest `json:"deleteNamedRange,omitempty"`
// DeleteProtectedRange: Deletes a protected range.
DeleteProtectedRange *DeleteProtectedRangeRequest `json:"deleteProtectedRange,omitempty"`
// DeleteSheet: Deletes a sheet.
DeleteSheet *DeleteSheetRequest `json:"deleteSheet,omitempty"`
// DuplicateFilterView: Duplicates a filter view.
DuplicateFilterView *DuplicateFilterViewRequest `json:"duplicateFilterView,omitempty"`
// DuplicateSheet: Duplicates a sheet.
DuplicateSheet *DuplicateSheetRequest `json:"duplicateSheet,omitempty"`
// FindReplace: Finds and replaces occurrences of some text with other
// text.
FindReplace *FindReplaceRequest `json:"findReplace,omitempty"`
// InsertDimension: Inserts new rows or columns in a sheet.
InsertDimension *InsertDimensionRequest `json:"insertDimension,omitempty"`
// MergeCells: Merges cells together.
MergeCells *MergeCellsRequest `json:"mergeCells,omitempty"`
// MoveDimension: Moves rows or columns to another location in a sheet.
MoveDimension *MoveDimensionRequest `json:"moveDimension,omitempty"`
// PasteData: Pastes data (HTML or delimited) into a sheet.
PasteData *PasteDataRequest `json:"pasteData,omitempty"`
// RepeatCell: Repeats a single cell across a range.
RepeatCell *RepeatCellRequest `json:"repeatCell,omitempty"`
// SetBasicFilter: Sets the basic filter on a sheet.
SetBasicFilter *SetBasicFilterRequest `json:"setBasicFilter,omitempty"`
// SetDataValidation: Sets data validation for one or more cells.
SetDataValidation *SetDataValidationRequest `json:"setDataValidation,omitempty"`
// SortRange: Sorts data in a range.
SortRange *SortRangeRequest `json:"sortRange,omitempty"`
// TextToColumns: Converts a column of text into many columns of text.
TextToColumns *TextToColumnsRequest `json:"textToColumns,omitempty"`
// UnmergeCells: Unmerges merged cells.
UnmergeCells *UnmergeCellsRequest `json:"unmergeCells,omitempty"`
// UpdateBanding: Updates a banded range
UpdateBanding *UpdateBandingRequest `json:"updateBanding,omitempty"`
// UpdateBorders: Updates the borders in a range of cells.
UpdateBorders *UpdateBordersRequest `json:"updateBorders,omitempty"`
// UpdateCells: Updates many cells at once.
UpdateCells *UpdateCellsRequest `json:"updateCells,omitempty"`
// UpdateChartSpec: Updates a chart's specifications.
UpdateChartSpec *UpdateChartSpecRequest `json:"updateChartSpec,omitempty"`
// UpdateConditionalFormatRule: Updates an existing conditional format
// rule.
UpdateConditionalFormatRule *UpdateConditionalFormatRuleRequest `json:"updateConditionalFormatRule,omitempty"`
// UpdateDimensionProperties: Updates dimensions' properties.
UpdateDimensionProperties *UpdateDimensionPropertiesRequest `json:"updateDimensionProperties,omitempty"`
// UpdateEmbeddedObjectPosition: Updates an embedded object's (e.g.
// chart, image) position.
UpdateEmbeddedObjectPosition *UpdateEmbeddedObjectPositionRequest `json:"updateEmbeddedObjectPosition,omitempty"`
// UpdateFilterView: Updates the properties of a filter view.
UpdateFilterView *UpdateFilterViewRequest `json:"updateFilterView,omitempty"`
// UpdateNamedRange: Updates a named range.
UpdateNamedRange *UpdateNamedRangeRequest `json:"updateNamedRange,omitempty"`
// UpdateProtectedRange: Updates a protected range.
UpdateProtectedRange *UpdateProtectedRangeRequest `json:"updateProtectedRange,omitempty"`
// UpdateSheetProperties: Updates a sheet's properties.
UpdateSheetProperties *UpdateSheetPropertiesRequest `json:"updateSheetProperties,omitempty"`
// UpdateSpreadsheetProperties: Updates the spreadsheet's properties.
UpdateSpreadsheetProperties *UpdateSpreadsheetPropertiesRequest `json:"updateSpreadsheetProperties,omitempty"`
// ForceSendFields is a list of field names (e.g. "AddBanding") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AddBanding") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Request) MarshalJSON() ([]byte, error) {
type noMethod Request
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Response: A single response from an update.
type Response struct {
// AddBanding: A reply from adding a banded range.
AddBanding *AddBandingResponse `json:"addBanding,omitempty"`
// AddChart: A reply from adding a chart.
AddChart *AddChartResponse `json:"addChart,omitempty"`
// AddFilterView: A reply from adding a filter view.
AddFilterView *AddFilterViewResponse `json:"addFilterView,omitempty"`
// AddNamedRange: A reply from adding a named range.
AddNamedRange *AddNamedRangeResponse `json:"addNamedRange,omitempty"`
// AddProtectedRange: A reply from adding a protected range.
AddProtectedRange *AddProtectedRangeResponse `json:"addProtectedRange,omitempty"`
// AddSheet: A reply from adding a sheet.
AddSheet *AddSheetResponse `json:"addSheet,omitempty"`
// DeleteConditionalFormatRule: A reply from deleting a conditional
// format rule.
DeleteConditionalFormatRule *DeleteConditionalFormatRuleResponse `json:"deleteConditionalFormatRule,omitempty"`
// DuplicateFilterView: A reply from duplicating a filter view.
DuplicateFilterView *DuplicateFilterViewResponse `json:"duplicateFilterView,omitempty"`
// DuplicateSheet: A reply from duplicating a sheet.
DuplicateSheet *DuplicateSheetResponse `json:"duplicateSheet,omitempty"`
// FindReplace: A reply from doing a find/replace.
FindReplace *FindReplaceResponse `json:"findReplace,omitempty"`
// UpdateConditionalFormatRule: A reply from updating a conditional
// format rule.
UpdateConditionalFormatRule *UpdateConditionalFormatRuleResponse `json:"updateConditionalFormatRule,omitempty"`
// UpdateEmbeddedObjectPosition: A reply from updating an embedded
// object's position.
UpdateEmbeddedObjectPosition *UpdateEmbeddedObjectPositionResponse `json:"updateEmbeddedObjectPosition,omitempty"`
// ForceSendFields is a list of field names (e.g. "AddBanding") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AddBanding") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Response) MarshalJSON() ([]byte, error) {
type noMethod Response
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// RowData: Data about each cell in a row.
type RowData struct {
// Values: The values in the row, one per column.
Values []*CellData `json:"values,omitempty"`
// ForceSendFields is a list of field names (e.g. "Values") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Values") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *RowData) MarshalJSON() ([]byte, error) {
type noMethod RowData
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// SetBasicFilterRequest: Sets the basic filter associated with a sheet.
type SetBasicFilterRequest struct {
// Filter: The filter to set.
Filter *BasicFilter `json:"filter,omitempty"`
// ForceSendFields is a list of field names (e.g. "Filter") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Filter") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *SetBasicFilterRequest) MarshalJSON() ([]byte, error) {
type noMethod SetBasicFilterRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// SetDataValidationRequest: Sets a data validation rule to every cell
// in the range.
// To clear validation in a range, call this with no rule specified.
type SetDataValidationRequest struct {
// Range: The range the data validation rule should apply to.
Range *GridRange `json:"range,omitempty"`
// Rule: The data validation rule to set on each cell in the range,
// or empty to clear the data validation in the range.
Rule *DataValidationRule `json:"rule,omitempty"`
// ForceSendFields is a list of field names (e.g. "Range") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Range") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *SetDataValidationRequest) MarshalJSON() ([]byte, error) {
type noMethod SetDataValidationRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Sheet: A sheet in a spreadsheet.
type Sheet struct {
// BandedRanges: The banded (i.e. alternating colors) ranges on this
// sheet.
BandedRanges []*BandedRange `json:"bandedRanges,omitempty"`
// BasicFilter: The filter on this sheet, if any.
BasicFilter *BasicFilter `json:"basicFilter,omitempty"`
// Charts: The specifications of every chart on this sheet.
Charts []*EmbeddedChart `json:"charts,omitempty"`
// ConditionalFormats: The conditional format rules in this sheet.
ConditionalFormats []*ConditionalFormatRule `json:"conditionalFormats,omitempty"`
// Data: Data in the grid, if this is a grid sheet.
// The number of GridData objects returned is dependent on the number
// of
// ranges requested on this sheet. For example, if this is
// representing
// `Sheet1`, and the spreadsheet was requested with
// ranges
// `Sheet1!A1:C10` and `Sheet1!D15:E20`, then the first GridData will
// have a
// startRow/startColumn of `0`,
// while the second one will have `startRow 14` (zero-based row 15),
// and `startColumn 3` (zero-based column D).
Data []*GridData `json:"data,omitempty"`
// FilterViews: The filter views in this sheet.
FilterViews []*FilterView `json:"filterViews,omitempty"`
// Merges: The ranges that are merged together.
Merges []*GridRange `json:"merges,omitempty"`
// Properties: The properties of the sheet.
Properties *SheetProperties `json:"properties,omitempty"`
// ProtectedRanges: The protected ranges in this sheet.
ProtectedRanges []*ProtectedRange `json:"protectedRanges,omitempty"`
// ForceSendFields is a list of field names (e.g. "BandedRanges") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BandedRanges") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Sheet) MarshalJSON() ([]byte, error) {
type noMethod Sheet
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// SheetProperties: Properties of a sheet.
type SheetProperties struct {
// GridProperties: Additional properties of the sheet if this sheet is a
// grid.
// (If the sheet is an object sheet, containing a chart or image,
// then
// this field will be absent.)
// When writing it is an error to set any grid properties on non-grid
// sheets.
GridProperties *GridProperties `json:"gridProperties,omitempty"`
// Hidden: True if the sheet is hidden in the UI, false if it's visible.
Hidden bool `json:"hidden,omitempty"`
// Index: The index of the sheet within the spreadsheet.
// When adding or updating sheet properties, if this field
// is excluded then the sheet will be added or moved to the end
// of the sheet list.
Index int64 `json:"index,omitempty"`
// RightToLeft: True if the sheet is an RTL sheet instead of an LTR
// sheet.
RightToLeft bool `json:"rightToLeft,omitempty"`
// SheetId: The ID of the sheet. Must be non-negative.
// This field cannot be changed once set.
SheetId int64 `json:"sheetId,omitempty"`
// SheetType: The type of sheet. Defaults to GRID.
// This field cannot be changed once set.
//
// Possible values:
// "SHEET_TYPE_UNSPECIFIED" - Default value, do not use.
// "GRID" - The sheet is a grid.
// "OBJECT" - The sheet has no grid and instead has an object like a
// chart or image.
SheetType string `json:"sheetType,omitempty"`
// TabColor: The color of the tab in the UI.
TabColor *Color `json:"tabColor,omitempty"`
// Title: The name of the sheet.
Title string `json:"title,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "GridProperties") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "GridProperties") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *SheetProperties) MarshalJSON() ([]byte, error) {
type noMethod SheetProperties
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// SortRangeRequest: Sorts data in rows based on a sort order per
// column.
type SortRangeRequest struct {
// Range: The range to sort.
Range *GridRange `json:"range,omitempty"`
// SortSpecs: The sort order per column. Later specifications are used
// when values
// are equal in the earlier specifications.
SortSpecs []*SortSpec `json:"sortSpecs,omitempty"`
// ForceSendFields is a list of field names (e.g. "Range") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Range") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *SortRangeRequest) MarshalJSON() ([]byte, error) {
type noMethod SortRangeRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// SortSpec: A sort order associated with a specific column or row.
type SortSpec struct {
// DimensionIndex: The dimension the sort should be applied to.
DimensionIndex int64 `json:"dimensionIndex,omitempty"`
// SortOrder: The order data should be sorted.
//
// Possible values:
// "SORT_ORDER_UNSPECIFIED" - Default value, do not use this.
// "ASCENDING" - Sort ascending.
// "DESCENDING" - Sort descending.
SortOrder string `json:"sortOrder,omitempty"`
// ForceSendFields is a list of field names (e.g. "DimensionIndex") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DimensionIndex") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *SortSpec) MarshalJSON() ([]byte, error) {
type noMethod SortSpec
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// SourceAndDestination: A combination of a source range and how to
// extend that source.
type SourceAndDestination struct {
// Dimension: The dimension that data should be filled into.
//
// Possible values:
// "DIMENSION_UNSPECIFIED" - The default value, do not use.
// "ROWS" - Operates on the rows of a sheet.
// "COLUMNS" - Operates on the columns of a sheet.
Dimension string `json:"dimension,omitempty"`
// FillLength: The number of rows or columns that data should be filled
// into.
// Positive numbers expand beyond the last row or last column
// of the source. Negative numbers expand before the first row
// or first column of the source.
FillLength int64 `json:"fillLength,omitempty"`
// Source: The location of the data to use as the source of the
// autofill.
Source *GridRange `json:"source,omitempty"`
// ForceSendFields is a list of field names (e.g. "Dimension") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Dimension") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *SourceAndDestination) MarshalJSON() ([]byte, error) {
type noMethod SourceAndDestination
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Spreadsheet: Resource that represents a spreadsheet.
type Spreadsheet struct {
// NamedRanges: The named ranges defined in a spreadsheet.
NamedRanges []*NamedRange `json:"namedRanges,omitempty"`
// Properties: Overall properties of a spreadsheet.
Properties *SpreadsheetProperties `json:"properties,omitempty"`
// Sheets: The sheets that are part of a spreadsheet.
Sheets []*Sheet `json:"sheets,omitempty"`
// SpreadsheetId: The ID of the spreadsheet.
// This field is read-only.
SpreadsheetId string `json:"spreadsheetId,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "NamedRanges") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "NamedRanges") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Spreadsheet) MarshalJSON() ([]byte, error) {
type noMethod Spreadsheet
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// SpreadsheetProperties: Properties of a spreadsheet.
type SpreadsheetProperties struct {
// AutoRecalc: The amount of time to wait before volatile functions are
// recalculated.
//
// Possible values:
// "RECALCULATION_INTERVAL_UNSPECIFIED" - Default value. This value
// must not be used.
// "ON_CHANGE" - Volatile functions are updated on every change.
// "MINUTE" - Volatile functions are updated on every change and every
// minute.
// "HOUR" - Volatile functions are updated on every change and hourly.
AutoRecalc string `json:"autoRecalc,omitempty"`
// DefaultFormat: The default format of all cells in the
// spreadsheet.
// CellData.effectiveFormat will not be set if the
// cell's format is equal to this default format.
// This field is read-only.
DefaultFormat *CellFormat `json:"defaultFormat,omitempty"`
// Locale: The locale of the spreadsheet in one of the following
// formats:
//
// * an ISO 639-1 language code such as `en`
//
// * an ISO 639-2 language code such as `fil`, if no 639-1 code
// exists
//
// * a combination of the ISO language code and country code, such as
// `en_US`
//
// Note: when updating this field, not all locales/languages are
// supported.
Locale string `json:"locale,omitempty"`
// TimeZone: The time zone of the spreadsheet, in CLDR format such
// as
// `America/New_York`. If the time zone isn't recognized, this may
// be a custom time zone such as `GMT-07:00`.
TimeZone string `json:"timeZone,omitempty"`
// Title: The title of the spreadsheet.
Title string `json:"title,omitempty"`
// ForceSendFields is a list of field names (e.g. "AutoRecalc") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AutoRecalc") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *SpreadsheetProperties) MarshalJSON() ([]byte, error) {
type noMethod SpreadsheetProperties
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// TextFormat: The format of a run of text in a cell.
// Absent values indicate that the field isn't specified.
type TextFormat struct {
// Bold: True if the text is bold.
Bold bool `json:"bold,omitempty"`
// FontFamily: The font family.
FontFamily string `json:"fontFamily,omitempty"`
// FontSize: The size of the font.
FontSize int64 `json:"fontSize,omitempty"`
// ForegroundColor: The foreground color of the text.
ForegroundColor *Color `json:"foregroundColor,omitempty"`
// Italic: True if the text is italicized.
Italic bool `json:"italic,omitempty"`
// Strikethrough: True if the text has a strikethrough.
Strikethrough bool `json:"strikethrough,omitempty"`
// Underline: True if the text is underlined.
Underline bool `json:"underline,omitempty"`
// ForceSendFields is a list of field names (e.g. "Bold") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Bold") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *TextFormat) MarshalJSON() ([]byte, error) {
type noMethod TextFormat
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// TextFormatRun: A run of a text format. The format of this run
// continues until the start
// index of the next run.
// When updating, all fields must be set.
type TextFormatRun struct {
// Format: The format of this run. Absent values inherit the cell's
// format.
Format *TextFormat `json:"format,omitempty"`
// StartIndex: The character index where this run starts.
StartIndex int64 `json:"startIndex,omitempty"`
// ForceSendFields is a list of field names (e.g. "Format") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Format") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *TextFormatRun) MarshalJSON() ([]byte, error) {
type noMethod TextFormatRun
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// TextToColumnsRequest: Splits a column of text into multiple
// columns,
// based on a delimiter in each cell.
type TextToColumnsRequest struct {
// Delimiter: The delimiter to use. Used only if delimiterType
// is
// CUSTOM.
Delimiter string `json:"delimiter,omitempty"`
// DelimiterType: The delimiter type to use.
//
// Possible values:
// "DELIMITER_TYPE_UNSPECIFIED" - Default value. This value must not
// be used.
// "COMMA" - ","
// "SEMICOLON" - ";"
// "PERIOD" - "."
// "SPACE" - " "
// "CUSTOM" - A custom value as defined in delimiter.
DelimiterType string `json:"delimiterType,omitempty"`
// Source: The source data range. This must span exactly one column.
Source *GridRange `json:"source,omitempty"`
// ForceSendFields is a list of field names (e.g. "Delimiter") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Delimiter") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *TextToColumnsRequest) MarshalJSON() ([]byte, error) {
type noMethod TextToColumnsRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UnmergeCellsRequest: Unmerges cells in the given range.
type UnmergeCellsRequest struct {
// Range: The range within which all cells should be unmerged.
// If the range spans multiple merges, all will be unmerged.
// The range must not partially span any merge.
Range *GridRange `json:"range,omitempty"`
// ForceSendFields is a list of field names (e.g. "Range") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Range") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UnmergeCellsRequest) MarshalJSON() ([]byte, error) {
type noMethod UnmergeCellsRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateBandingRequest: Updates properties of the supplied banded
// range.
type UpdateBandingRequest struct {
// BandedRange: The banded range to update with the new properties.
BandedRange *BandedRange `json:"bandedRange,omitempty"`
// Fields: The fields that should be updated. At least one field must
// be specified.
// The root `bandedRange` is implied and should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// ForceSendFields is a list of field names (e.g. "BandedRange") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "BandedRange") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateBandingRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateBandingRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateBordersRequest: Updates the borders of a range.
// If a field is not set in the request, that means the border remains
// as-is.
// For example, with two subsequent UpdateBordersRequest:
//
// 1. range: A1:A5 `{ top: RED, bottom: WHITE }`
// 2. range: A1:A5 `{ left: BLUE }`
//
// That would result in A1:A5 having a borders of
// `{ top: RED, bottom: WHITE, left: BLUE }`.
// If you want to clear a border, explicitly set the style to
// NONE.
type UpdateBordersRequest struct {
// Bottom: The border to put at the bottom of the range.
Bottom *Border `json:"bottom,omitempty"`
// InnerHorizontal: The horizontal border to put within the range.
InnerHorizontal *Border `json:"innerHorizontal,omitempty"`
// InnerVertical: The vertical border to put within the range.
InnerVertical *Border `json:"innerVertical,omitempty"`
// Left: The border to put at the left of the range.
Left *Border `json:"left,omitempty"`
// Range: The range whose borders should be updated.
Range *GridRange `json:"range,omitempty"`
// Right: The border to put at the right of the range.
Right *Border `json:"right,omitempty"`
// Top: The border to put at the top of the range.
Top *Border `json:"top,omitempty"`
// ForceSendFields is a list of field names (e.g. "Bottom") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Bottom") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateBordersRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateBordersRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateCellsRequest: Updates all cells in a range with new data.
type UpdateCellsRequest struct {
// Fields: The fields of CellData that should be updated.
// At least one field must be specified.
// The root is the CellData; 'row.values.' should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// Range: The range to write data to.
//
// If the data in rows does not cover the entire requested range,
// the fields matching those set in fields will be cleared.
Range *GridRange `json:"range,omitempty"`
// Rows: The data to write.
Rows []*RowData `json:"rows,omitempty"`
// Start: The coordinate to start writing data at.
// Any number of rows and columns (including a different number
// of
// columns per row) may be written.
Start *GridCoordinate `json:"start,omitempty"`
// ForceSendFields is a list of field names (e.g. "Fields") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Fields") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateCellsRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateCellsRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateChartSpecRequest: Updates a chart's specifications.
// (This does not move or resize a chart. To move or resize a chart,
// use
// UpdateEmbeddedObjectPositionRequest.)
type UpdateChartSpecRequest struct {
// ChartId: The ID of the chart to update.
ChartId int64 `json:"chartId,omitempty"`
// Spec: The specification to apply to the chart.
Spec *ChartSpec `json:"spec,omitempty"`
// ForceSendFields is a list of field names (e.g. "ChartId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ChartId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateChartSpecRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateChartSpecRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateConditionalFormatRuleRequest: Updates a conditional format rule
// at the given index,
// or moves a conditional format rule to another index.
type UpdateConditionalFormatRuleRequest struct {
// Index: The zero-based index of the rule that should be replaced or
// moved.
Index int64 `json:"index,omitempty"`
// NewIndex: The zero-based new index the rule should end up at.
NewIndex int64 `json:"newIndex,omitempty"`
// Rule: The rule that should replace the rule at the given index.
Rule *ConditionalFormatRule `json:"rule,omitempty"`
// SheetId: The sheet of the rule to move. Required if new_index is
// set,
// unused otherwise.
SheetId int64 `json:"sheetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "Index") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Index") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateConditionalFormatRuleRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateConditionalFormatRuleRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateConditionalFormatRuleResponse: The result of updating a
// conditional format rule.
type UpdateConditionalFormatRuleResponse struct {
// NewIndex: The index of the new rule.
NewIndex int64 `json:"newIndex,omitempty"`
// NewRule: The new rule that replaced the old rule (if replacing),
// or the rule that was moved (if moved)
NewRule *ConditionalFormatRule `json:"newRule,omitempty"`
// OldIndex: The old index of the rule. Not set if a rule was
// replaced
// (because it is the same as new_index).
OldIndex int64 `json:"oldIndex,omitempty"`
// OldRule: The old (deleted) rule. Not set if a rule was moved
// (because it is the same as new_rule).
OldRule *ConditionalFormatRule `json:"oldRule,omitempty"`
// ForceSendFields is a list of field names (e.g. "NewIndex") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "NewIndex") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateConditionalFormatRuleResponse) MarshalJSON() ([]byte, error) {
type noMethod UpdateConditionalFormatRuleResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateDimensionPropertiesRequest: Updates properties of dimensions
// within the specified range.
type UpdateDimensionPropertiesRequest struct {
// Fields: The fields that should be updated. At least one field must
// be specified.
// The root `properties` is implied and should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// Properties: Properties to update.
Properties *DimensionProperties `json:"properties,omitempty"`
// Range: The rows or columns to update.
Range *DimensionRange `json:"range,omitempty"`
// ForceSendFields is a list of field names (e.g. "Fields") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Fields") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateDimensionPropertiesRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateDimensionPropertiesRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateEmbeddedObjectPositionRequest: Update an embedded object's
// position (such as a moving or resizing a
// chart or image).
type UpdateEmbeddedObjectPositionRequest struct {
// Fields: The fields of OverlayPosition
// that should be updated when setting a new position. Used only
// if
// newPosition.overlayPosition
// is set, in which case at least one field must
// be specified. The root `newPosition.overlayPosition` is implied
// and
// should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// NewPosition: An explicit position to move the embedded object to.
// If newPosition.sheetId is set,
// a new sheet with that ID will be created.
// If newPosition.newSheet is set to true,
// a new sheet will be created with an ID that will be chosen for you.
NewPosition *EmbeddedObjectPosition `json:"newPosition,omitempty"`
// ObjectId: The ID of the object to moved.
ObjectId int64 `json:"objectId,omitempty"`
// ForceSendFields is a list of field names (e.g. "Fields") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Fields") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateEmbeddedObjectPositionRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateEmbeddedObjectPositionRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateEmbeddedObjectPositionResponse: The result of updating an
// embedded object's position.
type UpdateEmbeddedObjectPositionResponse struct {
// Position: The new position of the embedded object.
Position *EmbeddedObjectPosition `json:"position,omitempty"`
// ForceSendFields is a list of field names (e.g. "Position") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Position") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateEmbeddedObjectPositionResponse) MarshalJSON() ([]byte, error) {
type noMethod UpdateEmbeddedObjectPositionResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateFilterViewRequest: Updates properties of the filter view.
type UpdateFilterViewRequest struct {
// Fields: The fields that should be updated. At least one field must
// be specified.
// The root `filter` is implied and should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// Filter: The new properties of the filter view.
Filter *FilterView `json:"filter,omitempty"`
// ForceSendFields is a list of field names (e.g. "Fields") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Fields") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateFilterViewRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateFilterViewRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateNamedRangeRequest: Updates properties of the named range with
// the specified
// namedRangeId.
type UpdateNamedRangeRequest struct {
// Fields: The fields that should be updated. At least one field must
// be specified.
// The root `namedRange` is implied and should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// NamedRange: The named range to update with the new properties.
NamedRange *NamedRange `json:"namedRange,omitempty"`
// ForceSendFields is a list of field names (e.g. "Fields") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Fields") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateNamedRangeRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateNamedRangeRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateProtectedRangeRequest: Updates an existing protected range with
// the specified
// protectedRangeId.
type UpdateProtectedRangeRequest struct {
// Fields: The fields that should be updated. At least one field must
// be specified.
// The root `protectedRange` is implied and should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// ProtectedRange: The protected range to update with the new
// properties.
ProtectedRange *ProtectedRange `json:"protectedRange,omitempty"`
// ForceSendFields is a list of field names (e.g. "Fields") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Fields") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateProtectedRangeRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateProtectedRangeRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateSheetPropertiesRequest: Updates properties of the sheet with
// the specified
// sheetId.
type UpdateSheetPropertiesRequest struct {
// Fields: The fields that should be updated. At least one field must
// be specified.
// The root `properties` is implied and should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// Properties: The properties to update.
Properties *SheetProperties `json:"properties,omitempty"`
// ForceSendFields is a list of field names (e.g. "Fields") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Fields") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateSheetPropertiesRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateSheetPropertiesRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateSpreadsheetPropertiesRequest: Updates properties of a
// spreadsheet.
type UpdateSpreadsheetPropertiesRequest struct {
// Fields: The fields that should be updated. At least one field must
// be specified.
// The root 'properties' is implied and should not be specified.
// A single "*" can be used as short-hand for listing every field.
Fields string `json:"fields,omitempty"`
// Properties: The properties to update.
Properties *SpreadsheetProperties `json:"properties,omitempty"`
// ForceSendFields is a list of field names (e.g. "Fields") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Fields") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateSpreadsheetPropertiesRequest) MarshalJSON() ([]byte, error) {
type noMethod UpdateSpreadsheetPropertiesRequest
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UpdateValuesResponse: The response when updating a range of values in
// a spreadsheet.
type UpdateValuesResponse struct {
// SpreadsheetId: The spreadsheet the updates were applied to.
SpreadsheetId string `json:"spreadsheetId,omitempty"`
// UpdatedCells: The number of cells updated.
UpdatedCells int64 `json:"updatedCells,omitempty"`
// UpdatedColumns: The number of columns where at least one cell in the
// column was updated.
UpdatedColumns int64 `json:"updatedColumns,omitempty"`
// UpdatedData: The values of the cells after updates were applied.
// This is only included if the request's `includeValuesInResponse`
// field
// was `true`.
UpdatedData *ValueRange `json:"updatedData,omitempty"`
// UpdatedRange: The range (in A1 notation) that updates were applied
// to.
UpdatedRange string `json:"updatedRange,omitempty"`
// UpdatedRows: The number of rows where at least one cell in the row
// was updated.
UpdatedRows int64 `json:"updatedRows,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "SpreadsheetId") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "SpreadsheetId") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *UpdateValuesResponse) MarshalJSON() ([]byte, error) {
type noMethod UpdateValuesResponse
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ValueRange: Data within a range of the spreadsheet.
type ValueRange struct {
// MajorDimension: The major dimension of the values.
//
// For output, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`,
// then requesting `range=A1:B2,majorDimension=ROWS` will
// return
// `[[1,2],[3,4]]`,
// whereas requesting `range=A1:B2,majorDimension=COLUMNS` will
// return
// `[[1,3],[2,4]]`.
//
// For input, with `range=A1:B2,majorDimension=ROWS` then
// `[[1,2],[3,4]]`
// will set `A1=1,B1=2,A2=3,B2=4`. With
// `range=A1:B2,majorDimension=COLUMNS`
// then `[[1,2],[3,4]]` will set `A1=1,B1=3,A2=2,B2=4`.
//
// When writing, if this field is not set, it defaults to ROWS.
//
// Possible values:
// "DIMENSION_UNSPECIFIED" - The default value, do not use.
// "ROWS" - Operates on the rows of a sheet.
// "COLUMNS" - Operates on the columns of a sheet.
MajorDimension string `json:"majorDimension,omitempty"`
// Range: The range the values cover, in A1 notation.
// For output, this range indicates the entire requested range,
// even though the values will exclude trailing rows and columns.
// When appending values, this field represents the range to search for
// a
// table, after which values will be appended.
Range string `json:"range,omitempty"`
// Values: The data that was read or to be written. This is an array of
// arrays,
// the outer array representing all the data and each inner
// array
// representing a major dimension. Each item in the inner
// array
// corresponds with one cell.
//
// For output, empty trailing rows and columns will not be
// included.
//
// For input, supported value types are: bool, string, and double.
// Null values will be skipped.
// To set a cell to an empty value, set the string value to an empty
// string.
Values [][]interface{} `json:"values,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "MajorDimension") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "MajorDimension") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *ValueRange) MarshalJSON() ([]byte, error) {
type noMethod ValueRange
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// method id "sheets.spreadsheets.batchUpdate":
type SpreadsheetsBatchUpdateCall struct {
s *Service
spreadsheetId string
batchupdatespreadsheetrequest *BatchUpdateSpreadsheetRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// BatchUpdate: Applies one or more updates to the spreadsheet.
//
// Each request is validated before
// being applied. If any request is not valid then the entire request
// will
// fail and nothing will be applied.
//
// Some requests have replies to
// give you some information about how
// they are applied. The replies will mirror the requests. For
// example,
// if you applied 4 updates and the 3rd one had a reply, then
// the
// response will have 2 empty replies, the actual reply, and another
// empty
// reply, in that order.
//
// Due to the collaborative nature of spreadsheets, it is not guaranteed
// that
// the spreadsheet will reflect exactly your changes after this
// completes,
// however it is guaranteed that the updates in the request will
// be
// applied together atomically. Your changes may be altered with respect
// to
// collaborator changes. If there are no collaborators, the
// spreadsheet
// should reflect your changes.
func (r *SpreadsheetsService) BatchUpdate(spreadsheetId string, batchupdatespreadsheetrequest *BatchUpdateSpreadsheetRequest) *SpreadsheetsBatchUpdateCall {
c := &SpreadsheetsBatchUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
c.batchupdatespreadsheetrequest = batchupdatespreadsheetrequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsBatchUpdateCall) Fields(s ...googleapi.Field) *SpreadsheetsBatchUpdateCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsBatchUpdateCall) Context(ctx context.Context) *SpreadsheetsBatchUpdateCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsBatchUpdateCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsBatchUpdateCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.batchupdatespreadsheetrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}:batchUpdate")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.batchUpdate" call.
// Exactly one of *BatchUpdateSpreadsheetResponse or error will be
// non-nil. Any non-2xx status code is an error. Response headers are in
// either *BatchUpdateSpreadsheetResponse.ServerResponse.Header or (if a
// response was returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *SpreadsheetsBatchUpdateCall) Do(opts ...googleapi.CallOption) (*BatchUpdateSpreadsheetResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &BatchUpdateSpreadsheetResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Applies one or more updates to the spreadsheet.\n\nEach request is validated before\nbeing applied. If any request is not valid then the entire request will\nfail and nothing will be applied.\n\nSome requests have replies to\ngive you some information about how\nthey are applied. The replies will mirror the requests. For example,\nif you applied 4 updates and the 3rd one had a reply, then the\nresponse will have 2 empty replies, the actual reply, and another empty\nreply, in that order.\n\nDue to the collaborative nature of spreadsheets, it is not guaranteed that\nthe spreadsheet will reflect exactly your changes after this completes,\nhowever it is guaranteed that the updates in the request will be\napplied together atomically. Your changes may be altered with respect to\ncollaborator changes. If there are no collaborators, the spreadsheet\nshould reflect your changes.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}:batchUpdate",
// "httpMethod": "POST",
// "id": "sheets.spreadsheets.batchUpdate",
// "parameterOrder": [
// "spreadsheetId"
// ],
// "parameters": {
// "spreadsheetId": {
// "description": "The spreadsheet to apply the updates to.",
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}:batchUpdate",
// "request": {
// "$ref": "BatchUpdateSpreadsheetRequest"
// },
// "response": {
// "$ref": "BatchUpdateSpreadsheetResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/spreadsheets"
// ]
// }
}
// method id "sheets.spreadsheets.create":
type SpreadsheetsCreateCall struct {
s *Service
spreadsheet *Spreadsheet
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// Create: Creates a spreadsheet, returning the newly created
// spreadsheet.
func (r *SpreadsheetsService) Create(spreadsheet *Spreadsheet) *SpreadsheetsCreateCall {
c := &SpreadsheetsCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheet = spreadsheet
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsCreateCall) Fields(s ...googleapi.Field) *SpreadsheetsCreateCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsCreateCall) Context(ctx context.Context) *SpreadsheetsCreateCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsCreateCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsCreateCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.spreadsheet)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.create" call.
// Exactly one of *Spreadsheet or error will be non-nil. Any non-2xx
// status code is an error. Response headers are in either
// *Spreadsheet.ServerResponse.Header or (if a response was returned at
// all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified
// to check whether the returned error was because
// http.StatusNotModified was returned.
func (c *SpreadsheetsCreateCall) Do(opts ...googleapi.CallOption) (*Spreadsheet, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &Spreadsheet{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Creates a spreadsheet, returning the newly created spreadsheet.",
// "flatPath": "v4/spreadsheets",
// "httpMethod": "POST",
// "id": "sheets.spreadsheets.create",
// "parameterOrder": [],
// "parameters": {},
// "path": "v4/spreadsheets",
// "request": {
// "$ref": "Spreadsheet"
// },
// "response": {
// "$ref": "Spreadsheet"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/spreadsheets"
// ]
// }
}
// method id "sheets.spreadsheets.get":
type SpreadsheetsGetCall struct {
s *Service
spreadsheetId string
urlParams_ gensupport.URLParams
ifNoneMatch_ string
ctx_ context.Context
header_ http.Header
}
// Get: Returns the spreadsheet at the given ID.
// The caller must specify the spreadsheet ID.
//
// By default, data within grids will not be returned.
// You can include grid data one of two ways:
//
// * Specify a field mask listing your desired fields using the `fields`
// URL
// parameter in HTTP
//
// * Set the includeGridData
// URL parameter to true. If a field mask is set, the
// `includeGridData`
// parameter is ignored
//
// For large spreadsheets, it is recommended to retrieve only the
// specific
// fields of the spreadsheet that you want.
//
// To retrieve only subsets of the spreadsheet, use the
// ranges URL parameter.
// Multiple ranges can be specified. Limiting the range will
// return only the portions of the spreadsheet that intersect the
// requested
// ranges. Ranges are specified using A1 notation.
func (r *SpreadsheetsService) Get(spreadsheetId string) *SpreadsheetsGetCall {
c := &SpreadsheetsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
return c
}
// IncludeGridData sets the optional parameter "includeGridData": True
// if grid data should be returned.
// This parameter is ignored if a field mask was set in the request.
func (c *SpreadsheetsGetCall) IncludeGridData(includeGridData bool) *SpreadsheetsGetCall {
c.urlParams_.Set("includeGridData", fmt.Sprint(includeGridData))
return c
}
// Ranges sets the optional parameter "ranges": The ranges to retrieve
// from the spreadsheet.
func (c *SpreadsheetsGetCall) Ranges(ranges ...string) *SpreadsheetsGetCall {
c.urlParams_.SetMulti("ranges", append([]string{}, ranges...))
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsGetCall) Fields(s ...googleapi.Field) *SpreadsheetsGetCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// IfNoneMatch sets the optional parameter which makes the operation
// fail if the object's ETag matches the given value. This is useful for
// getting updates only after the object has changed since the last
// request. Use googleapi.IsNotModified to check whether the response
// error from Do is the result of In-None-Match.
func (c *SpreadsheetsGetCall) IfNoneMatch(entityTag string) *SpreadsheetsGetCall {
c.ifNoneMatch_ = entityTag
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsGetCall) Context(ctx context.Context) *SpreadsheetsGetCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsGetCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsGetCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
if c.ifNoneMatch_ != "" {
reqHeaders.Set("If-None-Match", c.ifNoneMatch_)
}
var body io.Reader = nil
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("GET", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.get" call.
// Exactly one of *Spreadsheet or error will be non-nil. Any non-2xx
// status code is an error. Response headers are in either
// *Spreadsheet.ServerResponse.Header or (if a response was returned at
// all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified
// to check whether the returned error was because
// http.StatusNotModified was returned.
func (c *SpreadsheetsGetCall) Do(opts ...googleapi.CallOption) (*Spreadsheet, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &Spreadsheet{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Returns the spreadsheet at the given ID.\nThe caller must specify the spreadsheet ID.\n\nBy default, data within grids will not be returned.\nYou can include grid data one of two ways:\n\n* Specify a field mask listing your desired fields using the `fields` URL\nparameter in HTTP\n\n* Set the includeGridData\nURL parameter to true. If a field mask is set, the `includeGridData`\nparameter is ignored\n\nFor large spreadsheets, it is recommended to retrieve only the specific\nfields of the spreadsheet that you want.\n\nTo retrieve only subsets of the spreadsheet, use the\nranges URL parameter.\nMultiple ranges can be specified. Limiting the range will\nreturn only the portions of the spreadsheet that intersect the requested\nranges. Ranges are specified using A1 notation.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}",
// "httpMethod": "GET",
// "id": "sheets.spreadsheets.get",
// "parameterOrder": [
// "spreadsheetId"
// ],
// "parameters": {
// "includeGridData": {
// "description": "True if grid data should be returned.\nThis parameter is ignored if a field mask was set in the request.",
// "location": "query",
// "type": "boolean"
// },
// "ranges": {
// "description": "The ranges to retrieve from the spreadsheet.",
// "location": "query",
// "repeated": true,
// "type": "string"
// },
// "spreadsheetId": {
// "description": "The spreadsheet to request.",
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}",
// "response": {
// "$ref": "Spreadsheet"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/drive.readonly",
// "https://www.googleapis.com/auth/spreadsheets",
// "https://www.googleapis.com/auth/spreadsheets.readonly"
// ]
// }
}
// method id "sheets.spreadsheets.sheets.copyTo":
type SpreadsheetsSheetsCopyToCall struct {
s *Service
spreadsheetId string
sheetId int64
copysheettoanotherspreadsheetrequest *CopySheetToAnotherSpreadsheetRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// CopyTo: Copies a single sheet from a spreadsheet to another
// spreadsheet.
// Returns the properties of the newly created sheet.
func (r *SpreadsheetsSheetsService) CopyTo(spreadsheetId string, sheetId int64, copysheettoanotherspreadsheetrequest *CopySheetToAnotherSpreadsheetRequest) *SpreadsheetsSheetsCopyToCall {
c := &SpreadsheetsSheetsCopyToCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
c.sheetId = sheetId
c.copysheettoanotherspreadsheetrequest = copysheettoanotherspreadsheetrequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsSheetsCopyToCall) Fields(s ...googleapi.Field) *SpreadsheetsSheetsCopyToCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsSheetsCopyToCall) Context(ctx context.Context) *SpreadsheetsSheetsCopyToCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsSheetsCopyToCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsSheetsCopyToCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.copysheettoanotherspreadsheetrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/sheets/{sheetId}:copyTo")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
"sheetId": strconv.FormatInt(c.sheetId, 10),
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.sheets.copyTo" call.
// Exactly one of *SheetProperties or error will be non-nil. Any non-2xx
// status code is an error. Response headers are in either
// *SheetProperties.ServerResponse.Header or (if a response was returned
// at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *SpreadsheetsSheetsCopyToCall) Do(opts ...googleapi.CallOption) (*SheetProperties, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &SheetProperties{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Copies a single sheet from a spreadsheet to another spreadsheet.\nReturns the properties of the newly created sheet.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}/sheets/{sheetId}:copyTo",
// "httpMethod": "POST",
// "id": "sheets.spreadsheets.sheets.copyTo",
// "parameterOrder": [
// "spreadsheetId",
// "sheetId"
// ],
// "parameters": {
// "sheetId": {
// "description": "The ID of the sheet to copy.",
// "format": "int32",
// "location": "path",
// "required": true,
// "type": "integer"
// },
// "spreadsheetId": {
// "description": "The ID of the spreadsheet containing the sheet to copy.",
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}/sheets/{sheetId}:copyTo",
// "request": {
// "$ref": "CopySheetToAnotherSpreadsheetRequest"
// },
// "response": {
// "$ref": "SheetProperties"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/spreadsheets"
// ]
// }
}
// method id "sheets.spreadsheets.values.append":
type SpreadsheetsValuesAppendCall struct {
s *Service
spreadsheetId string
range_ string
valuerange *ValueRange
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// Append: Appends values to a spreadsheet. The input range is used to
// search for
// existing data and find a "table" within that range. Values will
// be
// appended to the next row of the table, starting with the first column
// of
// the table. See
// the
// [guide](/sheets/guides/values#appending_values)
// and
// [sample code](/sheets/samples/writing#append_values)
// for specific details of how tables are detected and data is
// appended.
//
// The caller must specify the spreadsheet ID, range, and
// a valueInputOption. The `valueInputOption` only
// controls how the input data will be added to the sheet (column-wise
// or
// row-wise), it does not influence what cell the data starts being
// written
// to.
func (r *SpreadsheetsValuesService) Append(spreadsheetId string, range_ string, valuerange *ValueRange) *SpreadsheetsValuesAppendCall {
c := &SpreadsheetsValuesAppendCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
c.range_ = range_
c.valuerange = valuerange
return c
}
// IncludeValuesInResponse sets the optional parameter
// "includeValuesInResponse": Determines if the update response should
// include the values
// of the cells that were appended. By default, responses
// do not include the updated values.
func (c *SpreadsheetsValuesAppendCall) IncludeValuesInResponse(includeValuesInResponse bool) *SpreadsheetsValuesAppendCall {
c.urlParams_.Set("includeValuesInResponse", fmt.Sprint(includeValuesInResponse))
return c
}
// InsertDataOption sets the optional parameter "insertDataOption": How
// the input data should be inserted.
//
// Possible values:
// "OVERWRITE"
// "INSERT_ROWS"
func (c *SpreadsheetsValuesAppendCall) InsertDataOption(insertDataOption string) *SpreadsheetsValuesAppendCall {
c.urlParams_.Set("insertDataOption", insertDataOption)
return c
}
// ResponseDateTimeRenderOption sets the optional parameter
// "responseDateTimeRenderOption": Determines how dates, times, and
// durations in the response should be
// rendered. This is ignored if response_value_render_option
// is
// FORMATTED_VALUE.
// The default dateTime render option is
// [DateTimeRenderOption.SERIAL_NUMBER].
//
// Possible values:
// "SERIAL_NUMBER"
// "FORMATTED_STRING"
func (c *SpreadsheetsValuesAppendCall) ResponseDateTimeRenderOption(responseDateTimeRenderOption string) *SpreadsheetsValuesAppendCall {
c.urlParams_.Set("responseDateTimeRenderOption", responseDateTimeRenderOption)
return c
}
// ResponseValueRenderOption sets the optional parameter
// "responseValueRenderOption": Determines how values in the response
// should be rendered.
// The default render option is ValueRenderOption.FORMATTED_VALUE.
//
// Possible values:
// "FORMATTED_VALUE"
// "UNFORMATTED_VALUE"
// "FORMULA"
func (c *SpreadsheetsValuesAppendCall) ResponseValueRenderOption(responseValueRenderOption string) *SpreadsheetsValuesAppendCall {
c.urlParams_.Set("responseValueRenderOption", responseValueRenderOption)
return c
}
// ValueInputOption sets the optional parameter "valueInputOption": How
// the input data should be interpreted.
//
// Possible values:
// "INPUT_VALUE_OPTION_UNSPECIFIED"
// "RAW"
// "USER_ENTERED"
func (c *SpreadsheetsValuesAppendCall) ValueInputOption(valueInputOption string) *SpreadsheetsValuesAppendCall {
c.urlParams_.Set("valueInputOption", valueInputOption)
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsValuesAppendCall) Fields(s ...googleapi.Field) *SpreadsheetsValuesAppendCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsValuesAppendCall) Context(ctx context.Context) *SpreadsheetsValuesAppendCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsValuesAppendCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsValuesAppendCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.valuerange)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values/{range}:append")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
"range": c.range_,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.values.append" call.
// Exactly one of *AppendValuesResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *AppendValuesResponse.ServerResponse.Header or (if a response was
// returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *SpreadsheetsValuesAppendCall) Do(opts ...googleapi.CallOption) (*AppendValuesResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &AppendValuesResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Appends values to a spreadsheet. The input range is used to search for\nexisting data and find a \"table\" within that range. Values will be\nappended to the next row of the table, starting with the first column of\nthe table. See the\n[guide](/sheets/guides/values#appending_values)\nand\n[sample code](/sheets/samples/writing#append_values)\nfor specific details of how tables are detected and data is appended.\n\nThe caller must specify the spreadsheet ID, range, and\na valueInputOption. The `valueInputOption` only\ncontrols how the input data will be added to the sheet (column-wise or\nrow-wise), it does not influence what cell the data starts being written\nto.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}/values/{range}:append",
// "httpMethod": "POST",
// "id": "sheets.spreadsheets.values.append",
// "parameterOrder": [
// "spreadsheetId",
// "range"
// ],
// "parameters": {
// "includeValuesInResponse": {
// "description": "Determines if the update response should include the values\nof the cells that were appended. By default, responses\ndo not include the updated values.",
// "location": "query",
// "type": "boolean"
// },
// "insertDataOption": {
// "description": "How the input data should be inserted.",
// "enum": [
// "OVERWRITE",
// "INSERT_ROWS"
// ],
// "location": "query",
// "type": "string"
// },
// "range": {
// "description": "The A1 notation of a range to search for a logical table of data.\nValues will be appended after the last row of the table.",
// "location": "path",
// "required": true,
// "type": "string"
// },
// "responseDateTimeRenderOption": {
// "description": "Determines how dates, times, and durations in the response should be\nrendered. This is ignored if response_value_render_option is\nFORMATTED_VALUE.\nThe default dateTime render option is [DateTimeRenderOption.SERIAL_NUMBER].",
// "enum": [
// "SERIAL_NUMBER",
// "FORMATTED_STRING"
// ],
// "location": "query",
// "type": "string"
// },
// "responseValueRenderOption": {
// "description": "Determines how values in the response should be rendered.\nThe default render option is ValueRenderOption.FORMATTED_VALUE.",
// "enum": [
// "FORMATTED_VALUE",
// "UNFORMATTED_VALUE",
// "FORMULA"
// ],
// "location": "query",
// "type": "string"
// },
// "spreadsheetId": {
// "description": "The ID of the spreadsheet to update.",
// "location": "path",
// "required": true,
// "type": "string"
// },
// "valueInputOption": {
// "description": "How the input data should be interpreted.",
// "enum": [
// "INPUT_VALUE_OPTION_UNSPECIFIED",
// "RAW",
// "USER_ENTERED"
// ],
// "location": "query",
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}/values/{range}:append",
// "request": {
// "$ref": "ValueRange"
// },
// "response": {
// "$ref": "AppendValuesResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/spreadsheets"
// ]
// }
}
// method id "sheets.spreadsheets.values.batchClear":
type SpreadsheetsValuesBatchClearCall struct {
s *Service
spreadsheetId string
batchclearvaluesrequest *BatchClearValuesRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// BatchClear: Clears one or more ranges of values from a
// spreadsheet.
// The caller must specify the spreadsheet ID and one or more
// ranges.
// Only values are cleared -- all other properties of the cell (such
// as
// formatting, data validation, etc..) are kept.
func (r *SpreadsheetsValuesService) BatchClear(spreadsheetId string, batchclearvaluesrequest *BatchClearValuesRequest) *SpreadsheetsValuesBatchClearCall {
c := &SpreadsheetsValuesBatchClearCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
c.batchclearvaluesrequest = batchclearvaluesrequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsValuesBatchClearCall) Fields(s ...googleapi.Field) *SpreadsheetsValuesBatchClearCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsValuesBatchClearCall) Context(ctx context.Context) *SpreadsheetsValuesBatchClearCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsValuesBatchClearCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsValuesBatchClearCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.batchclearvaluesrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values:batchClear")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.values.batchClear" call.
// Exactly one of *BatchClearValuesResponse or error will be non-nil.
// Any non-2xx status code is an error. Response headers are in either
// *BatchClearValuesResponse.ServerResponse.Header or (if a response was
// returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *SpreadsheetsValuesBatchClearCall) Do(opts ...googleapi.CallOption) (*BatchClearValuesResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &BatchClearValuesResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Clears one or more ranges of values from a spreadsheet.\nThe caller must specify the spreadsheet ID and one or more ranges.\nOnly values are cleared -- all other properties of the cell (such as\nformatting, data validation, etc..) are kept.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchClear",
// "httpMethod": "POST",
// "id": "sheets.spreadsheets.values.batchClear",
// "parameterOrder": [
// "spreadsheetId"
// ],
// "parameters": {
// "spreadsheetId": {
// "description": "The ID of the spreadsheet to update.",
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}/values:batchClear",
// "request": {
// "$ref": "BatchClearValuesRequest"
// },
// "response": {
// "$ref": "BatchClearValuesResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/spreadsheets"
// ]
// }
}
// method id "sheets.spreadsheets.values.batchGet":
type SpreadsheetsValuesBatchGetCall struct {
s *Service
spreadsheetId string
urlParams_ gensupport.URLParams
ifNoneMatch_ string
ctx_ context.Context
header_ http.Header
}
// BatchGet: Returns one or more ranges of values from a
// spreadsheet.
// The caller must specify the spreadsheet ID and one or more ranges.
func (r *SpreadsheetsValuesService) BatchGet(spreadsheetId string) *SpreadsheetsValuesBatchGetCall {
c := &SpreadsheetsValuesBatchGetCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
return c
}
// DateTimeRenderOption sets the optional parameter
// "dateTimeRenderOption": How dates, times, and durations should be
// represented in the output.
// This is ignored if value_render_option is
// FORMATTED_VALUE.
// The default dateTime render option is
// [DateTimeRenderOption.SERIAL_NUMBER].
//
// Possible values:
// "SERIAL_NUMBER"
// "FORMATTED_STRING"
func (c *SpreadsheetsValuesBatchGetCall) DateTimeRenderOption(dateTimeRenderOption string) *SpreadsheetsValuesBatchGetCall {
c.urlParams_.Set("dateTimeRenderOption", dateTimeRenderOption)
return c
}
// MajorDimension sets the optional parameter "majorDimension": The
// major dimension that results should use.
//
// For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`,
// then requesting `range=A1:B2,majorDimension=ROWS` will
// return
// `[[1,2],[3,4]]`,
// whereas requesting `range=A1:B2,majorDimension=COLUMNS` will
// return
// `[[1,3],[2,4]]`.
//
// Possible values:
// "DIMENSION_UNSPECIFIED"
// "ROWS"
// "COLUMNS"
func (c *SpreadsheetsValuesBatchGetCall) MajorDimension(majorDimension string) *SpreadsheetsValuesBatchGetCall {
c.urlParams_.Set("majorDimension", majorDimension)
return c
}
// Ranges sets the optional parameter "ranges": The A1 notation of the
// values to retrieve.
func (c *SpreadsheetsValuesBatchGetCall) Ranges(ranges ...string) *SpreadsheetsValuesBatchGetCall {
c.urlParams_.SetMulti("ranges", append([]string{}, ranges...))
return c
}
// ValueRenderOption sets the optional parameter "valueRenderOption":
// How values should be represented in the output.
// The default render option is ValueRenderOption.FORMATTED_VALUE.
//
// Possible values:
// "FORMATTED_VALUE"
// "UNFORMATTED_VALUE"
// "FORMULA"
func (c *SpreadsheetsValuesBatchGetCall) ValueRenderOption(valueRenderOption string) *SpreadsheetsValuesBatchGetCall {
c.urlParams_.Set("valueRenderOption", valueRenderOption)
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsValuesBatchGetCall) Fields(s ...googleapi.Field) *SpreadsheetsValuesBatchGetCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// IfNoneMatch sets the optional parameter which makes the operation
// fail if the object's ETag matches the given value. This is useful for
// getting updates only after the object has changed since the last
// request. Use googleapi.IsNotModified to check whether the response
// error from Do is the result of In-None-Match.
func (c *SpreadsheetsValuesBatchGetCall) IfNoneMatch(entityTag string) *SpreadsheetsValuesBatchGetCall {
c.ifNoneMatch_ = entityTag
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsValuesBatchGetCall) Context(ctx context.Context) *SpreadsheetsValuesBatchGetCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsValuesBatchGetCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsValuesBatchGetCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
if c.ifNoneMatch_ != "" {
reqHeaders.Set("If-None-Match", c.ifNoneMatch_)
}
var body io.Reader = nil
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values:batchGet")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("GET", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.values.batchGet" call.
// Exactly one of *BatchGetValuesResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *BatchGetValuesResponse.ServerResponse.Header or (if a response was
// returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *SpreadsheetsValuesBatchGetCall) Do(opts ...googleapi.CallOption) (*BatchGetValuesResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &BatchGetValuesResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Returns one or more ranges of values from a spreadsheet.\nThe caller must specify the spreadsheet ID and one or more ranges.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchGet",
// "httpMethod": "GET",
// "id": "sheets.spreadsheets.values.batchGet",
// "parameterOrder": [
// "spreadsheetId"
// ],
// "parameters": {
// "dateTimeRenderOption": {
// "description": "How dates, times, and durations should be represented in the output.\nThis is ignored if value_render_option is\nFORMATTED_VALUE.\nThe default dateTime render option is [DateTimeRenderOption.SERIAL_NUMBER].",
// "enum": [
// "SERIAL_NUMBER",
// "FORMATTED_STRING"
// ],
// "location": "query",
// "type": "string"
// },
// "majorDimension": {
// "description": "The major dimension that results should use.\n\nFor example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`,\nthen requesting `range=A1:B2,majorDimension=ROWS` will return\n`[[1,2],[3,4]]`,\nwhereas requesting `range=A1:B2,majorDimension=COLUMNS` will return\n`[[1,3],[2,4]]`.",
// "enum": [
// "DIMENSION_UNSPECIFIED",
// "ROWS",
// "COLUMNS"
// ],
// "location": "query",
// "type": "string"
// },
// "ranges": {
// "description": "The A1 notation of the values to retrieve.",
// "location": "query",
// "repeated": true,
// "type": "string"
// },
// "spreadsheetId": {
// "description": "The ID of the spreadsheet to retrieve data from.",
// "location": "path",
// "required": true,
// "type": "string"
// },
// "valueRenderOption": {
// "description": "How values should be represented in the output.\nThe default render option is ValueRenderOption.FORMATTED_VALUE.",
// "enum": [
// "FORMATTED_VALUE",
// "UNFORMATTED_VALUE",
// "FORMULA"
// ],
// "location": "query",
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}/values:batchGet",
// "response": {
// "$ref": "BatchGetValuesResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/drive.readonly",
// "https://www.googleapis.com/auth/spreadsheets",
// "https://www.googleapis.com/auth/spreadsheets.readonly"
// ]
// }
}
// method id "sheets.spreadsheets.values.batchUpdate":
type SpreadsheetsValuesBatchUpdateCall struct {
s *Service
spreadsheetId string
batchupdatevaluesrequest *BatchUpdateValuesRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// BatchUpdate: Sets values in one or more ranges of a spreadsheet.
// The caller must specify the spreadsheet ID,
// a valueInputOption, and one or more
// ValueRanges.
func (r *SpreadsheetsValuesService) BatchUpdate(spreadsheetId string, batchupdatevaluesrequest *BatchUpdateValuesRequest) *SpreadsheetsValuesBatchUpdateCall {
c := &SpreadsheetsValuesBatchUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
c.batchupdatevaluesrequest = batchupdatevaluesrequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsValuesBatchUpdateCall) Fields(s ...googleapi.Field) *SpreadsheetsValuesBatchUpdateCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsValuesBatchUpdateCall) Context(ctx context.Context) *SpreadsheetsValuesBatchUpdateCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsValuesBatchUpdateCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsValuesBatchUpdateCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.batchupdatevaluesrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values:batchUpdate")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.values.batchUpdate" call.
// Exactly one of *BatchUpdateValuesResponse or error will be non-nil.
// Any non-2xx status code is an error. Response headers are in either
// *BatchUpdateValuesResponse.ServerResponse.Header or (if a response
// was returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *SpreadsheetsValuesBatchUpdateCall) Do(opts ...googleapi.CallOption) (*BatchUpdateValuesResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &BatchUpdateValuesResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Sets values in one or more ranges of a spreadsheet.\nThe caller must specify the spreadsheet ID,\na valueInputOption, and one or more\nValueRanges.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchUpdate",
// "httpMethod": "POST",
// "id": "sheets.spreadsheets.values.batchUpdate",
// "parameterOrder": [
// "spreadsheetId"
// ],
// "parameters": {
// "spreadsheetId": {
// "description": "The ID of the spreadsheet to update.",
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}/values:batchUpdate",
// "request": {
// "$ref": "BatchUpdateValuesRequest"
// },
// "response": {
// "$ref": "BatchUpdateValuesResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/spreadsheets"
// ]
// }
}
// method id "sheets.spreadsheets.values.clear":
type SpreadsheetsValuesClearCall struct {
s *Service
spreadsheetId string
range_ string
clearvaluesrequest *ClearValuesRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// Clear: Clears values from a spreadsheet.
// The caller must specify the spreadsheet ID and range.
// Only values are cleared -- all other properties of the cell (such
// as
// formatting, data validation, etc..) are kept.
func (r *SpreadsheetsValuesService) Clear(spreadsheetId string, range_ string, clearvaluesrequest *ClearValuesRequest) *SpreadsheetsValuesClearCall {
c := &SpreadsheetsValuesClearCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
c.range_ = range_
c.clearvaluesrequest = clearvaluesrequest
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsValuesClearCall) Fields(s ...googleapi.Field) *SpreadsheetsValuesClearCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsValuesClearCall) Context(ctx context.Context) *SpreadsheetsValuesClearCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsValuesClearCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsValuesClearCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.clearvaluesrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values/{range}:clear")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("POST", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
"range": c.range_,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.values.clear" call.
// Exactly one of *ClearValuesResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *ClearValuesResponse.ServerResponse.Header or (if a response was
// returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *SpreadsheetsValuesClearCall) Do(opts ...googleapi.CallOption) (*ClearValuesResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &ClearValuesResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Clears values from a spreadsheet.\nThe caller must specify the spreadsheet ID and range.\nOnly values are cleared -- all other properties of the cell (such as\nformatting, data validation, etc..) are kept.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}/values/{range}:clear",
// "httpMethod": "POST",
// "id": "sheets.spreadsheets.values.clear",
// "parameterOrder": [
// "spreadsheetId",
// "range"
// ],
// "parameters": {
// "range": {
// "description": "The A1 notation of the values to clear.",
// "location": "path",
// "required": true,
// "type": "string"
// },
// "spreadsheetId": {
// "description": "The ID of the spreadsheet to update.",
// "location": "path",
// "required": true,
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}/values/{range}:clear",
// "request": {
// "$ref": "ClearValuesRequest"
// },
// "response": {
// "$ref": "ClearValuesResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/spreadsheets"
// ]
// }
}
// method id "sheets.spreadsheets.values.get":
type SpreadsheetsValuesGetCall struct {
s *Service
spreadsheetId string
range_ string
urlParams_ gensupport.URLParams
ifNoneMatch_ string
ctx_ context.Context
header_ http.Header
}
// Get: Returns a range of values from a spreadsheet.
// The caller must specify the spreadsheet ID and a range.
func (r *SpreadsheetsValuesService) Get(spreadsheetId string, range_ string) *SpreadsheetsValuesGetCall {
c := &SpreadsheetsValuesGetCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
c.range_ = range_
return c
}
// DateTimeRenderOption sets the optional parameter
// "dateTimeRenderOption": How dates, times, and durations should be
// represented in the output.
// This is ignored if value_render_option is
// FORMATTED_VALUE.
// The default dateTime render option is
// [DateTimeRenderOption.SERIAL_NUMBER].
//
// Possible values:
// "SERIAL_NUMBER"
// "FORMATTED_STRING"
func (c *SpreadsheetsValuesGetCall) DateTimeRenderOption(dateTimeRenderOption string) *SpreadsheetsValuesGetCall {
c.urlParams_.Set("dateTimeRenderOption", dateTimeRenderOption)
return c
}
// MajorDimension sets the optional parameter "majorDimension": The
// major dimension that results should use.
//
// For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`,
// then requesting `range=A1:B2,majorDimension=ROWS` will
// return
// `[[1,2],[3,4]]`,
// whereas requesting `range=A1:B2,majorDimension=COLUMNS` will
// return
// `[[1,3],[2,4]]`.
//
// Possible values:
// "DIMENSION_UNSPECIFIED"
// "ROWS"
// "COLUMNS"
func (c *SpreadsheetsValuesGetCall) MajorDimension(majorDimension string) *SpreadsheetsValuesGetCall {
c.urlParams_.Set("majorDimension", majorDimension)
return c
}
// ValueRenderOption sets the optional parameter "valueRenderOption":
// How values should be represented in the output.
// The default render option is ValueRenderOption.FORMATTED_VALUE.
//
// Possible values:
// "FORMATTED_VALUE"
// "UNFORMATTED_VALUE"
// "FORMULA"
func (c *SpreadsheetsValuesGetCall) ValueRenderOption(valueRenderOption string) *SpreadsheetsValuesGetCall {
c.urlParams_.Set("valueRenderOption", valueRenderOption)
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsValuesGetCall) Fields(s ...googleapi.Field) *SpreadsheetsValuesGetCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// IfNoneMatch sets the optional parameter which makes the operation
// fail if the object's ETag matches the given value. This is useful for
// getting updates only after the object has changed since the last
// request. Use googleapi.IsNotModified to check whether the response
// error from Do is the result of In-None-Match.
func (c *SpreadsheetsValuesGetCall) IfNoneMatch(entityTag string) *SpreadsheetsValuesGetCall {
c.ifNoneMatch_ = entityTag
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsValuesGetCall) Context(ctx context.Context) *SpreadsheetsValuesGetCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsValuesGetCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsValuesGetCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
if c.ifNoneMatch_ != "" {
reqHeaders.Set("If-None-Match", c.ifNoneMatch_)
}
var body io.Reader = nil
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values/{range}")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("GET", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
"range": c.range_,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.values.get" call.
// Exactly one of *ValueRange or error will be non-nil. Any non-2xx
// status code is an error. Response headers are in either
// *ValueRange.ServerResponse.Header or (if a response was returned at
// all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified
// to check whether the returned error was because
// http.StatusNotModified was returned.
func (c *SpreadsheetsValuesGetCall) Do(opts ...googleapi.CallOption) (*ValueRange, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &ValueRange{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Returns a range of values from a spreadsheet.\nThe caller must specify the spreadsheet ID and a range.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}/values/{range}",
// "httpMethod": "GET",
// "id": "sheets.spreadsheets.values.get",
// "parameterOrder": [
// "spreadsheetId",
// "range"
// ],
// "parameters": {
// "dateTimeRenderOption": {
// "description": "How dates, times, and durations should be represented in the output.\nThis is ignored if value_render_option is\nFORMATTED_VALUE.\nThe default dateTime render option is [DateTimeRenderOption.SERIAL_NUMBER].",
// "enum": [
// "SERIAL_NUMBER",
// "FORMATTED_STRING"
// ],
// "location": "query",
// "type": "string"
// },
// "majorDimension": {
// "description": "The major dimension that results should use.\n\nFor example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`,\nthen requesting `range=A1:B2,majorDimension=ROWS` will return\n`[[1,2],[3,4]]`,\nwhereas requesting `range=A1:B2,majorDimension=COLUMNS` will return\n`[[1,3],[2,4]]`.",
// "enum": [
// "DIMENSION_UNSPECIFIED",
// "ROWS",
// "COLUMNS"
// ],
// "location": "query",
// "type": "string"
// },
// "range": {
// "description": "The A1 notation of the values to retrieve.",
// "location": "path",
// "required": true,
// "type": "string"
// },
// "spreadsheetId": {
// "description": "The ID of the spreadsheet to retrieve data from.",
// "location": "path",
// "required": true,
// "type": "string"
// },
// "valueRenderOption": {
// "description": "How values should be represented in the output.\nThe default render option is ValueRenderOption.FORMATTED_VALUE.",
// "enum": [
// "FORMATTED_VALUE",
// "UNFORMATTED_VALUE",
// "FORMULA"
// ],
// "location": "query",
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}/values/{range}",
// "response": {
// "$ref": "ValueRange"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/drive.readonly",
// "https://www.googleapis.com/auth/spreadsheets",
// "https://www.googleapis.com/auth/spreadsheets.readonly"
// ]
// }
}
// method id "sheets.spreadsheets.values.update":
type SpreadsheetsValuesUpdateCall struct {
s *Service
spreadsheetId string
range_ string
valuerange *ValueRange
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// Update: Sets values in a range of a spreadsheet.
// The caller must specify the spreadsheet ID, range, and
// a valueInputOption.
func (r *SpreadsheetsValuesService) Update(spreadsheetId string, range_ string, valuerange *ValueRange) *SpreadsheetsValuesUpdateCall {
c := &SpreadsheetsValuesUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.spreadsheetId = spreadsheetId
c.range_ = range_
c.valuerange = valuerange
return c
}
// IncludeValuesInResponse sets the optional parameter
// "includeValuesInResponse": Determines if the update response should
// include the values
// of the cells that were updated. By default, responses
// do not include the updated values.
// If the range to write was larger than than the range actually
// written,
// the response will include all values in the requested range
// (excluding
// trailing empty rows and columns).
func (c *SpreadsheetsValuesUpdateCall) IncludeValuesInResponse(includeValuesInResponse bool) *SpreadsheetsValuesUpdateCall {
c.urlParams_.Set("includeValuesInResponse", fmt.Sprint(includeValuesInResponse))
return c
}
// ResponseDateTimeRenderOption sets the optional parameter
// "responseDateTimeRenderOption": Determines how dates, times, and
// durations in the response should be
// rendered. This is ignored if response_value_render_option
// is
// FORMATTED_VALUE.
// The default dateTime render option is
// [DateTimeRenderOption.SERIAL_NUMBER].
//
// Possible values:
// "SERIAL_NUMBER"
// "FORMATTED_STRING"
func (c *SpreadsheetsValuesUpdateCall) ResponseDateTimeRenderOption(responseDateTimeRenderOption string) *SpreadsheetsValuesUpdateCall {
c.urlParams_.Set("responseDateTimeRenderOption", responseDateTimeRenderOption)
return c
}
// ResponseValueRenderOption sets the optional parameter
// "responseValueRenderOption": Determines how values in the response
// should be rendered.
// The default render option is ValueRenderOption.FORMATTED_VALUE.
//
// Possible values:
// "FORMATTED_VALUE"
// "UNFORMATTED_VALUE"
// "FORMULA"
func (c *SpreadsheetsValuesUpdateCall) ResponseValueRenderOption(responseValueRenderOption string) *SpreadsheetsValuesUpdateCall {
c.urlParams_.Set("responseValueRenderOption", responseValueRenderOption)
return c
}
// ValueInputOption sets the optional parameter "valueInputOption": How
// the input data should be interpreted.
//
// Possible values:
// "INPUT_VALUE_OPTION_UNSPECIFIED"
// "RAW"
// "USER_ENTERED"
func (c *SpreadsheetsValuesUpdateCall) ValueInputOption(valueInputOption string) *SpreadsheetsValuesUpdateCall {
c.urlParams_.Set("valueInputOption", valueInputOption)
return c
}
// Fields allows partial responses to be retrieved. See
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *SpreadsheetsValuesUpdateCall) Fields(s ...googleapi.Field) *SpreadsheetsValuesUpdateCall {
c.urlParams_.Set("fields", googleapi.CombineFields(s))
return c
}
// Context sets the context to be used in this call's Do method. Any
// pending HTTP request will be aborted if the provided context is
// canceled.
func (c *SpreadsheetsValuesUpdateCall) Context(ctx context.Context) *SpreadsheetsValuesUpdateCall {
c.ctx_ = ctx
return c
}
// Header returns an http.Header that can be modified by the caller to
// add HTTP headers to the request.
func (c *SpreadsheetsValuesUpdateCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *SpreadsheetsValuesUpdateCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
for k, v := range c.header_ {
reqHeaders[k] = v
}
reqHeaders.Set("User-Agent", c.s.userAgent())
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.valuerange)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
urls := googleapi.ResolveRelative(c.s.BasePath, "v4/spreadsheets/{spreadsheetId}/values/{range}")
urls += "?" + c.urlParams_.Encode()
req, _ := http.NewRequest("PUT", urls, body)
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"spreadsheetId": c.spreadsheetId,
"range": c.range_,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "sheets.spreadsheets.values.update" call.
// Exactly one of *UpdateValuesResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *UpdateValuesResponse.ServerResponse.Header or (if a response was
// returned at all) in error.(*googleapi.Error).Header. Use
// googleapi.IsNotModified to check whether the returned error was
// because http.StatusNotModified was returned.
func (c *SpreadsheetsValuesUpdateCall) Do(opts ...googleapi.CallOption) (*UpdateValuesResponse, error) {
gensupport.SetOptions(c.urlParams_, opts...)
res, err := c.doRequest("json")
if res != nil && res.StatusCode == http.StatusNotModified {
if res.Body != nil {
res.Body.Close()
}
return nil, &googleapi.Error{
Code: res.StatusCode,
Header: res.Header,
}
}
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
ret := &UpdateValuesResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Sets values in a range of a spreadsheet.\nThe caller must specify the spreadsheet ID, range, and\na valueInputOption.",
// "flatPath": "v4/spreadsheets/{spreadsheetId}/values/{range}",
// "httpMethod": "PUT",
// "id": "sheets.spreadsheets.values.update",
// "parameterOrder": [
// "spreadsheetId",
// "range"
// ],
// "parameters": {
// "includeValuesInResponse": {
// "description": "Determines if the update response should include the values\nof the cells that were updated. By default, responses\ndo not include the updated values.\nIf the range to write was larger than than the range actually written,\nthe response will include all values in the requested range (excluding\ntrailing empty rows and columns).",
// "location": "query",
// "type": "boolean"
// },
// "range": {
// "description": "The A1 notation of the values to update.",
// "location": "path",
// "required": true,
// "type": "string"
// },
// "responseDateTimeRenderOption": {
// "description": "Determines how dates, times, and durations in the response should be\nrendered. This is ignored if response_value_render_option is\nFORMATTED_VALUE.\nThe default dateTime render option is [DateTimeRenderOption.SERIAL_NUMBER].",
// "enum": [
// "SERIAL_NUMBER",
// "FORMATTED_STRING"
// ],
// "location": "query",
// "type": "string"
// },
// "responseValueRenderOption": {
// "description": "Determines how values in the response should be rendered.\nThe default render option is ValueRenderOption.FORMATTED_VALUE.",
// "enum": [
// "FORMATTED_VALUE",
// "UNFORMATTED_VALUE",
// "FORMULA"
// ],
// "location": "query",
// "type": "string"
// },
// "spreadsheetId": {
// "description": "The ID of the spreadsheet to update.",
// "location": "path",
// "required": true,
// "type": "string"
// },
// "valueInputOption": {
// "description": "How the input data should be interpreted.",
// "enum": [
// "INPUT_VALUE_OPTION_UNSPECIFIED",
// "RAW",
// "USER_ENTERED"
// ],
// "location": "query",
// "type": "string"
// }
// },
// "path": "v4/spreadsheets/{spreadsheetId}/values/{range}",
// "request": {
// "$ref": "ValueRange"
// },
// "response": {
// "$ref": "UpdateValuesResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/drive",
// "https://www.googleapis.com/auth/spreadsheets"
// ]
// }
}
|