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
|
// Copyright 2021 Google LLC.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Code generated file. DO NOT EDIT.
// Package analyticsdata provides access to the Google Analytics Data API.
//
// For product documentation, see: https://developers.google.com/analytics/devguides/reporting/data/v1/
//
// Creating a client
//
// Usage example:
//
// import "google.golang.org/api/analyticsdata/v1beta"
// ...
// ctx := context.Background()
// analyticsdataService, err := analyticsdata.NewService(ctx)
//
// In this example, Google Application Default Credentials are used for authentication.
//
// For information on how to create and obtain Application Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.
//
// Other authentication options
//
// By default, all available scopes (see "Constants") are used to authenticate. To restrict scopes, use option.WithScopes:
//
// analyticsdataService, err := analyticsdata.NewService(ctx, option.WithScopes(analyticsdata.AnalyticsReadonlyScope))
//
// To use an API key for authentication (note: some APIs do not support API keys), use option.WithAPIKey:
//
// analyticsdataService, err := analyticsdata.NewService(ctx, option.WithAPIKey("AIza..."))
//
// To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow), use option.WithTokenSource:
//
// config := &oauth2.Config{...}
// // ...
// token, err := config.Exchange(ctx, ...)
// analyticsdataService, err := analyticsdata.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
//
// See https://godoc.org/google.golang.org/api/option/ for details on options.
package analyticsdata // import "google.golang.org/api/analyticsdata/v1beta"
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"strings"
googleapi "google.golang.org/api/googleapi"
gensupport "google.golang.org/api/internal/gensupport"
option "google.golang.org/api/option"
internaloption "google.golang.org/api/option/internaloption"
htransport "google.golang.org/api/transport/http"
)
// 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 _ = internaloption.WithDefaultEndpoint
const apiId = "analyticsdata:v1beta"
const apiName = "analyticsdata"
const apiVersion = "v1beta"
const basePath = "https://analyticsdata.googleapis.com/"
const mtlsBasePath = "https://analyticsdata.mtls.googleapis.com/"
// OAuth2 scopes used by this API.
const (
// View and manage your Google Analytics data
AnalyticsScope = "https://www.googleapis.com/auth/analytics"
// See and download your Google Analytics data
AnalyticsReadonlyScope = "https://www.googleapis.com/auth/analytics.readonly"
)
// NewService creates a new Service.
func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error) {
scopesOption := option.WithScopes(
"https://www.googleapis.com/auth/analytics",
"https://www.googleapis.com/auth/analytics.readonly",
)
// NOTE: prepend, so we don't override user-specified scopes.
opts = append([]option.ClientOption{scopesOption}, opts...)
opts = append(opts, internaloption.WithDefaultEndpoint(basePath))
opts = append(opts, internaloption.WithDefaultMTLSEndpoint(mtlsBasePath))
client, endpoint, err := htransport.NewClient(ctx, opts...)
if err != nil {
return nil, err
}
s, err := New(client)
if err != nil {
return nil, err
}
if endpoint != "" {
s.BasePath = endpoint
}
return s, nil
}
// New creates a new Service. It uses the provided http.Client for requests.
//
// Deprecated: please use NewService instead.
// To provide a custom HTTP client, use option.WithHTTPClient.
// If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.
func New(client *http.Client) (*Service, error) {
if client == nil {
return nil, errors.New("client is nil")
}
s := &Service{client: client, BasePath: basePath}
s.Properties = NewPropertiesService(s)
return s, nil
}
type Service struct {
client *http.Client
BasePath string // API endpoint base URL
UserAgent string // optional additional User-Agent fragment
Properties *PropertiesService
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewPropertiesService(s *Service) *PropertiesService {
rs := &PropertiesService{s: s}
return rs
}
type PropertiesService struct {
s *Service
}
// ActiveMetricRestriction: A metric actively restricted in creating the
// report.
type ActiveMetricRestriction struct {
// MetricName: The name of the restricted metric.
MetricName string `json:"metricName,omitempty"`
// RestrictedMetricTypes: The reason for this metric's restriction.
//
// Possible values:
// "RESTRICTED_METRIC_TYPE_UNSPECIFIED" - Unspecified type.
// "COST_DATA" - Cost metrics such as `adCost`.
// "REVENUE_DATA" - Revenue metrics such as `purchaseRevenue`.
RestrictedMetricTypes []string `json:"restrictedMetricTypes,omitempty"`
// ForceSendFields is a list of field names (e.g. "MetricName") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "MetricName") 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 *ActiveMetricRestriction) MarshalJSON() ([]byte, error) {
type NoMethod ActiveMetricRestriction
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchRunPivotReportsRequest: The batch request containing multiple
// pivot report requests.
type BatchRunPivotReportsRequest struct {
// Requests: Individual requests. Each request has a separate pivot
// report response. Each batch request is allowed up to 5 requests.
Requests []*RunPivotReportRequest `json:"requests,omitempty"`
// ForceSendFields is a list of field names (e.g. "Requests") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Requests") 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 *BatchRunPivotReportsRequest) MarshalJSON() ([]byte, error) {
type NoMethod BatchRunPivotReportsRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchRunPivotReportsResponse: The batch response containing multiple
// pivot reports.
type BatchRunPivotReportsResponse struct {
// Kind: Identifies what kind of resource this message is. This `kind`
// is always the fixed string "analyticsData#batchRunPivotReports".
// Useful to distinguish between response types in JSON.
Kind string `json:"kind,omitempty"`
// PivotReports: Individual responses. Each response has a separate
// pivot report request.
PivotReports []*RunPivotReportResponse `json:"pivotReports,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Kind") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Kind") 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 *BatchRunPivotReportsResponse) MarshalJSON() ([]byte, error) {
type NoMethod BatchRunPivotReportsResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchRunReportsRequest: The batch request containing multiple report
// requests.
type BatchRunReportsRequest struct {
// Requests: Individual requests. Each request has a separate report
// response. Each batch request is allowed up to 5 requests.
Requests []*RunReportRequest `json:"requests,omitempty"`
// ForceSendFields is a list of field names (e.g. "Requests") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Requests") 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 *BatchRunReportsRequest) MarshalJSON() ([]byte, error) {
type NoMethod BatchRunReportsRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BatchRunReportsResponse: The batch response containing multiple
// reports.
type BatchRunReportsResponse struct {
// Kind: Identifies what kind of resource this message is. This `kind`
// is always the fixed string "analyticsData#batchRunReports". Useful to
// distinguish between response types in JSON.
Kind string `json:"kind,omitempty"`
// Reports: Individual responses. Each response has a separate report
// request.
Reports []*RunReportResponse `json:"reports,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Kind") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Kind") 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 *BatchRunReportsResponse) MarshalJSON() ([]byte, error) {
type NoMethod BatchRunReportsResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// BetweenFilter: To express that the result needs to be between two
// numbers (inclusive).
type BetweenFilter struct {
// FromValue: Begins with this number.
FromValue *NumericValue `json:"fromValue,omitempty"`
// ToValue: Ends with this number.
ToValue *NumericValue `json:"toValue,omitempty"`
// ForceSendFields is a list of field names (e.g. "FromValue") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "FromValue") 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 *BetweenFilter) MarshalJSON() ([]byte, error) {
type NoMethod BetweenFilter
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CaseExpression: Used to convert a dimension value to a single case.
type CaseExpression struct {
// DimensionName: Name of a dimension. The name must refer back to a
// name in dimensions field of the request.
DimensionName string `json:"dimensionName,omitempty"`
// ForceSendFields is a list of field names (e.g. "DimensionName") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DimensionName") 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 *CaseExpression) MarshalJSON() ([]byte, error) {
type NoMethod CaseExpression
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CheckCompatibilityRequest: The request for compatibility information
// for a report's dimensions and metrics. Check compatibility provides a
// preview of the compatibility of a report; fields shared with the
// `runReport` request should be the same values as in your `runReport`
// request.
type CheckCompatibilityRequest struct {
// CompatibilityFilter: Filters the dimensions and metrics in the
// response to just this compatibility. Commonly used as
// `”compatibilityFilter”: “COMPATIBLE”` to only return
// compatible dimensions & metrics.
//
// Possible values:
// "COMPATIBILITY_UNSPECIFIED" - Unspecified compatibility.
// "COMPATIBLE" - The dimension or metric is compatible. This
// dimension or metric can be successfully added to a report.
// "INCOMPATIBLE" - The dimension or metric is incompatible. This
// dimension or metric cannot be successfully added to a report.
CompatibilityFilter string `json:"compatibilityFilter,omitempty"`
// DimensionFilter: The filter clause of dimensions. `dimensionFilter`
// should be the same value as in your `runReport` request.
DimensionFilter *FilterExpression `json:"dimensionFilter,omitempty"`
// Dimensions: The dimensions in this report. `dimensions` should be the
// same value as in your `runReport` request.
Dimensions []*Dimension `json:"dimensions,omitempty"`
// MetricFilter: The filter clause of metrics. `metricFilter` should be
// the same value as in your `runReport` request
MetricFilter *FilterExpression `json:"metricFilter,omitempty"`
// Metrics: The metrics in this report. `metrics` should be the same
// value as in your `runReport` request.
Metrics []*Metric `json:"metrics,omitempty"`
// ForceSendFields is a list of field names (e.g. "CompatibilityFilter")
// to unconditionally include in API requests. By default, fields with
// empty or default 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. "CompatibilityFilter") 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 *CheckCompatibilityRequest) MarshalJSON() ([]byte, error) {
type NoMethod CheckCompatibilityRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CheckCompatibilityResponse: The compatibility response with the
// compatibility of each dimension & metric.
type CheckCompatibilityResponse struct {
// DimensionCompatibilities: The compatibility of each dimension.
DimensionCompatibilities []*DimensionCompatibility `json:"dimensionCompatibilities,omitempty"`
// MetricCompatibilities: The compatibility of each metric.
MetricCompatibilities []*MetricCompatibility `json:"metricCompatibilities,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g.
// "DimensionCompatibilities") to unconditionally include in API
// requests. By default, fields with empty or default 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. "DimensionCompatibilities")
// 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 *CheckCompatibilityResponse) MarshalJSON() ([]byte, error) {
type NoMethod CheckCompatibilityResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Cohort: Defines a cohort selection criteria. A cohort is a group of
// users who share a common characteristic. For example, users with the
// same `firstSessionDate` belong to the same cohort.
type Cohort struct {
// DateRange: The cohort selects users whose first touch date is between
// start date and end date defined in the `dateRange`. This `dateRange`
// does not specify the full date range of event data that is present in
// a cohort report. In a cohort report, this `dateRange` is extended by
// the granularity and offset present in the `cohortsRange`; event data
// for the extended reporting date range is present in a cohort report.
// In a cohort request, this `dateRange` is required and the
// `dateRanges` in the `RunReportRequest` or `RunPivotReportRequest`
// must be unspecified. This `dateRange` should generally be aligned
// with the cohort's granularity. If `CohortsRange` uses daily
// granularity, this `dateRange` can be a single day. If `CohortsRange`
// uses weekly granularity, this `dateRange` can be aligned to a week
// boundary, starting at Sunday and ending Saturday. If `CohortsRange`
// uses monthly granularity, this `dateRange` can be aligned to a month,
// starting at the first and ending on the last day of the month.
DateRange *DateRange `json:"dateRange,omitempty"`
// Dimension: Dimension used by the cohort. Required and only supports
// `firstSessionDate`.
Dimension string `json:"dimension,omitempty"`
// Name: Assigns a name to this cohort. The dimension `cohort` is valued
// to this name in a report response. If set, cannot begin with
// `cohort_` or `RESERVED_`. If not set, cohorts are named by their zero
// based index `cohort_0`, `cohort_1`, etc.
Name string `json:"name,omitempty"`
// ForceSendFields is a list of field names (e.g. "DateRange") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DateRange") 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 *Cohort) MarshalJSON() ([]byte, error) {
type NoMethod Cohort
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CohortReportSettings: Optional settings of a cohort report.
type CohortReportSettings struct {
// Accumulate: If true, accumulates the result from first touch day to
// the end day. Not supported in `RunReportRequest`.
Accumulate bool `json:"accumulate,omitempty"`
// ForceSendFields is a list of field names (e.g. "Accumulate") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Accumulate") 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 *CohortReportSettings) MarshalJSON() ([]byte, error) {
type NoMethod CohortReportSettings
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CohortSpec: The specification of cohorts for a cohort report. Cohort
// reports create a time series of user retention for the cohort. For
// example, you could select the cohort of users that were acquired in
// the first week of September and follow that cohort for the next six
// weeks. Selecting the users acquired in the first week of September
// cohort is specified in the `cohort` object. Following that cohort for
// the next six weeks is specified in the `cohortsRange` object. For
// examples, see Cohort Report Examples
// (https://developers.google.com/analytics/devguides/reporting/data/v1/advanced#cohort_report_examples).
// The report response could show a weekly time series where say your
// app has retained 60% of this cohort after three weeks and 25% of this
// cohort after six weeks. These two percentages can be calculated by
// the metric `cohortActiveUsers/cohortTotalUsers` and will be separate
// rows in the report.
type CohortSpec struct {
// CohortReportSettings: Optional settings for a cohort report.
CohortReportSettings *CohortReportSettings `json:"cohortReportSettings,omitempty"`
// Cohorts: Defines the selection criteria to group users into cohorts.
// Most cohort reports define only a single cohort. If multiple cohorts
// are specified, each cohort can be recognized in the report by their
// name.
Cohorts []*Cohort `json:"cohorts,omitempty"`
// CohortsRange: Cohort reports follow cohorts over an extended
// reporting date range. This range specifies an offset duration to
// follow the cohorts over.
CohortsRange *CohortsRange `json:"cohortsRange,omitempty"`
// ForceSendFields is a list of field names (e.g.
// "CohortReportSettings") to unconditionally include in API requests.
// By default, fields with empty or default 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. "CohortReportSettings") 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 *CohortSpec) MarshalJSON() ([]byte, error) {
type NoMethod CohortSpec
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// CohortsRange: Configures the extended reporting date range for a
// cohort report. Specifies an offset duration to follow the cohorts
// over.
type CohortsRange struct {
// EndOffset: Required. `endOffset` specifies the end date of the
// extended reporting date range for a cohort report. `endOffset` can be
// any positive integer but is commonly set to 5 to 10 so that reports
// contain data on the cohort for the next several granularity time
// periods. If `granularity` is `DAILY`, the `endDate` of the extended
// reporting date range is `endDate` of the cohort plus `endOffset`
// days. If `granularity` is `WEEKLY`, the `endDate` of the extended
// reporting date range is `endDate` of the cohort plus `endOffset * 7`
// days. If `granularity` is `MONTHLY`, the `endDate` of the extended
// reporting date range is `endDate` of the cohort plus `endOffset * 30`
// days.
EndOffset int64 `json:"endOffset,omitempty"`
// Granularity: Required. The granularity used to interpret the
// `startOffset` and `endOffset` for the extended reporting date range
// for a cohort report.
//
// Possible values:
// "GRANULARITY_UNSPECIFIED" - Should never be specified.
// "DAILY" - Daily granularity. Commonly used if the cohort's
// `dateRange` is a single day and the request contains `cohortNthDay`.
// "WEEKLY" - Weekly granularity. Commonly used if the cohort's
// `dateRange` is a week in duration (starting on Sunday and ending on
// Saturday) and the request contains `cohortNthWeek`.
// "MONTHLY" - Monthly granularity. Commonly used if the cohort's
// `dateRange` is a month in duration and the request contains
// `cohortNthMonth`.
Granularity string `json:"granularity,omitempty"`
// StartOffset: `startOffset` specifies the start date of the extended
// reporting date range for a cohort report. `startOffset` is commonly
// set to 0 so that reports contain data from the acquisition of the
// cohort forward. If `granularity` is `DAILY`, the `startDate` of the
// extended reporting date range is `startDate` of the cohort plus
// `startOffset` days. If `granularity` is `WEEKLY`, the `startDate` of
// the extended reporting date range is `startDate` of the cohort plus
// `startOffset * 7` days. If `granularity` is `MONTHLY`, the
// `startDate` of the extended reporting date range is `startDate` of
// the cohort plus `startOffset * 30` days.
StartOffset int64 `json:"startOffset,omitempty"`
// ForceSendFields is a list of field names (e.g. "EndOffset") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "EndOffset") 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 *CohortsRange) MarshalJSON() ([]byte, error) {
type NoMethod CohortsRange
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ConcatenateExpression: Used to combine dimension values to a single
// dimension.
type ConcatenateExpression struct {
// Delimiter: The delimiter placed between dimension names. Delimiters
// are often single characters such as "|" or "," but can be longer
// strings. If a dimension value contains the delimiter, both will be
// present in response with no distinction. For example if dimension 1
// value = "US,FR", dimension 2 value = "JP", and delimiter = ",", then
// the response will contain "US,FR,JP".
Delimiter string `json:"delimiter,omitempty"`
// DimensionNames: Names of dimensions. The names must refer back to
// names in the dimensions field of the request.
DimensionNames []string `json:"dimensionNames,omitempty"`
// ForceSendFields is a list of field names (e.g. "Delimiter") to
// unconditionally include in API requests. By default, fields with
// empty or default 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 *ConcatenateExpression) MarshalJSON() ([]byte, error) {
type NoMethod ConcatenateExpression
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DateRange: A contiguous set of days: startDate, startDate + 1, ...,
// endDate. Requests are allowed up to 4 date ranges.
type DateRange struct {
// EndDate: The inclusive end date for the query in the format
// `YYYY-MM-DD`. Cannot be before `start_date`. The format `NdaysAgo`,
// `yesterday`, or `today` is also accepted, and in that case, the date
// is inferred based on the property's reporting time zone.
EndDate string `json:"endDate,omitempty"`
// Name: Assigns a name to this date range. The dimension `dateRange` is
// valued to this name in a report response. If set, cannot begin with
// `date_range_` or `RESERVED_`. If not set, date ranges are named by
// their zero based index in the request: `date_range_0`,
// `date_range_1`, etc.
Name string `json:"name,omitempty"`
// StartDate: The inclusive start date for the query in the format
// `YYYY-MM-DD`. Cannot be after `end_date`. The format `NdaysAgo`,
// `yesterday`, or `today` is also accepted, and in that case, the date
// is inferred based on the property's reporting time zone.
StartDate string `json:"startDate,omitempty"`
// ForceSendFields is a list of field names (e.g. "EndDate") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "EndDate") 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 *DateRange) MarshalJSON() ([]byte, error) {
type NoMethod DateRange
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Dimension: Dimensions are attributes of your data. For example, the
// dimension city indicates the city from which an event originates.
// Dimension values in report responses are strings; for example, city
// could be "Paris" or "New York". Requests are allowed up to 9
// dimensions.
type Dimension struct {
// DimensionExpression: One dimension can be the result of an expression
// of multiple dimensions. For example, dimension "country, city":
// concatenate(country, ", ", city).
DimensionExpression *DimensionExpression `json:"dimensionExpression,omitempty"`
// Name: The name of the dimension. See the API Dimensions
// (https://developers.google.com/analytics/devguides/reporting/data/v1/api-schema#dimensions)
// for the list of dimension names. If `dimensionExpression` is
// specified, `name` can be any string that you would like within the
// allowed character set. For example if a `dimensionExpression`
// concatenates `country` and `city`, you could call that dimension
// `countryAndCity`. Dimension names that you choose must match the
// regular expression `^[a-zA-Z0-9_]$`. Dimensions are referenced by
// `name` in `dimensionFilter`, `orderBys`, `dimensionExpression`, and
// `pivots`.
Name string `json:"name,omitempty"`
// ForceSendFields is a list of field names (e.g. "DimensionExpression")
// to unconditionally include in API requests. By default, fields with
// empty or default 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. "DimensionExpression") 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 *Dimension) MarshalJSON() ([]byte, error) {
type NoMethod Dimension
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DimensionCompatibility: The compatibility for a single dimension.
type DimensionCompatibility struct {
// Compatibility: The compatibility of this dimension. If the
// compatibility is COMPATIBLE, this dimension can be successfully added
// to the report.
//
// Possible values:
// "COMPATIBILITY_UNSPECIFIED" - Unspecified compatibility.
// "COMPATIBLE" - The dimension or metric is compatible. This
// dimension or metric can be successfully added to a report.
// "INCOMPATIBLE" - The dimension or metric is incompatible. This
// dimension or metric cannot be successfully added to a report.
Compatibility string `json:"compatibility,omitempty"`
// DimensionMetadata: The dimension metadata contains the API name for
// this compatibility information. The dimension metadata also contains
// other helpful information like the UI name and description.
DimensionMetadata *DimensionMetadata `json:"dimensionMetadata,omitempty"`
// ForceSendFields is a list of field names (e.g. "Compatibility") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Compatibility") 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 *DimensionCompatibility) MarshalJSON() ([]byte, error) {
type NoMethod DimensionCompatibility
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DimensionExpression: Used to express a dimension which is the result
// of a formula of multiple dimensions. Example usages: 1)
// lower_case(dimension) 2) concatenate(dimension1, symbol, dimension2).
type DimensionExpression struct {
// Concatenate: Used to combine dimension values to a single dimension.
// For example, dimension "country, city": concatenate(country, ", ",
// city).
Concatenate *ConcatenateExpression `json:"concatenate,omitempty"`
// LowerCase: Used to convert a dimension value to lower case.
LowerCase *CaseExpression `json:"lowerCase,omitempty"`
// UpperCase: Used to convert a dimension value to upper case.
UpperCase *CaseExpression `json:"upperCase,omitempty"`
// ForceSendFields is a list of field names (e.g. "Concatenate") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Concatenate") 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 *DimensionExpression) MarshalJSON() ([]byte, error) {
type NoMethod DimensionExpression
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DimensionHeader: Describes a dimension column in the report.
// Dimensions requested in a report produce column entries within rows
// and DimensionHeaders. However, dimensions used exclusively within
// filters or expressions do not produce columns in a report;
// correspondingly, those dimensions do not produce headers.
type DimensionHeader struct {
// Name: The dimension's name.
Name string `json:"name,omitempty"`
// ForceSendFields is a list of field names (e.g. "Name") to
// unconditionally include in API requests. By default, fields with
// empty or default 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 *DimensionHeader) MarshalJSON() ([]byte, error) {
type NoMethod DimensionHeader
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DimensionMetadata: Explains a dimension.
type DimensionMetadata struct {
// ApiName: This dimension's name. Useable in Dimension (#Dimension)'s
// `name`. For example, `eventName`.
ApiName string `json:"apiName,omitempty"`
// Category: The display name of the category that this dimension
// belongs to. Similar dimensions and metrics are categorized together.
Category string `json:"category,omitempty"`
// CustomDefinition: True if the dimension is a custom dimension for
// this property.
CustomDefinition bool `json:"customDefinition,omitempty"`
// DeprecatedApiNames: Still usable but deprecated names for this
// dimension. If populated, this dimension is available by either
// `apiName` or one of `deprecatedApiNames` for a period of time. After
// the deprecation period, the dimension will be available only by
// `apiName`.
DeprecatedApiNames []string `json:"deprecatedApiNames,omitempty"`
// Description: Description of how this dimension is used and
// calculated.
Description string `json:"description,omitempty"`
// UiName: This dimension's name within the Google Analytics user
// interface. For example, `Event name`.
UiName string `json:"uiName,omitempty"`
// ForceSendFields is a list of field names (e.g. "ApiName") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "ApiName") 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 *DimensionMetadata) MarshalJSON() ([]byte, error) {
type NoMethod DimensionMetadata
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DimensionOrderBy: Sorts by dimension values.
type DimensionOrderBy struct {
// DimensionName: A dimension name in the request to order by.
DimensionName string `json:"dimensionName,omitempty"`
// OrderType: Controls the rule for dimension value ordering.
//
// Possible values:
// "ORDER_TYPE_UNSPECIFIED" - Unspecified.
// "ALPHANUMERIC" - Alphanumeric sort by Unicode code point. For
// example, "2" < "A" < "X" < "b" < "z".
// "CASE_INSENSITIVE_ALPHANUMERIC" - Case insensitive alphanumeric
// sort by lower case Unicode code point. For example, "2" < "A" < "b" <
// "X" < "z".
// "NUMERIC" - Dimension values are converted to numbers before
// sorting. For example in NUMERIC sort, "25" < "100", and in
// `ALPHANUMERIC` sort, "100" < "25". Non-numeric dimension values all
// have equal ordering value below all numeric values.
OrderType string `json:"orderType,omitempty"`
// ForceSendFields is a list of field names (e.g. "DimensionName") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DimensionName") 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 *DimensionOrderBy) MarshalJSON() ([]byte, error) {
type NoMethod DimensionOrderBy
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DimensionValue: The value of a dimension.
type DimensionValue struct {
// Value: Value as a string if the dimension type is a string.
Value string `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "Value") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Value") 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 *DimensionValue) MarshalJSON() ([]byte, error) {
type NoMethod DimensionValue
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Filter: An expression to filter dimension or metric values.
type Filter struct {
// BetweenFilter: A filter for two values.
BetweenFilter *BetweenFilter `json:"betweenFilter,omitempty"`
// FieldName: The dimension name or metric name. Must be a name defined
// in dimensions or metrics.
FieldName string `json:"fieldName,omitempty"`
// InListFilter: A filter for in list values.
InListFilter *InListFilter `json:"inListFilter,omitempty"`
// NumericFilter: A filter for numeric or date values.
NumericFilter *NumericFilter `json:"numericFilter,omitempty"`
// StringFilter: Strings related filter.
StringFilter *StringFilter `json:"stringFilter,omitempty"`
// ForceSendFields is a list of field names (e.g. "BetweenFilter") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "BetweenFilter") 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 *Filter) MarshalJSON() ([]byte, error) {
type NoMethod Filter
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// FilterExpression: To express dimension or metric filters. The fields
// in the same FilterExpression need to be either all dimensions or all
// metrics.
type FilterExpression struct {
// AndGroup: The FilterExpressions in and_group have an AND
// relationship.
AndGroup *FilterExpressionList `json:"andGroup,omitempty"`
// Filter: A primitive filter. All fields in filter in same
// FilterExpression needs to be either all dimensions or metrics.
Filter *Filter `json:"filter,omitempty"`
// NotExpression: The FilterExpression is NOT of not_expression.
NotExpression *FilterExpression `json:"notExpression,omitempty"`
// OrGroup: The FilterExpressions in or_group have an OR relationship.
OrGroup *FilterExpressionList `json:"orGroup,omitempty"`
// ForceSendFields is a list of field names (e.g. "AndGroup") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "AndGroup") 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 *FilterExpression) MarshalJSON() ([]byte, error) {
type NoMethod FilterExpression
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// FilterExpressionList: A list of filter expressions.
type FilterExpressionList struct {
// Expressions: A list of filter expressions.
Expressions []*FilterExpression `json:"expressions,omitempty"`
// ForceSendFields is a list of field names (e.g. "Expressions") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Expressions") 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 *FilterExpressionList) MarshalJSON() ([]byte, error) {
type NoMethod FilterExpressionList
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// InListFilter: The result needs to be in a list of string values.
type InListFilter struct {
// CaseSensitive: If true, the string value is case sensitive.
CaseSensitive bool `json:"caseSensitive,omitempty"`
// Values: The list of string values. Must be non-empty.
Values []string `json:"values,omitempty"`
// ForceSendFields is a list of field names (e.g. "CaseSensitive") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "CaseSensitive") 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 *InListFilter) MarshalJSON() ([]byte, error) {
type NoMethod InListFilter
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Metadata: The dimensions and metrics currently accepted in reporting
// methods.
type Metadata struct {
// Dimensions: The dimension descriptions.
Dimensions []*DimensionMetadata `json:"dimensions,omitempty"`
// Metrics: The metric descriptions.
Metrics []*MetricMetadata `json:"metrics,omitempty"`
// Name: Resource name of this metadata.
Name string `json:"name,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Dimensions") to
// unconditionally include in API requests. By default, fields with
// empty or default 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 *Metadata) MarshalJSON() ([]byte, error) {
type NoMethod Metadata
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Metric: The quantitative measurements of a report. For example, the
// metric `eventCount` is the total number of events. Requests are
// allowed up to 10 metrics.
type Metric struct {
// Expression: A mathematical expression for derived metrics. For
// example, the metric Event count per user is `eventCount/totalUsers`.
Expression string `json:"expression,omitempty"`
// Invisible: Indicates if a metric is invisible in the report response.
// If a metric is invisible, the metric will not produce a column in the
// response, but can be used in `metricFilter`, `orderBys`, or a metric
// `expression`.
Invisible bool `json:"invisible,omitempty"`
// Name: The name of the metric. See the API Metrics
// (https://developers.google.com/analytics/devguides/reporting/data/v1/api-schema#metrics)
// for the list of metric names. If `expression` is specified, `name`
// can be any string that you would like within the allowed character
// set. For example if `expression` is `screenPageViews/sessions`, you
// could call that metric's name = `viewsPerSession`. Metric names that
// you choose must match the regular expression `^[a-zA-Z0-9_]$`.
// Metrics are referenced by `name` in `metricFilter`, `orderBys`, and
// metric `expression`.
Name string `json:"name,omitempty"`
// ForceSendFields is a list of field names (e.g. "Expression") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Expression") 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 *Metric) MarshalJSON() ([]byte, error) {
type NoMethod Metric
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MetricCompatibility: The compatibility for a single metric.
type MetricCompatibility struct {
// Compatibility: The compatibility of this metric. If the compatibility
// is COMPATIBLE, this metric can be successfully added to the report.
//
// Possible values:
// "COMPATIBILITY_UNSPECIFIED" - Unspecified compatibility.
// "COMPATIBLE" - The dimension or metric is compatible. This
// dimension or metric can be successfully added to a report.
// "INCOMPATIBLE" - The dimension or metric is incompatible. This
// dimension or metric cannot be successfully added to a report.
Compatibility string `json:"compatibility,omitempty"`
// MetricMetadata: The metric metadata contains the API name for this
// compatibility information. The metric metadata also contains other
// helpful information like the UI name and description.
MetricMetadata *MetricMetadata `json:"metricMetadata,omitempty"`
// ForceSendFields is a list of field names (e.g. "Compatibility") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Compatibility") 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 *MetricCompatibility) MarshalJSON() ([]byte, error) {
type NoMethod MetricCompatibility
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MetricHeader: Describes a metric column in the report. Visible
// metrics requested in a report produce column entries within rows and
// MetricHeaders. However, metrics used exclusively within filters or
// expressions do not produce columns in a report; correspondingly,
// those metrics do not produce headers.
type MetricHeader struct {
// Name: The metric's name.
Name string `json:"name,omitempty"`
// Type: The metric's data type.
//
// Possible values:
// "METRIC_TYPE_UNSPECIFIED" - Unspecified type.
// "TYPE_INTEGER" - Integer type.
// "TYPE_FLOAT" - Floating point type.
// "TYPE_SECONDS" - A duration of seconds; a special floating point
// type.
// "TYPE_MILLISECONDS" - A duration in milliseconds; a special
// floating point type.
// "TYPE_MINUTES" - A duration in minutes; a special floating point
// type.
// "TYPE_HOURS" - A duration in hours; a special floating point type.
// "TYPE_STANDARD" - A custom metric of standard type; a special
// floating point type.
// "TYPE_CURRENCY" - An amount of money; a special floating point
// type.
// "TYPE_FEET" - A length in feet; a special floating point type.
// "TYPE_MILES" - A length in miles; a special floating point type.
// "TYPE_METERS" - A length in meters; a special floating point type.
// "TYPE_KILOMETERS" - A length in kilometers; a special floating
// point type.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Name") to
// unconditionally include in API requests. By default, fields with
// empty or default 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 *MetricHeader) MarshalJSON() ([]byte, error) {
type NoMethod MetricHeader
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MetricMetadata: Explains a metric.
type MetricMetadata struct {
// ApiName: A metric name. Useable in Metric (#Metric)'s `name`. For
// example, `eventCount`.
ApiName string `json:"apiName,omitempty"`
// BlockedReasons: If reasons are specified, your access is blocked to
// this metric for this property. API requests from you to this property
// for this metric will succeed; however, the report will contain only
// zeros for this metric. API requests with metric filters on blocked
// metrics will fail. If reasons are empty, you have access to this
// metric. To learn more, see Access and data-restriction management
// (https://support.google.com/analytics/answer/10851388).
//
// Possible values:
// "BLOCKED_REASON_UNSPECIFIED" - Will never be specified in API
// response.
// "NO_REVENUE_METRICS" - If present, your access is blocked to
// revenue related metrics for this property, and this metric is revenue
// related.
// "NO_COST_METRICS" - If present, your access is blocked to cost
// related metrics for this property, and this metric is cost related.
BlockedReasons []string `json:"blockedReasons,omitempty"`
// Category: The display name of the category that this metrics belongs
// to. Similar dimensions and metrics are categorized together.
Category string `json:"category,omitempty"`
// CustomDefinition: True if the metric is a custom metric for this
// property.
CustomDefinition bool `json:"customDefinition,omitempty"`
// DeprecatedApiNames: Still usable but deprecated names for this
// metric. If populated, this metric is available by either `apiName` or
// one of `deprecatedApiNames` for a period of time. After the
// deprecation period, the metric will be available only by `apiName`.
DeprecatedApiNames []string `json:"deprecatedApiNames,omitempty"`
// Description: Description of how this metric is used and calculated.
Description string `json:"description,omitempty"`
// Expression: The mathematical expression for this derived metric. Can
// be used in Metric (#Metric)'s `expression` field for equivalent
// reports. Most metrics are not expressions, and for non-expressions,
// this field is empty.
Expression string `json:"expression,omitempty"`
// Type: The type of this metric.
//
// Possible values:
// "METRIC_TYPE_UNSPECIFIED" - Unspecified type.
// "TYPE_INTEGER" - Integer type.
// "TYPE_FLOAT" - Floating point type.
// "TYPE_SECONDS" - A duration of seconds; a special floating point
// type.
// "TYPE_MILLISECONDS" - A duration in milliseconds; a special
// floating point type.
// "TYPE_MINUTES" - A duration in minutes; a special floating point
// type.
// "TYPE_HOURS" - A duration in hours; a special floating point type.
// "TYPE_STANDARD" - A custom metric of standard type; a special
// floating point type.
// "TYPE_CURRENCY" - An amount of money; a special floating point
// type.
// "TYPE_FEET" - A length in feet; a special floating point type.
// "TYPE_MILES" - A length in miles; a special floating point type.
// "TYPE_METERS" - A length in meters; a special floating point type.
// "TYPE_KILOMETERS" - A length in kilometers; a special floating
// point type.
Type string `json:"type,omitempty"`
// UiName: This metric's name within the Google Analytics user
// interface. For example, `Event count`.
UiName string `json:"uiName,omitempty"`
// ForceSendFields is a list of field names (e.g. "ApiName") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "ApiName") 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 *MetricMetadata) MarshalJSON() ([]byte, error) {
type NoMethod MetricMetadata
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MetricOrderBy: Sorts by metric values.
type MetricOrderBy struct {
// MetricName: A metric name in the request to order by.
MetricName string `json:"metricName,omitempty"`
// ForceSendFields is a list of field names (e.g. "MetricName") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "MetricName") 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 *MetricOrderBy) MarshalJSON() ([]byte, error) {
type NoMethod MetricOrderBy
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MetricValue: The value of a metric.
type MetricValue struct {
// Value: Measurement value. See MetricHeader for type.
Value string `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "Value") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Value") 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 *MetricValue) MarshalJSON() ([]byte, error) {
type NoMethod MetricValue
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MinuteRange: A contiguous set of minutes: startMinutesAgo,
// startMinutesAgo + 1, ..., endMinutesAgo. Requests are allowed up to 2
// minute ranges.
type MinuteRange struct {
// EndMinutesAgo: The inclusive end minute for the query as a number of
// minutes before now. Cannot be before `startMinutesAgo`. For example,
// "endMinutesAgo": 15` specifies the report should include event data
// from prior to 15 minutes ago. If unspecified, `endMinutesAgo` is
// defaulted to 0. Standard Analytics properties can request any minute
// in the last 30 minutes of event data (`endMinutesAgo <= 29`), and 360
// Analytics properties can request any minute in the last 60 minutes of
// event data (`endMinutesAgo <= 59`).
EndMinutesAgo int64 `json:"endMinutesAgo,omitempty"`
// Name: Assigns a name to this minute range. The dimension `dateRange`
// is valued to this name in a report response. If set, cannot begin
// with `date_range_` or `RESERVED_`. If not set, minute ranges are
// named by their zero based index in the request: `date_range_0`,
// `date_range_1`, etc.
Name string `json:"name,omitempty"`
// StartMinutesAgo: The inclusive start minute for the query as a number
// of minutes before now. For example, "startMinutesAgo": 29` specifies
// the report should include event data from 29 minutes ago and after.
// Cannot be after `endMinutesAgo`. If unspecified, `startMinutesAgo` is
// defaulted to 29. Standard Analytics properties can request up to the
// last 30 minutes of event data (`startMinutesAgo <= 29`), and 360
// Analytics properties can request up to the last 60 minutes of event
// data (`startMinutesAgo <= 59`).
StartMinutesAgo int64 `json:"startMinutesAgo,omitempty"`
// ForceSendFields is a list of field names (e.g. "EndMinutesAgo") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "EndMinutesAgo") 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 *MinuteRange) MarshalJSON() ([]byte, error) {
type NoMethod MinuteRange
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// NumericFilter: Filters for numeric or date values.
type NumericFilter struct {
// Operation: The operation type for this filter.
//
// Possible values:
// "OPERATION_UNSPECIFIED" - Unspecified.
// "EQUAL" - Equal
// "LESS_THAN" - Less than
// "LESS_THAN_OR_EQUAL" - Less than or equal
// "GREATER_THAN" - Greater than
// "GREATER_THAN_OR_EQUAL" - Greater than or equal
Operation string `json:"operation,omitempty"`
// Value: A numeric value or a date value.
Value *NumericValue `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "Operation") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Operation") 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 *NumericFilter) MarshalJSON() ([]byte, error) {
type NoMethod NumericFilter
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// NumericValue: To represent a number.
type NumericValue struct {
// DoubleValue: Double value
DoubleValue float64 `json:"doubleValue,omitempty"`
// Int64Value: Integer value
Int64Value int64 `json:"int64Value,omitempty,string"`
// ForceSendFields is a list of field names (e.g. "DoubleValue") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DoubleValue") 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 *NumericValue) MarshalJSON() ([]byte, error) {
type NoMethod NumericValue
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *NumericValue) UnmarshalJSON(data []byte) error {
type NoMethod NumericValue
var s1 struct {
DoubleValue gensupport.JSONFloat64 `json:"doubleValue"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.DoubleValue = float64(s1.DoubleValue)
return nil
}
// OrderBy: The sort options.
type OrderBy struct {
// Desc: If true, sorts by descending order.
Desc bool `json:"desc,omitempty"`
// Dimension: Sorts results by a dimension's values.
Dimension *DimensionOrderBy `json:"dimension,omitempty"`
// Metric: Sorts results by a metric's values.
Metric *MetricOrderBy `json:"metric,omitempty"`
// Pivot: Sorts results by a metric's values within a pivot column
// group.
Pivot *PivotOrderBy `json:"pivot,omitempty"`
// ForceSendFields is a list of field names (e.g. "Desc") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Desc") 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 *OrderBy) MarshalJSON() ([]byte, error) {
type NoMethod OrderBy
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Pivot: Describes the visible dimension columns and rows in the report
// response.
type Pivot struct {
// FieldNames: Dimension names for visible columns in the report
// response. Including "dateRange" produces a date range column; for
// each row in the response, dimension values in the date range column
// will indicate the corresponding date range from the request.
FieldNames []string `json:"fieldNames,omitempty"`
// Limit: The number of unique combinations of dimension values to
// return in this pivot. The `limit` parameter is required. A `limit` of
// 10,000 is common for single pivot requests. The product of the
// `limit` for each `pivot` in a `RunPivotReportRequest` must not exceed
// 100,000. For example, a two pivot request with `limit: 1000` in each
// pivot will fail because the product is `1,000,000`.
Limit int64 `json:"limit,omitempty,string"`
// MetricAggregations: Aggregate the metrics by dimensions in this pivot
// using the specified metric_aggregations.
//
// Possible values:
// "METRIC_AGGREGATION_UNSPECIFIED" - Unspecified operator.
// "TOTAL" - SUM operator.
// "MINIMUM" - Minimum operator.
// "MAXIMUM" - Maximum operator.
// "COUNT" - Count operator.
MetricAggregations []string `json:"metricAggregations,omitempty"`
// Offset: The row count of the start row. The first row is counted as
// row 0.
Offset int64 `json:"offset,omitempty,string"`
// OrderBys: Specifies how dimensions are ordered in the pivot. In the
// first Pivot, the OrderBys determine Row and PivotDimensionHeader
// ordering; in subsequent Pivots, the OrderBys determine only
// PivotDimensionHeader ordering. Dimensions specified in these OrderBys
// must be a subset of Pivot.field_names.
OrderBys []*OrderBy `json:"orderBys,omitempty"`
// ForceSendFields is a list of field names (e.g. "FieldNames") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "FieldNames") 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 *Pivot) MarshalJSON() ([]byte, error) {
type NoMethod Pivot
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotDimensionHeader: Summarizes dimension values from a row for this
// pivot.
type PivotDimensionHeader struct {
// DimensionValues: Values of multiple dimensions in a pivot.
DimensionValues []*DimensionValue `json:"dimensionValues,omitempty"`
// ForceSendFields is a list of field names (e.g. "DimensionValues") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DimensionValues") 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 *PivotDimensionHeader) MarshalJSON() ([]byte, error) {
type NoMethod PivotDimensionHeader
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotHeader: Dimensions' values in a single pivot.
type PivotHeader struct {
// PivotDimensionHeaders: The size is the same as the cardinality of the
// corresponding dimension combinations.
PivotDimensionHeaders []*PivotDimensionHeader `json:"pivotDimensionHeaders,omitempty"`
// RowCount: The cardinality of the pivot. The total number of rows for
// this pivot's fields regardless of how the parameters `offset` and
// `limit` are specified in the request.
RowCount int64 `json:"rowCount,omitempty"`
// ForceSendFields is a list of field names (e.g.
// "PivotDimensionHeaders") to unconditionally include in API requests.
// By default, fields with empty or default 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. "PivotDimensionHeaders") 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 *PivotHeader) MarshalJSON() ([]byte, error) {
type NoMethod PivotHeader
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotOrderBy: Sorts by a pivot column group.
type PivotOrderBy struct {
// MetricName: In the response to order by, order rows by this column.
// Must be a metric name from the request.
MetricName string `json:"metricName,omitempty"`
// PivotSelections: Used to select a dimension name and value pivot. If
// multiple pivot selections are given, the sort occurs on rows where
// all pivot selection dimension name and value pairs match the row's
// dimension name and value pair.
PivotSelections []*PivotSelection `json:"pivotSelections,omitempty"`
// ForceSendFields is a list of field names (e.g. "MetricName") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "MetricName") 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 *PivotOrderBy) MarshalJSON() ([]byte, error) {
type NoMethod PivotOrderBy
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PivotSelection: A pair of dimension names and values. Rows with this
// dimension pivot pair are ordered by the metric's value. For example
// if pivots = {{"browser", "Chrome"}} and metric_name = "Sessions",
// then the rows will be sorted based on Sessions in Chrome.
// ---------|----------|----------------|----------|---------------- |
// Chrome | Chrome | Safari | Safari
// ---------|----------|----------------|----------|----------------
// Country | Sessions | Pages/Sessions | Sessions | Pages/Sessions
// ---------|----------|----------------|----------|---------------- US
// | 2 | 2 | 3 | 1
// ---------|----------|----------------|----------|----------------
// Canada | 3 | 1 | 4 | 1
// ---------|----------|----------------|----------|----------------
type PivotSelection struct {
// DimensionName: Must be a dimension name from the request.
DimensionName string `json:"dimensionName,omitempty"`
// DimensionValue: Order by only when the named dimension is this value.
DimensionValue string `json:"dimensionValue,omitempty"`
// ForceSendFields is a list of field names (e.g. "DimensionName") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DimensionName") 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 *PivotSelection) MarshalJSON() ([]byte, error) {
type NoMethod PivotSelection
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// PropertyQuota: Current state of all quotas for this Analytics
// Property. If any quota for a property is exhausted, all requests to
// that property will return Resource Exhausted errors.
type PropertyQuota struct {
// ConcurrentRequests: Standard Analytics Properties can send up to 10
// concurrent requests; Analytics 360 Properties can use up to 50
// concurrent requests.
ConcurrentRequests *QuotaStatus `json:"concurrentRequests,omitempty"`
// PotentiallyThresholdedRequestsPerHour: Analytics Properties can send
// up to 120 requests with potentially thresholded dimensions per hour.
// In a batch request, each report request is individually counted for
// this quota if the request contains potentially thresholded
// dimensions.
PotentiallyThresholdedRequestsPerHour *QuotaStatus `json:"potentiallyThresholdedRequestsPerHour,omitempty"`
// ServerErrorsPerProjectPerHour: Standard Analytics Properties and
// cloud project pairs can have up to 10 server errors per hour;
// Analytics 360 Properties and cloud project pairs can have up to 50
// server errors per hour.
ServerErrorsPerProjectPerHour *QuotaStatus `json:"serverErrorsPerProjectPerHour,omitempty"`
// TokensPerDay: Standard Analytics Properties can use up to 25,000
// tokens per day; Analytics 360 Properties can use 250,000 tokens per
// day. Most requests consume fewer than 10 tokens.
TokensPerDay *QuotaStatus `json:"tokensPerDay,omitempty"`
// TokensPerHour: Standard Analytics Properties can use up to 5,000
// tokens per hour; Analytics 360 Properties can use 50,000 tokens per
// hour. An API request consumes a single number of tokens, and that
// number is deducted from both the hourly and daily quotas.
TokensPerHour *QuotaStatus `json:"tokensPerHour,omitempty"`
// ForceSendFields is a list of field names (e.g. "ConcurrentRequests")
// to unconditionally include in API requests. By default, fields with
// empty or default 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. "ConcurrentRequests") 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 *PropertyQuota) MarshalJSON() ([]byte, error) {
type NoMethod PropertyQuota
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// QuotaStatus: Current state for a particular quota group.
type QuotaStatus struct {
// Consumed: Quota consumed by this request.
Consumed int64 `json:"consumed,omitempty"`
// Remaining: Quota remaining after this request.
Remaining int64 `json:"remaining,omitempty"`
// ForceSendFields is a list of field names (e.g. "Consumed") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Consumed") 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 *QuotaStatus) MarshalJSON() ([]byte, error) {
type NoMethod QuotaStatus
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ResponseMetaData: Response's metadata carrying additional information
// about the report content.
type ResponseMetaData struct {
// CurrencyCode: The currency code used in this report. Intended to be
// used in formatting currency metrics like `purchaseRevenue` for
// visualization. If currency_code was specified in the request, this
// response parameter will echo the request parameter; otherwise, this
// response parameter is the property's current currency_code. Currency
// codes are string encodings of currency types from the ISO 4217
// standard (https://en.wikipedia.org/wiki/ISO_4217); for example "USD",
// "EUR", "JPY". To learn more, see
// https://support.google.com/analytics/answer/9796179.
CurrencyCode string `json:"currencyCode,omitempty"`
// DataLossFromOtherRow: If true, indicates some buckets of dimension
// combinations are rolled into "(other)" row. This can happen for high
// cardinality reports.
DataLossFromOtherRow bool `json:"dataLossFromOtherRow,omitempty"`
// EmptyReason: If empty reason is specified, the report is empty for
// this reason.
EmptyReason string `json:"emptyReason,omitempty"`
// SchemaRestrictionResponse: Describes the schema restrictions actively
// enforced in creating this report. To learn more, see Access and
// data-restriction management
// (https://support.google.com/analytics/answer/10851388).
SchemaRestrictionResponse *SchemaRestrictionResponse `json:"schemaRestrictionResponse,omitempty"`
// TimeZone: The property's current timezone. Intended to be used to
// interpret time-based dimensions like `hour` and `minute`. Formatted
// as strings from the IANA Time Zone database
// (https://www.iana.org/time-zones); for example "America/New_York" or
// "Asia/Tokyo".
TimeZone string `json:"timeZone,omitempty"`
// ForceSendFields is a list of field names (e.g. "CurrencyCode") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "CurrencyCode") 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 *ResponseMetaData) MarshalJSON() ([]byte, error) {
type NoMethod ResponseMetaData
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Row: Report data for each row. For example if RunReportRequest
// contains: ```none "dimensions": [ { "name": "eventName" }, { "name":
// "countryId" } ], "metrics": [ { "name": "eventCount" } ] ``` One row
// with 'in_app_purchase' as the eventName, 'JP' as the countryId, and
// 15 as the eventCount, would be: ```none "dimensionValues": [ {
// "value": "in_app_purchase" }, { "value": "JP" } ], "metricValues": [
// { "value": "15" } ] ```
type Row struct {
// DimensionValues: List of requested dimension values. In a
// PivotReport, dimension_values are only listed for dimensions included
// in a pivot.
DimensionValues []*DimensionValue `json:"dimensionValues,omitempty"`
// MetricValues: List of requested visible metric values.
MetricValues []*MetricValue `json:"metricValues,omitempty"`
// ForceSendFields is a list of field names (e.g. "DimensionValues") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DimensionValues") 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 *Row) MarshalJSON() ([]byte, error) {
type NoMethod Row
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// RunPivotReportRequest: The request to generate a pivot report.
type RunPivotReportRequest struct {
// CohortSpec: Cohort group associated with this request. If there is a
// cohort group in the request the 'cohort' dimension must be present.
CohortSpec *CohortSpec `json:"cohortSpec,omitempty"`
// CurrencyCode: A currency code in ISO4217 format, such as "AED",
// "USD", "JPY". If the field is empty, the report uses the property's
// default currency.
CurrencyCode string `json:"currencyCode,omitempty"`
// DateRanges: The date range to retrieve event data for the report. If
// multiple date ranges are specified, event data from each date range
// is used in the report. A special dimension with field name
// "dateRange" can be included in a Pivot's field names; if included,
// the report compares between date ranges. In a cohort request, this
// `dateRanges` must be unspecified.
DateRanges []*DateRange `json:"dateRanges,omitempty"`
// DimensionFilter: The filter clause of dimensions. Dimensions must be
// requested to be used in this filter. Metrics cannot be used in this
// filter.
DimensionFilter *FilterExpression `json:"dimensionFilter,omitempty"`
// Dimensions: The dimensions requested. All defined dimensions must be
// used by one of the following: dimension_expression, dimension_filter,
// pivots, order_bys.
Dimensions []*Dimension `json:"dimensions,omitempty"`
// KeepEmptyRows: If false or unspecified, each row with all metrics
// equal to 0 will not be returned. If true, these rows will be returned
// if they are not separately removed by a filter.
KeepEmptyRows bool `json:"keepEmptyRows,omitempty"`
// MetricFilter: The filter clause of metrics. Applied at post
// aggregation phase, similar to SQL having-clause. Metrics must be
// requested to be used in this filter. Dimensions cannot be used in
// this filter.
MetricFilter *FilterExpression `json:"metricFilter,omitempty"`
// Metrics: The metrics requested, at least one metric needs to be
// specified. All defined metrics must be used by one of the following:
// metric_expression, metric_filter, order_bys.
Metrics []*Metric `json:"metrics,omitempty"`
// Pivots: Describes the visual format of the report's dimensions in
// columns or rows. The union of the fieldNames (dimension names) in all
// pivots must be a subset of dimension names defined in Dimensions. No
// two pivots can share a dimension. A dimension is only visible if it
// appears in a pivot.
Pivots []*Pivot `json:"pivots,omitempty"`
// Property: A Google Analytics GA4 property identifier whose events are
// tracked. Specified in the URL path and not the body. To learn more,
// see where to find your Property ID
// (https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
// Within a batch request, this property should either be unspecified or
// consistent with the batch-level property. Example: properties/1234
Property string `json:"property,omitempty"`
// ReturnPropertyQuota: Toggles whether to return the current state of
// this Analytics Property's quota. Quota is returned in PropertyQuota
// (#PropertyQuota).
ReturnPropertyQuota bool `json:"returnPropertyQuota,omitempty"`
// ForceSendFields is a list of field names (e.g. "CohortSpec") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "CohortSpec") 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 *RunPivotReportRequest) MarshalJSON() ([]byte, error) {
type NoMethod RunPivotReportRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// RunPivotReportResponse: The response pivot report table corresponding
// to a pivot request.
type RunPivotReportResponse struct {
// Aggregates: Aggregation of metric values. Can be totals, minimums, or
// maximums. The returned aggregations are controlled by the
// metric_aggregations in the pivot. The type of aggregation returned in
// each row is shown by the dimension_values which are set to
// "RESERVED_".
Aggregates []*Row `json:"aggregates,omitempty"`
// DimensionHeaders: Describes dimension columns. The number of
// DimensionHeaders and ordering of DimensionHeaders matches the
// dimensions present in rows.
DimensionHeaders []*DimensionHeader `json:"dimensionHeaders,omitempty"`
// Kind: Identifies what kind of resource this message is. This `kind`
// is always the fixed string "analyticsData#runPivotReport". Useful to
// distinguish between response types in JSON.
Kind string `json:"kind,omitempty"`
// Metadata: Metadata for the report.
Metadata *ResponseMetaData `json:"metadata,omitempty"`
// MetricHeaders: Describes metric columns. The number of MetricHeaders
// and ordering of MetricHeaders matches the metrics present in rows.
MetricHeaders []*MetricHeader `json:"metricHeaders,omitempty"`
// PivotHeaders: Summarizes the columns and rows created by a pivot.
// Each pivot in the request produces one header in the response. If we
// have a request like this: "pivots": [{ "fieldNames": ["country",
// "city"] }, { "fieldNames": "eventName" }] We will have the following
// `pivotHeaders` in the response: "pivotHeaders" : [{
// "dimensionHeaders": [{ "dimensionValues": [ { "value": "United
// Kingdom" }, { "value": "London" } ] }, { "dimensionValues": [ {
// "value": "Japan" }, { "value": "Osaka" } ] }] }, {
// "dimensionHeaders": [{ "dimensionValues": [{ "value": "session_start"
// }] }, { "dimensionValues": [{ "value": "scroll" }] }] }]
PivotHeaders []*PivotHeader `json:"pivotHeaders,omitempty"`
// PropertyQuota: This Analytics Property's quota state including this
// request.
PropertyQuota *PropertyQuota `json:"propertyQuota,omitempty"`
// Rows: Rows of dimension value combinations and metric values in the
// report.
Rows []*Row `json:"rows,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Aggregates") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "Aggregates") 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 *RunPivotReportResponse) MarshalJSON() ([]byte, error) {
type NoMethod RunPivotReportResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// RunRealtimeReportRequest: The request to generate a realtime report.
type RunRealtimeReportRequest struct {
// DimensionFilter: The filter clause of dimensions. Dimensions must be
// requested to be used in this filter. Metrics cannot be used in this
// filter.
DimensionFilter *FilterExpression `json:"dimensionFilter,omitempty"`
// Dimensions: The dimensions requested and displayed.
Dimensions []*Dimension `json:"dimensions,omitempty"`
// Limit: The number of rows to return. If unspecified, 10,000 rows are
// returned. The API returns a maximum of 100,000 rows per request, no
// matter how many you ask for. `limit` must be positive. The API can
// also return fewer rows than the requested `limit`, if there aren't as
// many dimension values as the `limit`. For instance, there are fewer
// than 300 possible values for the dimension `country`, so when
// reporting on only `country`, you can't get more than 300 rows, even
// if you set `limit` to a higher value.
Limit int64 `json:"limit,omitempty,string"`
// MetricAggregations: Aggregation of metrics. Aggregated metric values
// will be shown in rows where the dimension_values are set to
// "RESERVED_(MetricAggregation)".
//
// Possible values:
// "METRIC_AGGREGATION_UNSPECIFIED" - Unspecified operator.
// "TOTAL" - SUM operator.
// "MINIMUM" - Minimum operator.
// "MAXIMUM" - Maximum operator.
// "COUNT" - Count operator.
MetricAggregations []string `json:"metricAggregations,omitempty"`
// MetricFilter: The filter clause of metrics. Applied at post
// aggregation phase, similar to SQL having-clause. Metrics must be
// requested to be used in this filter. Dimensions cannot be used in
// this filter.
MetricFilter *FilterExpression `json:"metricFilter,omitempty"`
// Metrics: The metrics requested and displayed.
Metrics []*Metric `json:"metrics,omitempty"`
// MinuteRanges: The minute ranges of event data to read. If
// unspecified, one minute range for the last 30 minutes will be used.
// If multiple minute ranges are requested, each response row will
// contain a zero based minute range index. If two minute ranges
// overlap, the event data for the overlapping minutes is included in
// the response rows for both minute ranges.
MinuteRanges []*MinuteRange `json:"minuteRanges,omitempty"`
// OrderBys: Specifies how rows are ordered in the response.
OrderBys []*OrderBy `json:"orderBys,omitempty"`
// ReturnPropertyQuota: Toggles whether to return the current state of
// this Analytics Property's Realtime quota. Quota is returned in
// PropertyQuota (#PropertyQuota).
ReturnPropertyQuota bool `json:"returnPropertyQuota,omitempty"`
// ForceSendFields is a list of field names (e.g. "DimensionFilter") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DimensionFilter") 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 *RunRealtimeReportRequest) MarshalJSON() ([]byte, error) {
type NoMethod RunRealtimeReportRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// RunRealtimeReportResponse: The response realtime report table
// corresponding to a request.
type RunRealtimeReportResponse struct {
// DimensionHeaders: Describes dimension columns. The number of
// DimensionHeaders and ordering of DimensionHeaders matches the
// dimensions present in rows.
DimensionHeaders []*DimensionHeader `json:"dimensionHeaders,omitempty"`
// Kind: Identifies what kind of resource this message is. This `kind`
// is always the fixed string "analyticsData#runRealtimeReport". Useful
// to distinguish between response types in JSON.
Kind string `json:"kind,omitempty"`
// Maximums: If requested, the maximum values of metrics.
Maximums []*Row `json:"maximums,omitempty"`
// MetricHeaders: Describes metric columns. The number of MetricHeaders
// and ordering of MetricHeaders matches the metrics present in rows.
MetricHeaders []*MetricHeader `json:"metricHeaders,omitempty"`
// Minimums: If requested, the minimum values of metrics.
Minimums []*Row `json:"minimums,omitempty"`
// PropertyQuota: This Analytics Property's Realtime quota state
// including this request.
PropertyQuota *PropertyQuota `json:"propertyQuota,omitempty"`
// RowCount: The total number of rows in the query result. `rowCount` is
// independent of the number of rows returned in the response and the
// `limit` request parameter. For example if a query returns 175 rows
// and includes `limit` of 50 in the API request, the response will
// contain `rowCount` of 175 but only 50 rows.
RowCount int64 `json:"rowCount,omitempty"`
// Rows: Rows of dimension value combinations and metric values in the
// report.
Rows []*Row `json:"rows,omitempty"`
// Totals: If requested, the totaled values of metrics.
Totals []*Row `json:"totals,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "DimensionHeaders") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DimensionHeaders") 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 *RunRealtimeReportResponse) MarshalJSON() ([]byte, error) {
type NoMethod RunRealtimeReportResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// RunReportRequest: The request to generate a report.
type RunReportRequest struct {
// CohortSpec: Cohort group associated with this request. If there is a
// cohort group in the request the 'cohort' dimension must be present.
CohortSpec *CohortSpec `json:"cohortSpec,omitempty"`
// CurrencyCode: A currency code in ISO4217 format, such as "AED",
// "USD", "JPY". If the field is empty, the report uses the property's
// default currency.
CurrencyCode string `json:"currencyCode,omitempty"`
// DateRanges: Date ranges of data to read. If multiple date ranges are
// requested, each response row will contain a zero based date range
// index. If two date ranges overlap, the event data for the overlapping
// days is included in the response rows for both date ranges. In a
// cohort request, this `dateRanges` must be unspecified.
DateRanges []*DateRange `json:"dateRanges,omitempty"`
// DimensionFilter: Dimension filters allow you to ask for only specific
// dimension values in the report. To learn more, see Fundamentals of
// Dimension Filters
// (https://developers.google.com/analytics/devguides/reporting/data/v1/basics#dimension_filters)
// for examples. Metrics cannot be used in this filter.
DimensionFilter *FilterExpression `json:"dimensionFilter,omitempty"`
// Dimensions: The dimensions requested and displayed.
Dimensions []*Dimension `json:"dimensions,omitempty"`
// KeepEmptyRows: If false or unspecified, each row with all metrics
// equal to 0 will not be returned. If true, these rows will be returned
// if they are not separately removed by a filter.
KeepEmptyRows bool `json:"keepEmptyRows,omitempty"`
// Limit: The number of rows to return. If unspecified, 10,000 rows are
// returned. The API returns a maximum of 100,000 rows per request, no
// matter how many you ask for. `limit` must be positive. The API can
// also return fewer rows than the requested `limit`, if there aren't as
// many dimension values as the `limit`. For instance, there are fewer
// than 300 possible values for the dimension `country`, so when
// reporting on only `country`, you can't get more than 300 rows, even
// if you set `limit` to a higher value. To learn more about this
// pagination parameter, see Pagination
// (https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).
Limit int64 `json:"limit,omitempty,string"`
// MetricAggregations: Aggregation of metrics. Aggregated metric values
// will be shown in rows where the dimension_values are set to
// "RESERVED_(MetricAggregation)".
//
// Possible values:
// "METRIC_AGGREGATION_UNSPECIFIED" - Unspecified operator.
// "TOTAL" - SUM operator.
// "MINIMUM" - Minimum operator.
// "MAXIMUM" - Maximum operator.
// "COUNT" - Count operator.
MetricAggregations []string `json:"metricAggregations,omitempty"`
// MetricFilter: The filter clause of metrics. Applied at post
// aggregation phase, similar to SQL having-clause. Dimensions cannot be
// used in this filter.
MetricFilter *FilterExpression `json:"metricFilter,omitempty"`
// Metrics: The metrics requested and displayed.
Metrics []*Metric `json:"metrics,omitempty"`
// Offset: The row count of the start row. The first row is counted as
// row 0. When paging, the first request does not specify offset; or
// equivalently, sets offset to 0; the first request returns the first
// `limit` of rows. The second request sets offset to the `limit` of the
// first request; the second request returns the second `limit` of rows.
// To learn more about this pagination parameter, see Pagination
// (https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).
Offset int64 `json:"offset,omitempty,string"`
// OrderBys: Specifies how rows are ordered in the response.
OrderBys []*OrderBy `json:"orderBys,omitempty"`
// Property: A Google Analytics GA4 property identifier whose events are
// tracked. Specified in the URL path and not the body. To learn more,
// see where to find your Property ID
// (https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
// Within a batch request, this property should either be unspecified or
// consistent with the batch-level property. Example: properties/1234
Property string `json:"property,omitempty"`
// ReturnPropertyQuota: Toggles whether to return the current state of
// this Analytics Property's quota. Quota is returned in PropertyQuota
// (#PropertyQuota).
ReturnPropertyQuota bool `json:"returnPropertyQuota,omitempty"`
// ForceSendFields is a list of field names (e.g. "CohortSpec") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "CohortSpec") 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 *RunReportRequest) MarshalJSON() ([]byte, error) {
type NoMethod RunReportRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// RunReportResponse: The response report table corresponding to a
// request.
type RunReportResponse struct {
// DimensionHeaders: Describes dimension columns. The number of
// DimensionHeaders and ordering of DimensionHeaders matches the
// dimensions present in rows.
DimensionHeaders []*DimensionHeader `json:"dimensionHeaders,omitempty"`
// Kind: Identifies what kind of resource this message is. This `kind`
// is always the fixed string "analyticsData#runReport". Useful to
// distinguish between response types in JSON.
Kind string `json:"kind,omitempty"`
// Maximums: If requested, the maximum values of metrics.
Maximums []*Row `json:"maximums,omitempty"`
// Metadata: Metadata for the report.
Metadata *ResponseMetaData `json:"metadata,omitempty"`
// MetricHeaders: Describes metric columns. The number of MetricHeaders
// and ordering of MetricHeaders matches the metrics present in rows.
MetricHeaders []*MetricHeader `json:"metricHeaders,omitempty"`
// Minimums: If requested, the minimum values of metrics.
Minimums []*Row `json:"minimums,omitempty"`
// PropertyQuota: This Analytics Property's quota state including this
// request.
PropertyQuota *PropertyQuota `json:"propertyQuota,omitempty"`
// RowCount: The total number of rows in the query result. `rowCount` is
// independent of the number of rows returned in the response, the
// `limit` request parameter, and the `offset` request parameter. For
// example if a query returns 175 rows and includes `limit` of 50 in the
// API request, the response will contain `rowCount` of 175 but only 50
// rows. To learn more about this pagination parameter, see Pagination
// (https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).
RowCount int64 `json:"rowCount,omitempty"`
// Rows: Rows of dimension value combinations and metric values in the
// report.
Rows []*Row `json:"rows,omitempty"`
// Totals: If requested, the totaled values of metrics.
Totals []*Row `json:"totals,omitempty"`
// ServerResponse contains the HTTP response code and headers from the
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "DimensionHeaders") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "DimensionHeaders") 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 *RunReportResponse) MarshalJSON() ([]byte, error) {
type NoMethod RunReportResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// SchemaRestrictionResponse: The schema restrictions actively enforced
// in creating this report. To learn more, see Access and
// data-restriction management
// (https://support.google.com/analytics/answer/10851388).
type SchemaRestrictionResponse struct {
// ActiveMetricRestrictions: All restrictions actively enforced in
// creating the report. For example, `purchaseRevenue` always has the
// restriction type `REVENUE_DATA`. However, this active response
// restriction is only populated if the user's custom role disallows
// access to `REVENUE_DATA`.
ActiveMetricRestrictions []*ActiveMetricRestriction `json:"activeMetricRestrictions,omitempty"`
// ForceSendFields is a list of field names (e.g.
// "ActiveMetricRestrictions") to unconditionally include in API
// requests. By default, fields with empty or default 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. "ActiveMetricRestrictions")
// 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 *SchemaRestrictionResponse) MarshalJSON() ([]byte, error) {
type NoMethod SchemaRestrictionResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// StringFilter: The filter for string
type StringFilter struct {
// CaseSensitive: If true, the string value is case sensitive.
CaseSensitive bool `json:"caseSensitive,omitempty"`
// MatchType: The match type for this filter.
//
// Possible values:
// "MATCH_TYPE_UNSPECIFIED" - Unspecified
// "EXACT" - Exact match of the string value.
// "BEGINS_WITH" - Begins with the string value.
// "ENDS_WITH" - Ends with the string value.
// "CONTAINS" - Contains the string value.
// "FULL_REGEXP" - Full regular expression match with the string
// value.
// "PARTIAL_REGEXP" - Partial regular expression match with the string
// value.
MatchType string `json:"matchType,omitempty"`
// Value: The string value used for the matching.
Value string `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "CaseSensitive") to
// unconditionally include in API requests. By default, fields with
// empty or default 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. "CaseSensitive") 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 *StringFilter) MarshalJSON() ([]byte, error) {
type NoMethod StringFilter
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// method id "analyticsdata.properties.batchRunPivotReports":
type PropertiesBatchRunPivotReportsCall struct {
s *Service
propertyid string
batchrunpivotreportsrequest *BatchRunPivotReportsRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// BatchRunPivotReports: Returns multiple pivot reports in a batch. All
// reports must be for the same GA4 Property.
//
// - property: A Google Analytics GA4 property identifier whose events
// are tracked. Specified in the URL path and not the body. To learn
// more, see where to find your Property ID
// (https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
// This property must be specified for the batch. The property within
// RunPivotReportRequest may either be unspecified or consistent with
// this property. Example: properties/1234.
func (r *PropertiesService) BatchRunPivotReports(propertyid string, batchrunpivotreportsrequest *BatchRunPivotReportsRequest) *PropertiesBatchRunPivotReportsCall {
c := &PropertiesBatchRunPivotReportsCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.propertyid = propertyid
c.batchrunpivotreportsrequest = batchrunpivotreportsrequest
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 *PropertiesBatchRunPivotReportsCall) Fields(s ...googleapi.Field) *PropertiesBatchRunPivotReportsCall {
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 *PropertiesBatchRunPivotReportsCall) Context(ctx context.Context) *PropertiesBatchRunPivotReportsCall {
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 *PropertiesBatchRunPivotReportsCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PropertiesBatchRunPivotReportsCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20211201")
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.batchrunpivotreportsrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v1beta/{+property}:batchRunPivotReports")
urls += "?" + c.urlParams_.Encode()
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"property": c.propertyid,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "analyticsdata.properties.batchRunPivotReports" call.
// Exactly one of *BatchRunPivotReportsResponse or error will be
// non-nil. Any non-2xx status code is an error. Response headers are in
// either *BatchRunPivotReportsResponse.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 *PropertiesBatchRunPivotReportsCall) Do(opts ...googleapi.CallOption) (*BatchRunPivotReportsResponse, 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 := &BatchRunPivotReportsResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Returns multiple pivot reports in a batch. All reports must be for the same GA4 Property.",
// "flatPath": "v1beta/properties/{propertiesId}:batchRunPivotReports",
// "httpMethod": "POST",
// "id": "analyticsdata.properties.batchRunPivotReports",
// "parameterOrder": [
// "property"
// ],
// "parameters": {
// "property": {
// "description": "A Google Analytics GA4 property identifier whose events are tracked. Specified in the URL path and not the body. To learn more, see [where to find your Property ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id). This property must be specified for the batch. The property within RunPivotReportRequest may either be unspecified or consistent with this property. Example: properties/1234",
// "location": "path",
// "pattern": "^properties/[^/]+$",
// "required": true,
// "type": "string"
// }
// },
// "path": "v1beta/{+property}:batchRunPivotReports",
// "request": {
// "$ref": "BatchRunPivotReportsRequest"
// },
// "response": {
// "$ref": "BatchRunPivotReportsResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/analytics",
// "https://www.googleapis.com/auth/analytics.readonly"
// ]
// }
}
// method id "analyticsdata.properties.batchRunReports":
type PropertiesBatchRunReportsCall struct {
s *Service
propertyid string
batchrunreportsrequest *BatchRunReportsRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// BatchRunReports: Returns multiple reports in a batch. All reports
// must be for the same GA4 Property.
//
// - property: A Google Analytics GA4 property identifier whose events
// are tracked. Specified in the URL path and not the body. To learn
// more, see where to find your Property ID
// (https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
// This property must be specified for the batch. The property within
// RunReportRequest may either be unspecified or consistent with this
// property. Example: properties/1234.
func (r *PropertiesService) BatchRunReports(propertyid string, batchrunreportsrequest *BatchRunReportsRequest) *PropertiesBatchRunReportsCall {
c := &PropertiesBatchRunReportsCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.propertyid = propertyid
c.batchrunreportsrequest = batchrunreportsrequest
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 *PropertiesBatchRunReportsCall) Fields(s ...googleapi.Field) *PropertiesBatchRunReportsCall {
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 *PropertiesBatchRunReportsCall) Context(ctx context.Context) *PropertiesBatchRunReportsCall {
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 *PropertiesBatchRunReportsCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PropertiesBatchRunReportsCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20211201")
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.batchrunreportsrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v1beta/{+property}:batchRunReports")
urls += "?" + c.urlParams_.Encode()
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"property": c.propertyid,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "analyticsdata.properties.batchRunReports" call.
// Exactly one of *BatchRunReportsResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *BatchRunReportsResponse.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 *PropertiesBatchRunReportsCall) Do(opts ...googleapi.CallOption) (*BatchRunReportsResponse, 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 := &BatchRunReportsResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Returns multiple reports in a batch. All reports must be for the same GA4 Property.",
// "flatPath": "v1beta/properties/{propertiesId}:batchRunReports",
// "httpMethod": "POST",
// "id": "analyticsdata.properties.batchRunReports",
// "parameterOrder": [
// "property"
// ],
// "parameters": {
// "property": {
// "description": "A Google Analytics GA4 property identifier whose events are tracked. Specified in the URL path and not the body. To learn more, see [where to find your Property ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id). This property must be specified for the batch. The property within RunReportRequest may either be unspecified or consistent with this property. Example: properties/1234",
// "location": "path",
// "pattern": "^properties/[^/]+$",
// "required": true,
// "type": "string"
// }
// },
// "path": "v1beta/{+property}:batchRunReports",
// "request": {
// "$ref": "BatchRunReportsRequest"
// },
// "response": {
// "$ref": "BatchRunReportsResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/analytics",
// "https://www.googleapis.com/auth/analytics.readonly"
// ]
// }
}
// method id "analyticsdata.properties.checkCompatibility":
type PropertiesCheckCompatibilityCall struct {
s *Service
propertyid string
checkcompatibilityrequest *CheckCompatibilityRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// CheckCompatibility: This compatibility method lists dimensions and
// metrics that can be added to a report request and maintain
// compatibility. This method fails if the request's dimensions and
// metrics are incompatible. In Google Analytics, reports fail if they
// request incompatible dimensions and/or metrics; in that case, you
// will need to remove dimensions and/or metrics from the incompatible
// report until the report is compatible. The Realtime and Core reports
// have different compatibility rules. This method checks compatibility
// for Core reports.
//
// - property: A Google Analytics GA4 property identifier whose events
// are tracked. To learn more, see where to find your Property ID
// (https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
// `property` should be the same value as in your `runReport` request.
// Example: properties/1234 Set the Property ID to 0 for compatibility
// checking on dimensions and metrics common to all properties. In
// this special mode, this method will not return custom dimensions
// and metrics.
func (r *PropertiesService) CheckCompatibility(propertyid string, checkcompatibilityrequest *CheckCompatibilityRequest) *PropertiesCheckCompatibilityCall {
c := &PropertiesCheckCompatibilityCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.propertyid = propertyid
c.checkcompatibilityrequest = checkcompatibilityrequest
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 *PropertiesCheckCompatibilityCall) Fields(s ...googleapi.Field) *PropertiesCheckCompatibilityCall {
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 *PropertiesCheckCompatibilityCall) Context(ctx context.Context) *PropertiesCheckCompatibilityCall {
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 *PropertiesCheckCompatibilityCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PropertiesCheckCompatibilityCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20211201")
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.checkcompatibilityrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v1beta/{+property}:checkCompatibility")
urls += "?" + c.urlParams_.Encode()
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"property": c.propertyid,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "analyticsdata.properties.checkCompatibility" call.
// Exactly one of *CheckCompatibilityResponse or error will be non-nil.
// Any non-2xx status code is an error. Response headers are in either
// *CheckCompatibilityResponse.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 *PropertiesCheckCompatibilityCall) Do(opts ...googleapi.CallOption) (*CheckCompatibilityResponse, 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 := &CheckCompatibilityResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "This compatibility method lists dimensions and metrics that can be added to a report request and maintain compatibility. This method fails if the request's dimensions and metrics are incompatible. In Google Analytics, reports fail if they request incompatible dimensions and/or metrics; in that case, you will need to remove dimensions and/or metrics from the incompatible report until the report is compatible. The Realtime and Core reports have different compatibility rules. This method checks compatibility for Core reports.",
// "flatPath": "v1beta/properties/{propertiesId}:checkCompatibility",
// "httpMethod": "POST",
// "id": "analyticsdata.properties.checkCompatibility",
// "parameterOrder": [
// "property"
// ],
// "parameters": {
// "property": {
// "description": "A Google Analytics GA4 property identifier whose events are tracked. To learn more, see [where to find your Property ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id). `property` should be the same value as in your `runReport` request. Example: properties/1234 Set the Property ID to 0 for compatibility checking on dimensions and metrics common to all properties. In this special mode, this method will not return custom dimensions and metrics.",
// "location": "path",
// "pattern": "^properties/[^/]+$",
// "required": true,
// "type": "string"
// }
// },
// "path": "v1beta/{+property}:checkCompatibility",
// "request": {
// "$ref": "CheckCompatibilityRequest"
// },
// "response": {
// "$ref": "CheckCompatibilityResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/analytics",
// "https://www.googleapis.com/auth/analytics.readonly"
// ]
// }
}
// method id "analyticsdata.properties.getMetadata":
type PropertiesGetMetadataCall struct {
s *Service
nameid string
urlParams_ gensupport.URLParams
ifNoneMatch_ string
ctx_ context.Context
header_ http.Header
}
// GetMetadata: Returns metadata for dimensions and metrics available in
// reporting methods. Used to explore the dimensions and metrics. In
// this method, a Google Analytics GA4 Property Identifier is specified
// in the request, and the metadata response includes Custom dimensions
// and metrics as well as Universal metadata. For example if a custom
// metric with parameter name `levels_unlocked` is registered to a
// property, the Metadata response will contain
// `customEvent:levels_unlocked`. Universal metadata are dimensions and
// metrics applicable to any property such as `country` and
// `totalUsers`.
//
// - name: The resource name of the metadata to retrieve. This name
// field is specified in the URL path and not URL parameters. Property
// is a numeric Google Analytics GA4 Property identifier. To learn
// more, see where to find your Property ID
// (https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
// Example: properties/1234/metadata Set the Property ID to 0 for
// dimensions and metrics common to all properties. In this special
// mode, this method will not return custom dimensions and metrics.
func (r *PropertiesService) GetMetadata(nameid string) *PropertiesGetMetadataCall {
c := &PropertiesGetMetadataCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.nameid = nameid
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 *PropertiesGetMetadataCall) Fields(s ...googleapi.Field) *PropertiesGetMetadataCall {
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 *PropertiesGetMetadataCall) IfNoneMatch(entityTag string) *PropertiesGetMetadataCall {
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 *PropertiesGetMetadataCall) Context(ctx context.Context) *PropertiesGetMetadataCall {
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 *PropertiesGetMetadataCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PropertiesGetMetadataCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20211201")
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)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v1beta/{+name}")
urls += "?" + c.urlParams_.Encode()
req, err := http.NewRequest("GET", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"name": c.nameid,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "analyticsdata.properties.getMetadata" call.
// Exactly one of *Metadata or error will be non-nil. Any non-2xx status
// code is an error. Response headers are in either
// *Metadata.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 *PropertiesGetMetadataCall) Do(opts ...googleapi.CallOption) (*Metadata, 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 := &Metadata{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Returns metadata for dimensions and metrics available in reporting methods. Used to explore the dimensions and metrics. In this method, a Google Analytics GA4 Property Identifier is specified in the request, and the metadata response includes Custom dimensions and metrics as well as Universal metadata. For example if a custom metric with parameter name `levels_unlocked` is registered to a property, the Metadata response will contain `customEvent:levels_unlocked`. Universal metadata are dimensions and metrics applicable to any property such as `country` and `totalUsers`.",
// "flatPath": "v1beta/properties/{propertiesId}/metadata",
// "httpMethod": "GET",
// "id": "analyticsdata.properties.getMetadata",
// "parameterOrder": [
// "name"
// ],
// "parameters": {
// "name": {
// "description": "Required. The resource name of the metadata to retrieve. This name field is specified in the URL path and not URL parameters. Property is a numeric Google Analytics GA4 Property identifier. To learn more, see [where to find your Property ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id). Example: properties/1234/metadata Set the Property ID to 0 for dimensions and metrics common to all properties. In this special mode, this method will not return custom dimensions and metrics.",
// "location": "path",
// "pattern": "^properties/[^/]+/metadata$",
// "required": true,
// "type": "string"
// }
// },
// "path": "v1beta/{+name}",
// "response": {
// "$ref": "Metadata"
// },
// "scopes": [
// "https://www.googleapis.com/auth/analytics",
// "https://www.googleapis.com/auth/analytics.readonly"
// ]
// }
}
// method id "analyticsdata.properties.runPivotReport":
type PropertiesRunPivotReportCall struct {
s *Service
propertyid string
runpivotreportrequest *RunPivotReportRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// RunPivotReport: Returns a customized pivot report of your Google
// Analytics event data. Pivot reports are more advanced and expressive
// formats than regular reports. In a pivot report, dimensions are only
// visible if they are included in a pivot. Multiple pivots can be
// specified to further dissect your data.
//
// - property: A Google Analytics GA4 property identifier whose events
// are tracked. Specified in the URL path and not the body. To learn
// more, see where to find your Property ID
// (https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
// Within a batch request, this property should either be unspecified
// or consistent with the batch-level property. Example:
// properties/1234.
func (r *PropertiesService) RunPivotReport(propertyid string, runpivotreportrequest *RunPivotReportRequest) *PropertiesRunPivotReportCall {
c := &PropertiesRunPivotReportCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.propertyid = propertyid
c.runpivotreportrequest = runpivotreportrequest
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 *PropertiesRunPivotReportCall) Fields(s ...googleapi.Field) *PropertiesRunPivotReportCall {
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 *PropertiesRunPivotReportCall) Context(ctx context.Context) *PropertiesRunPivotReportCall {
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 *PropertiesRunPivotReportCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PropertiesRunPivotReportCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20211201")
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.runpivotreportrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v1beta/{+property}:runPivotReport")
urls += "?" + c.urlParams_.Encode()
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"property": c.propertyid,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "analyticsdata.properties.runPivotReport" call.
// Exactly one of *RunPivotReportResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *RunPivotReportResponse.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 *PropertiesRunPivotReportCall) Do(opts ...googleapi.CallOption) (*RunPivotReportResponse, 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 := &RunPivotReportResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Returns a customized pivot report of your Google Analytics event data. Pivot reports are more advanced and expressive formats than regular reports. In a pivot report, dimensions are only visible if they are included in a pivot. Multiple pivots can be specified to further dissect your data.",
// "flatPath": "v1beta/properties/{propertiesId}:runPivotReport",
// "httpMethod": "POST",
// "id": "analyticsdata.properties.runPivotReport",
// "parameterOrder": [
// "property"
// ],
// "parameters": {
// "property": {
// "description": "A Google Analytics GA4 property identifier whose events are tracked. Specified in the URL path and not the body. To learn more, see [where to find your Property ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id). Within a batch request, this property should either be unspecified or consistent with the batch-level property. Example: properties/1234",
// "location": "path",
// "pattern": "^properties/[^/]+$",
// "required": true,
// "type": "string"
// }
// },
// "path": "v1beta/{+property}:runPivotReport",
// "request": {
// "$ref": "RunPivotReportRequest"
// },
// "response": {
// "$ref": "RunPivotReportResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/analytics",
// "https://www.googleapis.com/auth/analytics.readonly"
// ]
// }
}
// method id "analyticsdata.properties.runRealtimeReport":
type PropertiesRunRealtimeReportCall struct {
s *Service
propertyid string
runrealtimereportrequest *RunRealtimeReportRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// RunRealtimeReport: The Google Analytics Realtime API returns a
// customized report of realtime event data for your property. These
// reports show events and usage from the last 30 minutes.
//
// - property: A Google Analytics GA4 property identifier whose events
// are tracked. Specified in the URL path and not the body. To learn
// more, see where to find your Property ID
// (https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
// Example: properties/1234.
func (r *PropertiesService) RunRealtimeReport(propertyid string, runrealtimereportrequest *RunRealtimeReportRequest) *PropertiesRunRealtimeReportCall {
c := &PropertiesRunRealtimeReportCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.propertyid = propertyid
c.runrealtimereportrequest = runrealtimereportrequest
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 *PropertiesRunRealtimeReportCall) Fields(s ...googleapi.Field) *PropertiesRunRealtimeReportCall {
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 *PropertiesRunRealtimeReportCall) Context(ctx context.Context) *PropertiesRunRealtimeReportCall {
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 *PropertiesRunRealtimeReportCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PropertiesRunRealtimeReportCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20211201")
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.runrealtimereportrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v1beta/{+property}:runRealtimeReport")
urls += "?" + c.urlParams_.Encode()
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"property": c.propertyid,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "analyticsdata.properties.runRealtimeReport" call.
// Exactly one of *RunRealtimeReportResponse or error will be non-nil.
// Any non-2xx status code is an error. Response headers are in either
// *RunRealtimeReportResponse.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 *PropertiesRunRealtimeReportCall) Do(opts ...googleapi.CallOption) (*RunRealtimeReportResponse, 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 := &RunRealtimeReportResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "The Google Analytics Realtime API returns a customized report of realtime event data for your property. These reports show events and usage from the last 30 minutes.",
// "flatPath": "v1beta/properties/{propertiesId}:runRealtimeReport",
// "httpMethod": "POST",
// "id": "analyticsdata.properties.runRealtimeReport",
// "parameterOrder": [
// "property"
// ],
// "parameters": {
// "property": {
// "description": "A Google Analytics GA4 property identifier whose events are tracked. Specified in the URL path and not the body. To learn more, see [where to find your Property ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id). Example: properties/1234",
// "location": "path",
// "pattern": "^properties/[^/]+$",
// "required": true,
// "type": "string"
// }
// },
// "path": "v1beta/{+property}:runRealtimeReport",
// "request": {
// "$ref": "RunRealtimeReportRequest"
// },
// "response": {
// "$ref": "RunRealtimeReportResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/analytics",
// "https://www.googleapis.com/auth/analytics.readonly"
// ]
// }
}
// method id "analyticsdata.properties.runReport":
type PropertiesRunReportCall struct {
s *Service
propertyid string
runreportrequest *RunReportRequest
urlParams_ gensupport.URLParams
ctx_ context.Context
header_ http.Header
}
// RunReport: Returns a customized report of your Google Analytics event
// data. Reports contain statistics derived from data collected by the
// Google Analytics tracking code. The data returned from the API is as
// a table with columns for the requested dimensions and metrics.
// Metrics are individual measurements of user activity on your
// property, such as active users or event count. Dimensions break down
// metrics across some common criteria, such as country or event name.
//
// - property: A Google Analytics GA4 property identifier whose events
// are tracked. Specified in the URL path and not the body. To learn
// more, see where to find your Property ID
// (https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
// Within a batch request, this property should either be unspecified
// or consistent with the batch-level property. Example:
// properties/1234.
func (r *PropertiesService) RunReport(propertyid string, runreportrequest *RunReportRequest) *PropertiesRunReportCall {
c := &PropertiesRunReportCall{s: r.s, urlParams_: make(gensupport.URLParams)}
c.propertyid = propertyid
c.runreportrequest = runreportrequest
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 *PropertiesRunReportCall) Fields(s ...googleapi.Field) *PropertiesRunReportCall {
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 *PropertiesRunReportCall) Context(ctx context.Context) *PropertiesRunReportCall {
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 *PropertiesRunReportCall) Header() http.Header {
if c.header_ == nil {
c.header_ = make(http.Header)
}
return c.header_
}
func (c *PropertiesRunReportCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20211201")
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.runreportrequest)
if err != nil {
return nil, err
}
reqHeaders.Set("Content-Type", "application/json")
c.urlParams_.Set("alt", alt)
c.urlParams_.Set("prettyPrint", "false")
urls := googleapi.ResolveRelative(c.s.BasePath, "v1beta/{+property}:runReport")
urls += "?" + c.urlParams_.Encode()
req, err := http.NewRequest("POST", urls, body)
if err != nil {
return nil, err
}
req.Header = reqHeaders
googleapi.Expand(req.URL, map[string]string{
"property": c.propertyid,
})
return gensupport.SendRequest(c.ctx_, c.s.client, req)
}
// Do executes the "analyticsdata.properties.runReport" call.
// Exactly one of *RunReportResponse or error will be non-nil. Any
// non-2xx status code is an error. Response headers are in either
// *RunReportResponse.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 *PropertiesRunReportCall) Do(opts ...googleapi.CallOption) (*RunReportResponse, 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 := &RunReportResponse{
ServerResponse: googleapi.ServerResponse{
Header: res.Header,
HTTPStatusCode: res.StatusCode,
},
}
target := &ret
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Returns a customized report of your Google Analytics event data. Reports contain statistics derived from data collected by the Google Analytics tracking code. The data returned from the API is as a table with columns for the requested dimensions and metrics. Metrics are individual measurements of user activity on your property, such as active users or event count. Dimensions break down metrics across some common criteria, such as country or event name.",
// "flatPath": "v1beta/properties/{propertiesId}:runReport",
// "httpMethod": "POST",
// "id": "analyticsdata.properties.runReport",
// "parameterOrder": [
// "property"
// ],
// "parameters": {
// "property": {
// "description": "A Google Analytics GA4 property identifier whose events are tracked. Specified in the URL path and not the body. To learn more, see [where to find your Property ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id). Within a batch request, this property should either be unspecified or consistent with the batch-level property. Example: properties/1234",
// "location": "path",
// "pattern": "^properties/[^/]+$",
// "required": true,
// "type": "string"
// }
// },
// "path": "v1beta/{+property}:runReport",
// "request": {
// "$ref": "RunReportRequest"
// },
// "response": {
// "$ref": "RunReportResponse"
// },
// "scopes": [
// "https://www.googleapis.com/auth/analytics",
// "https://www.googleapis.com/auth/analytics.readonly"
// ]
// }
}
|