1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996
// Proto file describing policy review statuses. /// Container for enum describing possible asset field types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ServedAssetFieldTypeEnum {} pub mod served_asset_field_type_enum { /// The possible asset field types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ServedAssetFieldType { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The asset is used in headline 1. Headline1 = 2, /// The asset is used in headline 2. Headline2 = 3, /// The asset is used in headline 3. Headline3 = 4, /// The asset is used in description 1. Description1 = 5, /// The asset is used in description 2. Description2 = 6, } } // Proto file describing call conversion reporting state. /// Container for enum describing possible data types for call conversion /// reporting state. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CallConversionReportingStateEnum {} pub mod call_conversion_reporting_state_enum { /// Possible data types for a call conversion action state. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CallConversionReportingState { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Call conversion action is disabled. Disabled = 2, /// Call conversion action will use call conversion type set at the /// account level. UseAccountLevelCallConversionAction = 3, /// Call conversion action will use call conversion type set at the resource /// (call only ads/call extensions) level. UseResourceLevelCallConversionAction = 4, } } // Proto file describing display ad format settings. /// Container for display ad format settings. #[derive(Clone, PartialEq, ::prost::Message)] pub struct DisplayAdFormatSettingEnum {} pub mod display_ad_format_setting_enum { /// Enumerates display ad format settings. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum DisplayAdFormatSetting { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Text, image and native formats. AllFormats = 2, /// Text and image formats. NonNative = 3, /// Native format, i.e. the format rendering is controlled by the publisher /// and not by Google. Native = 4, } } // Proto file describing display upload product types. /// Container for display upload product types. Product types that have the word /// "DYNAMIC" in them must be associated with a campaign that has a dynamic /// remarketing feed. See https://support.google.com/google-ads/answer/6053288 /// for more info about dynamic remarketing. Other product types are regarded /// as "static" and do not have this requirement. #[derive(Clone, PartialEq, ::prost::Message)] pub struct DisplayUploadProductTypeEnum {} pub mod display_upload_product_type_enum { /// Enumerates display upload product types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum DisplayUploadProductType { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// HTML5 upload ad. This product type requires the upload_media_bundle /// field in DisplayUploadAdInfo to be set. Html5UploadAd = 2, /// Dynamic HTML5 education ad. This product type requires the /// upload_media_bundle field in DisplayUploadAdInfo to be set. Can only be /// used in an education campaign. DynamicHtml5EducationAd = 3, /// Dynamic HTML5 flight ad. This product type requires the /// upload_media_bundle field in DisplayUploadAdInfo to be set. Can only be /// used in a flight campaign. DynamicHtml5FlightAd = 4, /// Dynamic HTML5 hotel and rental ad. This product type requires the /// upload_media_bundle field in DisplayUploadAdInfo to be set. Can only be /// used in a hotel campaign. DynamicHtml5HotelRentalAd = 5, /// Dynamic HTML5 job ad. This product type requires the /// upload_media_bundle field in DisplayUploadAdInfo to be set. Can only be /// used in a job campaign. DynamicHtml5JobAd = 6, /// Dynamic HTML5 local ad. This product type requires the /// upload_media_bundle field in DisplayUploadAdInfo to be set. Can only be /// used in a local campaign. DynamicHtml5LocalAd = 7, /// Dynamic HTML5 real estate ad. This product type requires the /// upload_media_bundle field in DisplayUploadAdInfo to be set. Can only be /// used in a real estate campaign. DynamicHtml5RealEstateAd = 8, /// Dynamic HTML5 custom ad. This product type requires the /// upload_media_bundle field in DisplayUploadAdInfo to be set. Can only be /// used in a custom campaign. DynamicHtml5CustomAd = 9, /// Dynamic HTML5 travel ad. This product type requires the /// upload_media_bundle field in DisplayUploadAdInfo to be set. Can only be /// used in a travel campaign. DynamicHtml5TravelAd = 10, /// Dynamic HTML5 hotel ad. This product type requires the /// upload_media_bundle field in DisplayUploadAdInfo to be set. Can only be /// used in a hotel campaign. DynamicHtml5HotelAd = 11, } } // Proto file describing app store types for a legacy app install ad. /// Container for enum describing app store type in a legacy app install ad. #[derive(Clone, PartialEq, ::prost::Message)] pub struct LegacyAppInstallAdAppStoreEnum {} pub mod legacy_app_install_ad_app_store_enum { /// App store type in a legacy app install ad. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum LegacyAppInstallAdAppStore { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Apple iTunes. AppleAppStore = 2, /// Google Play. GooglePlay = 3, /// Windows Store. WindowsStore = 4, /// Windows Phone Store. WindowsPhoneStore = 5, /// The app is hosted in a Chinese app store. CnAppStore = 6, } } // Proto file describing mime types. /// Container for enum describing the mime types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct MimeTypeEnum {} pub mod mime_type_enum { /// The mime type #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MimeType { /// The mime type has not been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// MIME type of image/jpeg. ImageJpeg = 2, /// MIME type of image/gif. ImageGif = 3, /// MIME type of image/png. ImagePng = 4, /// MIME type of application/x-shockwave-flash. Flash = 5, /// MIME type of text/html. TextHtml = 6, /// MIME type of application/pdf. Pdf = 7, /// MIME type of application/msword. Msword = 8, /// MIME type of application/vnd.ms-excel. Msexcel = 9, /// MIME type of application/rtf. Rtf = 10, /// MIME type of audio/wav. AudioWav = 11, /// MIME type of audio/mp3. AudioMp3 = 12, /// MIME type of application/x-html5-ad-zip. Html5AdZip = 13, } } // Proto file describing target impression share goal. /// Container for enum describing where on the first search results page the /// automated bidding system should target impressions for the /// TargetImpressionShare bidding strategy. #[derive(Clone, PartialEq, ::prost::Message)] pub struct TargetImpressionShareLocationEnum {} pub mod target_impression_share_location_enum { /// Enum describing possible goals. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum TargetImpressionShareLocation { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Any location on the web page. AnywhereOnPage = 2, /// Top box of ads. TopOfPage = 3, /// Top slot in the top box of ads. AbsoluteTopOfPage = 4, } } // Proto file describing age range types. /// Container for enum describing the type of demographic age ranges. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AgeRangeTypeEnum {} pub mod age_range_type_enum { /// The type of demographic age ranges (e.g. between 18 and 24 years old). #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AgeRangeType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Between 18 and 24 years old. AgeRange1824 = 503001, /// Between 25 and 34 years old. AgeRange2534 = 503002, /// Between 35 and 44 years old. AgeRange3544 = 503003, /// Between 45 and 54 years old. AgeRange4554 = 503004, /// Between 55 and 64 years old. AgeRange5564 = 503005, /// 65 years old and beyond. AgeRange65Up = 503006, /// Undetermined age range. AgeRangeUndetermined = 503999, } } // Proto file describing criteria types. /// Represents a criterion for targeting paid apps. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AppPaymentModelTypeEnum {} pub mod app_payment_model_type_enum { /// Enum describing possible app payment models. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AppPaymentModelType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Represents paid-for apps. Paid = 30, } } // Proto file describing content label types. /// Container for enum describing content label types in ContentLabel. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ContentLabelTypeEnum {} pub mod content_label_type_enum { /// Enum listing the content label types supported by ContentLabel criterion. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ContentLabelType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Sexually suggestive content. SexuallySuggestive = 2, /// Below the fold placement. BelowTheFold = 3, /// Parked domain. ParkedDomain = 4, /// Juvenile, gross & bizarre content. Juvenile = 6, /// Profanity & rough language. Profanity = 7, /// Death & tragedy. Tragedy = 8, /// Video. Video = 9, /// Content rating: G. VideoRatingDvG = 10, /// Content rating: PG. VideoRatingDvPg = 11, /// Content rating: T. VideoRatingDvT = 12, /// Content rating: MA. VideoRatingDvMa = 13, /// Content rating: not yet rated. VideoNotYetRated = 14, /// Embedded video. EmbeddedVideo = 15, /// Live streaming video. LiveStreamingVideo = 16, /// Sensitive social issues. SocialIssues = 17, } } // Proto file describing days of week. /// Container for enumeration of days of the week, e.g., "Monday". #[derive(Clone, PartialEq, ::prost::Message)] pub struct DayOfWeekEnum {} pub mod day_of_week_enum { /// Enumerates days of the week, e.g., "Monday". #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum DayOfWeek { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Monday. Monday = 2, /// Tuesday. Tuesday = 3, /// Wednesday. Wednesday = 4, /// Thursday. Thursday = 5, /// Friday. Friday = 6, /// Saturday. Saturday = 7, /// Sunday. Sunday = 8, } } // Proto file describing devices. /// Container for enumeration of Google Ads devices available for targeting. #[derive(Clone, PartialEq, ::prost::Message)] pub struct DeviceEnum {} pub mod device_enum { /// Enumerates Google Ads devices available for targeting. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum Device { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Mobile devices with full browsers. Mobile = 2, /// Tablets with full browsers. Tablet = 3, /// Computers. Desktop = 4, /// Smart TVs and game consoles. ConnectedTv = 6, /// Other device types. Other = 5, } } // Proto file describing gender types. /// Container for enum describing the type of demographic genders. #[derive(Clone, PartialEq, ::prost::Message)] pub struct GenderTypeEnum {} pub mod gender_type_enum { /// The type of demographic genders (e.g. female). #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum GenderType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Male. Male = 10, /// Female. Female = 11, /// Undetermined gender. Undetermined = 20, } } // Proto file describing hotel date selection types. /// Container for enum describing possible hotel date selection types #[derive(Clone, PartialEq, ::prost::Message)] pub struct HotelDateSelectionTypeEnum {} pub mod hotel_date_selection_type_enum { /// Enum describing possible hotel date selection types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum HotelDateSelectionType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Dates selected by default. DefaultSelection = 50, /// Dates selected by the user. UserSelected = 51, } } // Proto file describing income range types. /// Container for enum describing the type of demographic income ranges. #[derive(Clone, PartialEq, ::prost::Message)] pub struct IncomeRangeTypeEnum {} pub mod income_range_type_enum { /// The type of demographic income ranges (e.g. between 0% to 50%). #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum IncomeRangeType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// 0%-50%. IncomeRange050 = 510001, /// 50% to 60%. IncomeRange5060 = 510002, /// 60% to 70%. IncomeRange6070 = 510003, /// 70% to 80%. IncomeRange7080 = 510004, /// 80% to 90%. IncomeRange8090 = 510005, /// Greater than 90%. IncomeRange90Up = 510006, /// Undetermined income range. IncomeRangeUndetermined = 510000, } } // Proto file describing interaction types. /// Container for enum describing possible interaction types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct InteractionTypeEnum {} pub mod interaction_type_enum { /// Enum describing possible interaction types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum InteractionType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Calls. Calls = 8000, } } // Proto file describing Keyword match types. /// Message describing Keyword match types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct KeywordMatchTypeEnum {} pub mod keyword_match_type_enum { /// Possible Keyword match types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum KeywordMatchType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Exact match. Exact = 2, /// Phrase match. Phrase = 3, /// Broad match. Broad = 4, } } // Proto file describing listing groups. /// Container for enum describing the type of the listing group. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ListingGroupTypeEnum {} pub mod listing_group_type_enum { /// The type of the listing group. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ListingGroupType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Subdivision of products along some listing dimension. These nodes /// are not used by serving to target listing entries, but is purely /// to define the structure of the tree. Subdivision = 2, /// Listing group unit that defines a bid. Unit = 3, } } // Proto file describing location group radius units. /// Container for enum describing unit of radius in location group. #[derive(Clone, PartialEq, ::prost::Message)] pub struct LocationGroupRadiusUnitsEnum {} pub mod location_group_radius_units_enum { /// The unit of radius distance in location group (e.g. MILES) #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum LocationGroupRadiusUnits { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Meters Meters = 2, /// Miles Miles = 3, } } // Proto file describing days of week. /// Container for enumeration of quarter-hours. #[derive(Clone, PartialEq, ::prost::Message)] pub struct MinuteOfHourEnum {} pub mod minute_of_hour_enum { /// Enumerates of quarter-hours. E.g. "FIFTEEN" #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MinuteOfHour { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Zero minutes past the hour. Zero = 2, /// Fifteen minutes past the hour. Fifteen = 3, /// Thirty minutes past the hour. Thirty = 4, /// Forty-five minutes past the hour. FortyFive = 5, } } // Proto file describing parenal status types. /// Container for enum describing the type of demographic parental statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ParentalStatusTypeEnum {} pub mod parental_status_type_enum { /// The type of parental statuses (e.g. not a parent). #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ParentalStatusType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Parent. Parent = 300, /// Not a parent. NotAParent = 301, /// Undetermined parental status. Undetermined = 302, } } // Proto file describing preferred content criterion type. /// Container for enumeration of preferred content criterion type. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PreferredContentTypeEnum {} pub mod preferred_content_type_enum { /// Enumerates preferred content criterion type. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PreferredContentType { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Represents top content on YouTube. YoutubeTopContent = 400, } } /// Level of a product bidding category. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ProductBiddingCategoryLevelEnum {} pub mod product_bidding_category_level_enum { /// Enum describing the level of the product bidding category. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ProductBiddingCategoryLevel { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Level 1. Level1 = 2, /// Level 2. Level2 = 3, /// Level 3. Level3 = 4, /// Level 4. Level4 = 5, /// Level 5. Level5 = 6, } } // Proto file describing bidding schemes. /// Locality of a product offer. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ProductChannelEnum {} pub mod product_channel_enum { /// Enum describing the locality of a product offer. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ProductChannel { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The item is sold online. Online = 2, /// The item is sold in local stores. Local = 3, } } // Proto file describing bidding schemes. /// Availability of a product offer. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ProductChannelExclusivityEnum {} pub mod product_channel_exclusivity_enum { /// Enum describing the availability of a product offer. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ProductChannelExclusivity { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The item is sold through one channel only, either local stores or online /// as indicated by its ProductChannel. SingleChannel = 2, /// The item is matched to its online or local stores counterpart, indicating /// it is available for purchase in both ShoppingProductChannels. MultiChannel = 3, } } // Proto file describing bidding schemes. /// Condition of a product offer. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ProductConditionEnum {} pub mod product_condition_enum { /// Enum describing the condition of a product offer. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ProductCondition { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The product condition is new. New = 3, /// The product condition is refurbished. Refurbished = 4, /// The product condition is used. Used = 5, } } // Proto file describing product custom attributes. /// Container for enum describing the index of the product custom attribute. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ProductCustomAttributeIndexEnum {} pub mod product_custom_attribute_index_enum { /// The index of the product custom attribute. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ProductCustomAttributeIndex { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// First product custom attribute. Index0 = 7, /// Second product custom attribute. Index1 = 8, /// Third product custom attribute. Index2 = 9, /// Fourth product custom attribute. Index3 = 10, /// Fifth product custom attribute. Index4 = 11, } } // Proto file describing bidding schemes. /// Level of the type of a product offer. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ProductTypeLevelEnum {} pub mod product_type_level_enum { /// Enum describing the level of the type of a product offer. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ProductTypeLevel { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Level 1. Level1 = 7, /// Level 2. Level2 = 8, /// Level 3. Level3 = 9, /// Level 4. Level4 = 10, /// Level 5. Level5 = 11, } } // Proto file describing proximity radius units. /// Container for enum describing unit of radius in proximity. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ProximityRadiusUnitsEnum {} pub mod proximity_radius_units_enum { /// The unit of radius distance in proximity (e.g. MILES) #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ProximityRadiusUnits { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Miles Miles = 2, /// Kilometers Kilometers = 3, } } // Proto file describing webpage condition operand. /// Container for enum describing webpage condition operand in webpage criterion. #[derive(Clone, PartialEq, ::prost::Message)] pub struct WebpageConditionOperandEnum {} pub mod webpage_condition_operand_enum { /// The webpage condition operand in webpage criterion. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum WebpageConditionOperand { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Operand denoting a webpage URL targeting condition. Url = 2, /// Operand denoting a webpage category targeting condition. Category = 3, /// Operand denoting a webpage title targeting condition. PageTitle = 4, /// Operand denoting a webpage content targeting condition. PageContent = 5, /// Operand denoting a webpage custom label targeting condition. CustomLabel = 6, } } // Proto file describing webpage condition operator. /// Container for enum describing webpage condition operator in webpage /// criterion. #[derive(Clone, PartialEq, ::prost::Message)] pub struct WebpageConditionOperatorEnum {} pub mod webpage_condition_operator_enum { /// The webpage condition operator in webpage criterion. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum WebpageConditionOperator { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The argument web condition is equal to the compared web condition. Equals = 2, /// The argument web condition is part of the compared web condition. Contains = 3, } } // Proto file describing advertising channel subtypes. /// An immutable specialization of an Advertising Channel. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdvertisingChannelSubTypeEnum {} pub mod advertising_channel_sub_type_enum { /// Enum describing the different channel subtypes. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdvertisingChannelSubType { /// Not specified. Unspecified = 0, /// Used as a return value only. Represents value unknown in this version. Unknown = 1, /// Mobile app campaigns for Search. SearchMobileApp = 2, /// Mobile app campaigns for Display. DisplayMobileApp = 3, /// AdWords express campaigns for search. SearchExpress = 4, /// AdWords Express campaigns for display. DisplayExpress = 5, /// Smart Shopping campaigns. ShoppingSmartAds = 6, /// Gmail Ad campaigns. DisplayGmailAd = 7, /// Smart display campaigns. DisplaySmartCampaign = 8, /// Video Outstream campaigns. VideoOutstream = 9, /// Video TrueView for Action campaigns. VideoAction = 10, /// Video campaigns with non-skippable video ads. VideoNonSkippable = 11, /// App Campaign that allows you to easily promote your Android or iOS app /// across Google's top properties including Search, Play, YouTube, and the /// Google Display Network. AppCampaign = 12, /// App Campaign for engagement, focused on driving re-engagement with the /// app across several of Google’s top properties including Search, YouTube, /// and the Google Display Network. AppCampaignForEngagement = 13, /// Campaigns specialized for local advertising. LocalCampaign = 14, /// Shopping Comparison Listing campaigns. ShoppingComparisonListingAds = 15, } } // Proto file describing advertising channel types /// The channel type a campaign may target to serve on. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdvertisingChannelTypeEnum {} pub mod advertising_channel_type_enum { /// Enum describing the various advertising channel types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdvertisingChannelType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Search Network. Includes display bundled, and Search+ campaigns. Search = 2, /// Google Display Network only. Display = 3, /// Shopping campaigns serve on the shopping property /// and on google.com search results. Shopping = 4, /// Hotel Ads campaigns. Hotel = 5, /// Video campaigns. Video = 6, /// App Campaigns, and App Campaigns for Engagement, that run /// across multiple channels. MultiChannel = 7, /// Local ads campaigns. Local = 8, /// Smart campaigns. Smart = 9, } } // Proto file describing the criterion category channel availability mode. /// Describes channel availability mode for a criterion availability - whether /// the availability is meant to include all advertising channels, or a /// particular channel with all its channel subtypes, or a channel with a certain /// subset of channel subtypes. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CriterionCategoryChannelAvailabilityModeEnum {} pub mod criterion_category_channel_availability_mode_enum { /// Enum containing the possible CriterionCategoryChannelAvailabilityMode. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CriterionCategoryChannelAvailabilityMode { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The category is available to campaigns of all channel types and subtypes. AllChannels = 2, /// The category is available to campaigns of a specific channel type, /// including all subtypes under it. ChannelTypeAndAllSubtypes = 3, /// The category is available to campaigns of a specific channel type and /// subtype(s). ChannelTypeAndSubsetSubtypes = 4, } } // Proto file describing the criterion category locale availability mode. /// Describes locale availability mode for a criterion availability - whether /// it's available globally, or a particular country with all languages, or a /// particular language with all countries, or a country-language pair. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CriterionCategoryLocaleAvailabilityModeEnum {} pub mod criterion_category_locale_availability_mode_enum { /// Enum containing the possible CriterionCategoryLocaleAvailabilityMode. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CriterionCategoryLocaleAvailabilityMode { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The category is available to campaigns of all locales. AllLocales = 2, /// The category is available to campaigns within a list of countries, /// regardless of language. CountryAndAllLanguages = 3, /// The category is available to campaigns within a list of languages, /// regardless of country. LanguageAndAllCountries = 4, /// The category is available to campaigns within a list of country, language /// pairs. CountryAndLanguage = 5, } } // Proto file describing app store types for an app extension. /// Container for enum describing app store type in an app extension. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AppStoreEnum {} pub mod app_store_enum { /// App store type in an app extension. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AppStore { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Apple iTunes. AppleItunes = 2, /// Google Play. GooglePlay = 3, } } // Proto file describing price extension price qualifier type. /// Container for enum describing a price extension price qualifier. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PriceExtensionPriceQualifierEnum {} pub mod price_extension_price_qualifier_enum { /// Enums of price extension price qualifier. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PriceExtensionPriceQualifier { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// 'From' qualifier for the price. From = 2, /// 'Up to' qualifier for the price. UpTo = 3, /// 'Average' qualifier for the price. Average = 4, } } // Proto file describing price extension price unit. /// Container for enum describing price extension price unit. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PriceExtensionPriceUnitEnum {} pub mod price_extension_price_unit_enum { /// Price extension price unit. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PriceExtensionPriceUnit { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Per hour. PerHour = 2, /// Per day. PerDay = 3, /// Per week. PerWeek = 4, /// Per month. PerMonth = 5, /// Per year. PerYear = 6, /// Per night. PerNight = 7, } } // Proto file describing price extension type. /// Container for enum describing types for a price extension. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PriceExtensionTypeEnum {} pub mod price_extension_type_enum { /// Price extension type. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PriceExtensionType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The type for showing a list of brands. Brands = 2, /// The type for showing a list of events. Events = 3, /// The type for showing locations relevant to your business. Locations = 4, /// The type for showing sub-regions or districts within a city or region. Neighborhoods = 5, /// The type for showing a collection of product categories. ProductCategories = 6, /// The type for showing a collection of related product tiers. ProductTiers = 7, /// The type for showing a collection of services offered by your business. Services = 8, /// The type for showing a collection of service categories. ServiceCategories = 9, /// The type for showing a collection of related service tiers. ServiceTiers = 10, } } // Proto file describing promotion extension discount modifier. /// Container for enum describing possible a promotion extension /// discount modifier. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PromotionExtensionDiscountModifierEnum {} pub mod promotion_extension_discount_modifier_enum { /// A promotion extension discount modifier. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PromotionExtensionDiscountModifier { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// 'Up to'. UpTo = 2, } } // Proto file describing promotion extension occasion. /// Container for enum describing a promotion extension occasion. /// For more information about the occasions please check: /// https://support.google.com/google-ads/answer/7367521 #[derive(Clone, PartialEq, ::prost::Message)] pub struct PromotionExtensionOccasionEnum {} pub mod promotion_extension_occasion_enum { /// A promotion extension occasion. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PromotionExtensionOccasion { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// New Year's. NewYears = 2, /// Chinese New Year. ChineseNewYear = 3, /// Valentine's Day. ValentinesDay = 4, /// Easter. Easter = 5, /// Mother's Day. MothersDay = 6, /// Father's Day. FathersDay = 7, /// Labor Day. LaborDay = 8, /// Back To School. BackToSchool = 9, /// Halloween. Halloween = 10, /// Black Friday. BlackFriday = 11, /// Cyber Monday. CyberMonday = 12, /// Christmas. Christmas = 13, /// Boxing Day. BoxingDay = 14, /// Independence Day in any country. IndependenceDay = 15, /// National Day in any country. NationalDay = 16, /// End of any season. EndOfSeason = 17, /// Winter Sale. WinterSale = 18, /// Summer sale. SummerSale = 19, /// Fall Sale. FallSale = 20, /// Spring Sale. SpringSale = 21, /// Ramadan. Ramadan = 22, /// Eid al-Fitr. EidAlFitr = 23, /// Eid al-Adha. EidAlAdha = 24, /// Singles Day. SinglesDay = 25, /// Women's Day. WomensDay = 26, /// Holi. Holi = 27, /// Parent's Day. ParentsDay = 28, /// St. Nicholas Day. StNicholasDay = 29, /// Carnival. Carnival = 30, /// Epiphany, also known as Three Kings' Day. Epiphany = 31, /// Rosh Hashanah. RoshHashanah = 32, /// Passover. Passover = 33, /// Hanukkah. Hanukkah = 34, /// Diwali. Diwali = 35, /// Navratri. Navratri = 36, /// Available in Thai: Songkran. Songkran = 37, /// Available in Japanese: Year-end Gift. YearEndGift = 38, } } // Proto file describing operating system for a deeplink app URL. /// The possible OS types for a deeplink AppUrl. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AppUrlOperatingSystemTypeEnum {} pub mod app_url_operating_system_type_enum { /// Operating System #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AppUrlOperatingSystemType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The Apple IOS operating system. Ios = 2, /// The Android operating system. Android = 3, } } // Proto file describing frequency caps. /// Container for enum describing the type of event that the cap applies to. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FrequencyCapEventTypeEnum {} pub mod frequency_cap_event_type_enum { /// The type of event that the cap applies to (e.g. impression). #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FrequencyCapEventType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The cap applies on ad impressions. Impression = 2, /// The cap applies on video ad views. VideoView = 3, } } // Proto file describing frequency caps. /// Container for enum describing the level on which the cap is to be applied. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FrequencyCapLevelEnum {} pub mod frequency_cap_level_enum { /// The level on which the cap is to be applied (e.g ad group ad, ad group). /// Cap is applied to all the resources of this level. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FrequencyCapLevel { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The cap is applied at the ad group ad level. AdGroupAd = 2, /// The cap is applied at the ad group level. AdGroup = 3, /// The cap is applied at the campaign level. Campaign = 4, } } // Proto file describing frequency caps. /// Container for enum describing the unit of time the cap is defined at. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FrequencyCapTimeUnitEnum {} pub mod frequency_cap_time_unit_enum { /// Unit of time the cap is defined at (e.g. day, week). #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FrequencyCapTimeUnit { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The cap would define limit per one day. Day = 2, /// The cap would define limit per one week. Week = 3, /// The cap would define limit per one month. Month = 4, } } // Proto file describing Keyword Planner competition levels. /// Container for enumeration of keyword competition levels. The competition /// level indicates how competitive ad placement is for a keyword and /// is determined by the number of advertisers bidding on that keyword relative /// to all keywords across Google. The competition level can depend on the /// location and Search Network targeting options you've selected. #[derive(Clone, PartialEq, ::prost::Message)] pub struct KeywordPlanCompetitionLevelEnum {} pub mod keyword_plan_competition_level_enum { /// Competition level of a keyword. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum KeywordPlanCompetitionLevel { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Low competition. The Competition Index range for this is [0, 33]. Low = 2, /// Medium competition. The Competition Index range for this is [34, 66]. Medium = 3, /// High competition. The Competition Index range for this is [67, 100]. High = 4, } } // Proto file describing days of week. /// Container for enumeration of months of the year, e.g., "January". #[derive(Clone, PartialEq, ::prost::Message)] pub struct MonthOfYearEnum {} pub mod month_of_year_enum { /// Enumerates months of the year, e.g., "January". #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MonthOfYear { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// January. January = 2, /// February. February = 3, /// March. March = 4, /// April. April = 5, /// May. May = 6, /// June. June = 7, /// July. July = 8, /// August. August = 9, /// September. September = 10, /// October. October = 11, /// November. November = 12, /// December. December = 13, } } // Proto file describing matching function context types. /// Container for context types for an operand in a matching function. #[derive(Clone, PartialEq, ::prost::Message)] pub struct MatchingFunctionContextTypeEnum {} pub mod matching_function_context_type_enum { /// Possible context types for an operand in a matching function. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MatchingFunctionContextType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Feed item id in the request context. FeedItemId = 2, /// The device being used (possible values are 'Desktop' or 'Mobile'). DeviceName = 3, } } // Proto file describing matching function operators. /// Container for enum describing matching function operator. #[derive(Clone, PartialEq, ::prost::Message)] pub struct MatchingFunctionOperatorEnum {} pub mod matching_function_operator_enum { /// Possible operators in a matching function. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MatchingFunctionOperator { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The IN operator. In = 2, /// The IDENTITY operator. Identity = 3, /// The EQUALS operator Equals = 4, /// Operator that takes two or more operands that are of type /// FunctionOperand and checks that all the operands evaluate to true. /// For functions related to ad formats, all the operands must be in /// left_operands. And = 5, /// Operator that returns true if the elements in left_operands contain any /// of the elements in right_operands. Otherwise, return false. The /// right_operands must contain at least 1 and no more than 3 /// ConstantOperands. ContainsAny = 6, } } // Proto file describing types of payable and free interactions. /// Container for enum describing types of payable and free interactions. #[derive(Clone, PartialEq, ::prost::Message)] pub struct InteractionEventTypeEnum {} pub mod interaction_event_type_enum { /// Enum describing possible types of payable and free interactions. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum InteractionEventType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Click to site. In most cases, this interaction navigates to an external /// location, usually the advertiser's landing page. This is also the default /// InteractionEventType for click events. Click = 2, /// The user's expressed intent to engage with the ad in-place. Engagement = 3, /// User viewed a video ad. VideoView = 4, /// The default InteractionEventType for ad conversion events. /// This is used when an ad conversion row does NOT indicate /// that the free interactions (i.e., the ad conversions) /// should be 'promoted' and reported as part of the core metrics. /// These are simply other (ad) conversions. None = 5, } } // Proto file describing quality score buckets. /// The relative performance compared to other advertisers. #[derive(Clone, PartialEq, ::prost::Message)] pub struct QualityScoreBucketEnum {} pub mod quality_score_bucket_enum { /// Enum listing the possible quality score buckets. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum QualityScoreBucket { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Quality of the creative is below average. BelowAverage = 2, /// Quality of the creative is average. Average = 3, /// Quality of the creative is above average. AboveAverage = 4, } } // Proto file describing policy topic entry types. /// Container for enum describing possible policy topic entry types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PolicyTopicEntryTypeEnum {} pub mod policy_topic_entry_type_enum { /// The possible policy topic entry types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PolicyTopicEntryType { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The resource will not be served. Prohibited = 2, /// The resource will not be served under some circumstances. Limited = 4, /// The resource cannot serve at all because of the current targeting /// criteria. FullyLimited = 8, /// May be of interest, but does not limit how the resource is served. Descriptive = 5, /// Could increase coverage beyond normal. Broadening = 6, /// Constrained for all targeted countries, but may serve in other countries /// through area of interest. AreaOfInterestOnly = 7, } } // Proto file describing policy topic evidence destination mismatch url types. /// Container for enum describing possible policy topic evidence destination /// mismatch url types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PolicyTopicEvidenceDestinationMismatchUrlTypeEnum {} pub mod policy_topic_evidence_destination_mismatch_url_type_enum { /// The possible policy topic evidence destination mismatch url types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PolicyTopicEvidenceDestinationMismatchUrlType { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The display url. DisplayUrl = 2, /// The final url. FinalUrl = 3, /// The final mobile url. FinalMobileUrl = 4, /// The tracking url template, with substituted desktop url. TrackingUrl = 5, /// The tracking url template, with substituted mobile url. MobileTrackingUrl = 6, } } // Proto file describing device of destination not working policy topic // evidence. /// Container for enum describing possible policy topic evidence destination not /// working devices. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PolicyTopicEvidenceDestinationNotWorkingDeviceEnum {} pub mod policy_topic_evidence_destination_not_working_device_enum { /// The possible policy topic evidence destination not working devices. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PolicyTopicEvidenceDestinationNotWorkingDevice { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// Landing page doesn't work on desktop device. Desktop = 2, /// Landing page doesn't work on Android device. Android = 3, /// Landing page doesn't work on iOS device. Ios = 4, } } // Proto file describing DNS error types of destination not working policy topic // evidence. /// Container for enum describing possible policy topic evidence destination not /// working DNS error types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum {} pub mod policy_topic_evidence_destination_not_working_dns_error_type_enum { /// The possible policy topic evidence destination not working DNS error types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PolicyTopicEvidenceDestinationNotWorkingDnsErrorType { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// Host name not found in DNS when fetching landing page. HostnameNotFound = 2, /// Google internal crawler issue when communicating with DNS. This error /// doesn't mean the landing page doesn't work. Google will recrawl the /// landing page. GoogleCrawlerDnsIssue = 3, } } // Proto file describing ad network types. /// Container for enumeration of Google Ads network types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdNetworkTypeEnum {} pub mod ad_network_type_enum { /// Enumerates Google Ads network types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdNetworkType { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Google search. Search = 2, /// Search partners. SearchPartners = 3, /// Display Network. Content = 4, /// YouTube Search. YoutubeSearch = 5, /// YouTube Videos YoutubeWatch = 6, /// Cross-network. Mixed = 7, } } // Proto file describing click types. /// Container for enumeration of Google Ads click types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ClickTypeEnum {} pub mod click_type_enum { /// Enumerates Google Ads click types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ClickType { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// App engagement ad deep link. AppDeeplink = 2, /// Breadcrumbs. Breadcrumbs = 3, /// Broadband Plan. BroadbandPlan = 4, /// Manually dialed phone calls. CallTracking = 5, /// Phone calls. Calls = 6, /// Click on engagement ad. ClickOnEngagementAd = 7, /// Driving direction. GetDirections = 8, /// Get location details. LocationExpansion = 9, /// Call. LocationFormatCall = 10, /// Directions. LocationFormatDirections = 11, /// Image(s). LocationFormatImage = 12, /// Go to landing page. LocationFormatLandingPage = 13, /// Map. LocationFormatMap = 14, /// Go to store info. LocationFormatStoreInfo = 15, /// Text. LocationFormatText = 16, /// Mobile phone calls. MobileCallTracking = 17, /// Print offer. OfferPrints = 18, /// Other. Other = 19, /// Product plusbox offer. ProductExtensionClicks = 20, /// Shopping - Product - Online. ProductListingAdClicks = 21, /// Sitelink. Sitelinks = 22, /// Show nearby locations. StoreLocator = 23, /// Headline. UrlClicks = 25, /// App store. VideoAppStoreClicks = 26, /// Call-to-Action overlay. VideoCallToActionClicks = 27, /// Cards. VideoCardActionHeadlineClicks = 28, /// End cap. VideoEndCapClicks = 29, /// Website. VideoWebsiteClicks = 30, /// Visual Sitelinks. VisualSitelinks = 31, /// Wireless Plan. WirelessPlan = 32, /// Shopping - Product - Local. ProductListingAdLocal = 33, /// Shopping - Product - MultiChannel Local. ProductListingAdMultichannelLocal = 34, /// Shopping - Product - MultiChannel Online. ProductListingAdMultichannelOnline = 35, /// Shopping - Product - Coupon. ProductListingAdsCoupon = 36, /// Shopping - Product - Sell on Google. ProductListingAdTransactable = 37, /// Shopping - Product - App engagement ad deep link. ProductAdAppDeeplink = 38, /// Shopping - Showcase - Category. ShowcaseAdCategoryLink = 39, /// Shopping - Showcase - Local storefront. ShowcaseAdLocalStorefrontLink = 40, /// Shopping - Showcase - Online product. ShowcaseAdOnlineProductLink = 42, /// Shopping - Showcase - Local product. ShowcaseAdLocalProductLink = 43, /// Promotion Extension. PromotionExtension = 44, /// Ad Headline. SwipeableGalleryAdHeadline = 45, /// Swipes. SwipeableGalleryAdSwipes = 46, /// See More. SwipeableGalleryAdSeeMore = 47, /// Sitelink 1. SwipeableGalleryAdSitelinkOne = 48, /// Sitelink 2. SwipeableGalleryAdSitelinkTwo = 49, /// Sitelink 3. SwipeableGalleryAdSitelinkThree = 50, /// Sitelink 4. SwipeableGalleryAdSitelinkFour = 51, /// Sitelink 5. SwipeableGalleryAdSitelinkFive = 52, /// Hotel price. HotelPrice = 53, /// Price Extension. PriceExtension = 54, /// Book on Google hotel room selection. HotelBookOnGoogleRoomSelection = 55, /// Shopping - Comparison Listing. ShoppingComparisonListing = 56, } } /// Container for enum describing the category of conversions that are associated /// with a ConversionAction. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ConversionActionCategoryEnum {} pub mod conversion_action_category_enum { /// The category of conversions that are associated with a ConversionAction. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ConversionActionCategory { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Default category. Default = 2, /// User visiting a page. PageView = 3, /// Purchase, sales, or "order placed" event. Purchase = 4, /// Signup user action. Signup = 5, /// Lead-generating action. Lead = 6, /// Software download action (as for an app). Download = 7, /// The addition of items to a shopping cart or bag on an advertiser site. AddToCart = 8, /// When someone enters the checkout flow on an advertiser site. BeginCheckout = 9, /// The start of a paid subscription for a product or service. SubscribePaid = 10, /// A call to indicate interest in an advertiser's offering. PhoneCallLead = 11, /// A lead conversion imported from an external source into Google Ads. ImportedLead = 12, /// A submission of a form on an advertiser site indicating business /// interest. SubmitLeadForm = 13, /// A booking of an appointment with an advertiser's business. BookAppointment = 14, /// A quote or price estimate request. RequestQuote = 15, /// A search for an advertiser's business location with intention to visit. GetDirections = 16, /// A click to an advertiser's partner's site. OutboundClick = 17, /// A call, SMS, email, chat or other type of contact to an advertiser. Contact = 18, /// A website engagement event such as long site time or a Google Analytics /// (GA) Smart Goal. Intended to be used for GA, Firebase, GA Gold goal /// imports. Engagement = 19, /// A visit to a physical store location. StoreVisit = 20, /// A sale occurring in a physical store. StoreSale = 21, } } /// Container for enum indicating the event type the conversion is attributed to. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ConversionAttributionEventTypeEnum {} pub mod conversion_attribution_event_type_enum { /// The event type of conversions that are attributed to. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ConversionAttributionEventType { /// Not specified. Unspecified = 0, /// Represents value unknown in this version. Unknown = 1, /// The conversion is attributed to an impression. Impression = 2, /// The conversion is attributed to an interaction. Interaction = 3, } } /// Container for enum representing the number of days between impression and /// conversion. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ConversionLagBucketEnum {} pub mod conversion_lag_bucket_enum { /// Enum representing the number of days between impression and conversion. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ConversionLagBucket { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Conversion lag bucket from 0 to 1 day. 0 day is included, 1 day is not. LessThanOneDay = 2, /// Conversion lag bucket from 1 to 2 days. 1 day is included, 2 days is not. OneToTwoDays = 3, /// Conversion lag bucket from 2 to 3 days. 2 days is included, /// 3 days is not. TwoToThreeDays = 4, /// Conversion lag bucket from 3 to 4 days. 3 days is included, /// 4 days is not. ThreeToFourDays = 5, /// Conversion lag bucket from 4 to 5 days. 4 days is included, /// 5 days is not. FourToFiveDays = 6, /// Conversion lag bucket from 5 to 6 days. 5 days is included, /// 6 days is not. FiveToSixDays = 7, /// Conversion lag bucket from 6 to 7 days. 6 days is included, /// 7 days is not. SixToSevenDays = 8, /// Conversion lag bucket from 7 to 8 days. 7 days is included, /// 8 days is not. SevenToEightDays = 9, /// Conversion lag bucket from 8 to 9 days. 8 days is included, /// 9 days is not. EightToNineDays = 10, /// Conversion lag bucket from 9 to 10 days. 9 days is included, /// 10 days is not. NineToTenDays = 11, /// Conversion lag bucket from 10 to 11 days. 10 days is included, /// 11 days is not. TenToElevenDays = 12, /// Conversion lag bucket from 11 to 12 days. 11 days is included, /// 12 days is not. ElevenToTwelveDays = 13, /// Conversion lag bucket from 12 to 13 days. 12 days is included, /// 13 days is not. TwelveToThirteenDays = 14, /// Conversion lag bucket from 13 to 14 days. 13 days is included, /// 14 days is not. ThirteenToFourteenDays = 15, /// Conversion lag bucket from 14 to 21 days. 14 days is included, /// 21 days is not. FourteenToTwentyOneDays = 16, /// Conversion lag bucket from 21 to 30 days. 21 days is included, /// 30 days is not. TwentyOneToThirtyDays = 17, /// Conversion lag bucket from 30 to 45 days. 30 days is included, /// 45 days is not. ThirtyToFortyFiveDays = 18, /// Conversion lag bucket from 45 to 60 days. 45 days is included, /// 60 days is not. FortyFiveToSixtyDays = 19, /// Conversion lag bucket from 60 to 90 days. 60 days is included, /// 90 days is not. SixtyToNinetyDays = 20, } } /// Container for enum representing the number of days between the impression and /// the conversion or between the impression and adjustments to the conversion. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ConversionOrAdjustmentLagBucketEnum {} pub mod conversion_or_adjustment_lag_bucket_enum { /// Enum representing the number of days between the impression and the /// conversion or between the impression and adjustments to the conversion. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ConversionOrAdjustmentLagBucket { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Conversion lag bucket from 0 to 1 day. 0 day is included, 1 day is not. ConversionLessThanOneDay = 2, /// Conversion lag bucket from 1 to 2 days. 1 day is included, 2 days is not. ConversionOneToTwoDays = 3, /// Conversion lag bucket from 2 to 3 days. 2 days is included, /// 3 days is not. ConversionTwoToThreeDays = 4, /// Conversion lag bucket from 3 to 4 days. 3 days is included, /// 4 days is not. ConversionThreeToFourDays = 5, /// Conversion lag bucket from 4 to 5 days. 4 days is included, /// 5 days is not. ConversionFourToFiveDays = 6, /// Conversion lag bucket from 5 to 6 days. 5 days is included, /// 6 days is not. ConversionFiveToSixDays = 7, /// Conversion lag bucket from 6 to 7 days. 6 days is included, /// 7 days is not. ConversionSixToSevenDays = 8, /// Conversion lag bucket from 7 to 8 days. 7 days is included, /// 8 days is not. ConversionSevenToEightDays = 9, /// Conversion lag bucket from 8 to 9 days. 8 days is included, /// 9 days is not. ConversionEightToNineDays = 10, /// Conversion lag bucket from 9 to 10 days. 9 days is included, /// 10 days is not. ConversionNineToTenDays = 11, /// Conversion lag bucket from 10 to 11 days. 10 days is included, /// 11 days is not. ConversionTenToElevenDays = 12, /// Conversion lag bucket from 11 to 12 days. 11 days is included, /// 12 days is not. ConversionElevenToTwelveDays = 13, /// Conversion lag bucket from 12 to 13 days. 12 days is included, /// 13 days is not. ConversionTwelveToThirteenDays = 14, /// Conversion lag bucket from 13 to 14 days. 13 days is included, /// 14 days is not. ConversionThirteenToFourteenDays = 15, /// Conversion lag bucket from 14 to 21 days. 14 days is included, /// 21 days is not. ConversionFourteenToTwentyOneDays = 16, /// Conversion lag bucket from 21 to 30 days. 21 days is included, /// 30 days is not. ConversionTwentyOneToThirtyDays = 17, /// Conversion lag bucket from 30 to 45 days. 30 days is included, /// 45 days is not. ConversionThirtyToFortyFiveDays = 18, /// Conversion lag bucket from 45 to 60 days. 45 days is included, /// 60 days is not. ConversionFortyFiveToSixtyDays = 19, /// Conversion lag bucket from 60 to 90 days. 60 days is included, /// 90 days is not. ConversionSixtyToNinetyDays = 20, /// Conversion adjustment lag bucket from 0 to 1 day. 0 day is included, /// 1 day is not. AdjustmentLessThanOneDay = 21, /// Conversion adjustment lag bucket from 1 to 2 days. 1 day is included, /// 2 days is not. AdjustmentOneToTwoDays = 22, /// Conversion adjustment lag bucket from 2 to 3 days. 2 days is included, /// 3 days is not. AdjustmentTwoToThreeDays = 23, /// Conversion adjustment lag bucket from 3 to 4 days. 3 days is included, /// 4 days is not. AdjustmentThreeToFourDays = 24, /// Conversion adjustment lag bucket from 4 to 5 days. 4 days is included, /// 5 days is not. AdjustmentFourToFiveDays = 25, /// Conversion adjustment lag bucket from 5 to 6 days. 5 days is included, /// 6 days is not. AdjustmentFiveToSixDays = 26, /// Conversion adjustment lag bucket from 6 to 7 days. 6 days is included, /// 7 days is not. AdjustmentSixToSevenDays = 27, /// Conversion adjustment lag bucket from 7 to 8 days. 7 days is included, /// 8 days is not. AdjustmentSevenToEightDays = 28, /// Conversion adjustment lag bucket from 8 to 9 days. 8 days is included, /// 9 days is not. AdjustmentEightToNineDays = 29, /// Conversion adjustment lag bucket from 9 to 10 days. 9 days is included, /// 10 days is not. AdjustmentNineToTenDays = 30, /// Conversion adjustment lag bucket from 10 to 11 days. 10 days is included, /// 11 days is not. AdjustmentTenToElevenDays = 31, /// Conversion adjustment lag bucket from 11 to 12 days. 11 days is included, /// 12 days is not. AdjustmentElevenToTwelveDays = 32, /// Conversion adjustment lag bucket from 12 to 13 days. 12 days is included, /// 13 days is not. AdjustmentTwelveToThirteenDays = 33, /// Conversion adjustment lag bucket from 13 to 14 days. 13 days is included, /// 14 days is not. AdjustmentThirteenToFourteenDays = 34, /// Conversion adjustment lag bucket from 14 to 21 days. 14 days is included, /// 21 days is not. AdjustmentFourteenToTwentyOneDays = 35, /// Conversion adjustment lag bucket from 21 to 30 days. 21 days is included, /// 30 days is not. AdjustmentTwentyOneToThirtyDays = 36, /// Conversion adjustment lag bucket from 30 to 45 days. 30 days is included, /// 45 days is not. AdjustmentThirtyToFortyFiveDays = 37, /// Conversion adjustment lag bucket from 45 to 60 days. 45 days is included, /// 60 days is not. AdjustmentFortyFiveToSixtyDays = 38, /// Conversion adjustment lag bucket from 60 to 90 days. 60 days is included, /// 90 days is not. AdjustmentSixtyToNinetyDays = 39, /// Conversion adjustment lag bucket from 90 to 145 days. 90 days is /// included, 145 days is not. AdjustmentNinetyToOneHundredAndFortyFiveDays = 40, /// Conversion lag bucket UNKNOWN. This is for dates before conversion lag /// bucket was available in Google Ads. ConversionUnknown = 41, /// Conversion adjustment lag bucket UNKNOWN. This is for dates before /// conversion adjustment lag bucket was available in Google Ads. AdjustmentUnknown = 42, } } /// Container for enum describing the external conversion source that is /// associated with a ConversionAction. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExternalConversionSourceEnum {} pub mod external_conversion_source_enum { /// The external conversion source that is associated with a ConversionAction. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ExternalConversionSource { /// Not specified. Unspecified = 0, /// Represents value unknown in this version. Unknown = 1, /// Conversion that occurs when a user navigates to a particular webpage /// after viewing an ad; Displayed in Google Ads UI as 'Website'. Webpage = 2, /// Conversion that comes from linked Google Analytics goal or transaction; /// Displayed in Google Ads UI as 'Analytics'. Analytics = 3, /// Website conversion that is uploaded through ConversionUploadService; /// Displayed in Google Ads UI as 'Import from clicks'. Upload = 4, /// Conversion that occurs when a user clicks on a call extension directly on /// an ad; Displayed in Google Ads UI as 'Calls from ads'. AdCallMetrics = 5, /// Conversion that occurs when a user calls a dynamically-generated phone /// number (by installed javascript) from an advertiser's website after /// clicking on an ad; Displayed in Google Ads UI as 'Calls from website'. WebsiteCallMetrics = 6, /// Conversion that occurs when a user visits an advertiser's retail store /// after clicking on a Google ad; /// Displayed in Google Ads UI as 'Store visits'. StoreVisits = 7, /// Conversion that occurs when a user takes an in-app action such as a /// purchase in an Android app; /// Displayed in Google Ads UI as 'Android in-app action'. AndroidInApp = 8, /// Conversion that occurs when a user takes an in-app action such as a /// purchase in an iOS app; /// Displayed in Google Ads UI as 'iOS in-app action'. IosInApp = 9, /// Conversion that occurs when a user opens an iOS app for the first time; /// Displayed in Google Ads UI as 'iOS app install (first open)'. IosFirstOpen = 10, /// Legacy app conversions that do not have an AppPlatform provided; /// Displayed in Google Ads UI as 'Mobile app'. AppUnspecified = 11, /// Conversion that occurs when a user opens an Android app for the first /// time; Displayed in Google Ads UI as 'Android app install (first open)'. AndroidFirstOpen = 12, /// Call conversion that is uploaded through ConversionUploadService; /// Displayed in Google Ads UI as 'Import from calls'. UploadCalls = 13, /// Conversion that comes from a linked Firebase event; /// Displayed in Google Ads UI as 'Firebase'. Firebase = 14, /// Conversion that occurs when a user clicks on a mobile phone number; /// Displayed in Google Ads UI as 'Phone number clicks'. ClickToCall = 15, /// Conversion that comes from Salesforce; /// Displayed in Google Ads UI as 'Salesforce.com'. Salesforce = 16, /// Conversion that comes from in-store purchases recorded by CRM; /// Displayed in Google Ads UI as 'Store sales (data partner)'. StoreSalesCrm = 17, /// Conversion that comes from in-store purchases from payment network; /// Displayed in Google Ads UI as 'Store sales (payment network)'. StoreSalesPaymentNetwork = 18, /// Codeless Google Play conversion; /// Displayed in Google Ads UI as 'Google Play'. GooglePlay = 19, /// Conversion that comes from a linked third-party app analytics event; /// Displayed in Google Ads UI as 'Third-party app analytics'. ThirdPartyAppAnalytics = 20, /// Conversion that is controlled by Google Attribution. GoogleAttribution = 21, /// Store Sales conversion based on first-party or third-party merchant data /// uploads. Displayed in Google Ads UI as 'Store sales (direct upload)'. StoreSalesDirectUpload = 23, /// Store Sales conversion based on first-party or third-party merchant /// data uploads and/or from in-store purchases using cards from payment /// networks. Displayed in Google Ads UI as 'Store sales'. StoreSales = 24, } } // Proto file describing hotel price buckets. /// Container for enum describing hotel price bucket for a hotel itinerary. #[derive(Clone, PartialEq, ::prost::Message)] pub struct HotelPriceBucketEnum {} pub mod hotel_price_bucket_enum { /// Enum describing possible hotel price buckets. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum HotelPriceBucket { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Tied for lowest price. Partner is within a small variance of the lowest /// price. LowestTied = 3, /// Not lowest price. Partner is not within a small variance of the lowest /// price. NotLowest = 4, } } // Proto file describing hotel rate types. /// Container for enum describing possible hotel rate types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct HotelRateTypeEnum {} pub mod hotel_rate_type_enum { /// Enum describing possible hotel rate types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum HotelRateType { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Rate type information is unavailable. Unavailable = 2, /// Rates available to everyone. PublicRate = 3, /// A membership program rate is available and satisfies basic requirements /// like having a public rate available. UI treatment will strikethrough the /// public rate and indicate that a discount is available to the user. For /// more on Qualified Rates, visit /// https://developers.google.com/hotels/hotel-ads/dev-guide/qualified-rates QualifiedRate = 4, /// Rates available to users that satisfy some eligibility criteria. e.g. /// all signed-in users, 20% of mobile users, all mobile users in Canada, /// etc. PrivateRate = 5, } } // Proto file describing feed placeholder types. /// Container for enum describing possible placeholder types for a feed mapping. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlaceholderTypeEnum {} pub mod placeholder_type_enum { /// Possible placeholder types for a feed mapping. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PlaceholderType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Lets you show links in your ad to pages from your website, including the /// main landing page. Sitelink = 2, /// Lets you attach a phone number to an ad, allowing customers to call /// directly from the ad. Call = 3, /// Lets you provide users with a link that points to a mobile app in /// addition to a website. App = 4, /// Lets you show locations of businesses from your Google My Business /// account in your ad. This helps people find your locations by showing your /// ads with your address, a map to your location, or the distance to your /// business. This extension type is useful to draw customers to your /// brick-and-mortar location. Location = 5, /// If you sell your product through retail chains, affiliate location /// extensions let you show nearby stores that carry your products. AffiliateLocation = 6, /// Lets you include additional text with your search ads that provide /// detailed information about your business, including products and services /// you offer. Callouts appear in ads at the top and bottom of Google search /// results. Callout = 7, /// Lets you add more info to your ad, specific to some predefined categories /// such as types, brands, styles, etc. A minimum of 3 text (SNIPPETS) values /// are required. StructuredSnippet = 8, /// Allows users to see your ad, click an icon, and contact you directly by /// text message. With one tap on your ad, people can contact you to book an /// appointment, get a quote, ask for information, or request a service. Message = 9, /// Lets you display prices for a list of items along with your ads. A price /// feed is composed of three to eight price table rows. Price = 10, /// Allows you to highlight sales and other promotions that let users see how /// they can save by buying now. Promotion = 11, /// Lets you dynamically inject custom data into the title and description /// of your ads. AdCustomizer = 12, /// Indicates that this feed is for education dynamic remarketing. DynamicEducation = 13, /// Indicates that this feed is for flight dynamic remarketing. DynamicFlight = 14, /// Indicates that this feed is for a custom dynamic remarketing type. Use /// this only if the other business types don't apply to your products or /// services. DynamicCustom = 15, /// Indicates that this feed is for hotels and rentals dynamic remarketing. DynamicHotel = 16, /// Indicates that this feed is for real estate dynamic remarketing. DynamicRealEstate = 17, /// Indicates that this feed is for travel dynamic remarketing. DynamicTravel = 18, /// Indicates that this feed is for local deals dynamic remarketing. DynamicLocal = 19, /// Indicates that this feed is for job dynamic remarketing. DynamicJob = 20, } } // Proto file describing search engine results page types. /// The type of the search engine results page. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SearchEngineResultsPageTypeEnum {} pub mod search_engine_results_page_type_enum { /// The type of the search engine results page. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SearchEngineResultsPageType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Only ads were contained in the search engine results page. AdsOnly = 2, /// Only organic results were contained in the search engine results page. OrganicOnly = 3, /// Both ads and organic results were contained in the search engine results /// page. AdsAndOrganic = 4, } } // Proto file describing search term match types. /// Container for enum describing match types for a keyword triggering an ad. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SearchTermMatchTypeEnum {} pub mod search_term_match_type_enum { /// Possible match types for a keyword triggering an ad, including variants. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SearchTermMatchType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Broad match. Broad = 2, /// Exact match. Exact = 3, /// Phrase match. Phrase = 4, /// Exact match (close variant). NearExact = 5, /// Phrase match (close variant). NearPhrase = 6, } } // Proto file describing slots. /// Container for enumeration of possible positions of the Ad. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SlotEnum {} pub mod slot_enum { /// Enumerates possible positions of the Ad. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum Slot { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Google search: Side. SearchSide = 2, /// Google search: Top. SearchTop = 3, /// Google search: Other. SearchOther = 4, /// Google Display Network. Content = 5, /// Search partners: Top. SearchPartnerTop = 6, /// Search partners: Other. SearchPartnerOther = 7, /// Cross-network. Mixed = 8, } } /// Container for enum describing the format of the web page where the tracking /// tag and snippet will be installed. #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrackingCodePageFormatEnum {} pub mod tracking_code_page_format_enum { /// The format of the web page where the tracking tag and snippet will be /// installed. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum TrackingCodePageFormat { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Standard HTML page format. Html = 2, /// Google AMP page format. Amp = 3, } } /// Container for enum describing the type of the generated tag snippets for /// tracking conversions. #[derive(Clone, PartialEq, ::prost::Message)] pub struct TrackingCodeTypeEnum {} pub mod tracking_code_type_enum { /// The type of the generated tag snippets for tracking conversions. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum TrackingCodeType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The snippet that is fired as a result of a website page loading. Webpage = 2, /// The snippet contains a JavaScript function which fires the tag. This /// function is typically called from an onClick handler added to a link or /// button element on the page. WebpageOnclick = 3, /// For embedding on a mobile webpage. The snippet contains a JavaScript /// function which fires the tag. ClickToCall = 4, /// The snippet that is used to replace the phone number on your website with /// a Google forwarding number for call tracking purposes. WebsiteCall = 5, } } // Proto file describing criteria types. /// The dimensions that can be targeted. #[derive(Clone, PartialEq, ::prost::Message)] pub struct TargetingDimensionEnum {} pub mod targeting_dimension_enum { /// Enum describing possible targeting dimensions. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum TargetingDimension { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Keyword criteria, e.g. 'mars cruise'. KEYWORD may be used as a custom bid /// dimension. Keywords are always a targeting dimension, so may not be set /// as a target "ALL" dimension with TargetRestriction. Keyword = 2, /// Audience criteria, which include user list, user interest, custom /// affinity, and custom in market. Audience = 3, /// Topic criteria for targeting categories of content, e.g. /// 'category::Animals>Pets' Used for Display and Video targeting. Topic = 4, /// Criteria for targeting gender. Gender = 5, /// Criteria for targeting age ranges. AgeRange = 6, /// Placement criteria, which include websites like 'www.flowers4sale.com', /// as well as mobile applications, mobile app categories, YouTube videos, /// and YouTube channels. Placement = 7, /// Criteria for parental status targeting. ParentalStatus = 8, /// Criteria for income range targeting. IncomeRange = 9, } } /// Indicates what type of data are the user list's members matched from. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CustomerMatchUploadKeyTypeEnum {} pub mod customer_match_upload_key_type_enum { /// Enum describing possible customer match upload key types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CustomerMatchUploadKeyType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Members are matched from customer info such as email address, phone /// number or physical address. ContactInfo = 2, /// Members are matched from a user id generated and assigned by the /// advertiser. CrmId = 3, /// Members are matched from mobile advertising ids. MobileAdvertisingId = 4, } } /// Logical operator connecting two rules. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListCombinedRuleOperatorEnum {} pub mod user_list_combined_rule_operator_enum { /// Enum describing possible user list combined rule operators. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListCombinedRuleOperator { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// A AND B. And = 2, /// A AND NOT B. AndNot = 3, } } /// Indicates source of Crm upload data. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListCrmDataSourceTypeEnum {} pub mod user_list_crm_data_source_type_enum { /// Enum describing possible user list crm data source type. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListCrmDataSourceType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The uploaded data is first-party data. FirstParty = 2, /// The uploaded data is from a third-party credit bureau. ThirdPartyCreditBureau = 3, /// The uploaded data is from a third-party voter file. ThirdPartyVoterFile = 4, } } /// Supported rule operator for date type. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListDateRuleItemOperatorEnum {} pub mod user_list_date_rule_item_operator_enum { /// Enum describing possible user list date rule item operators. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListDateRuleItemOperator { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Equals. Equals = 2, /// Not Equals. NotEquals = 3, /// Before. Before = 4, /// After. After = 5, } } /// The logical operator of the rule. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListLogicalRuleOperatorEnum {} pub mod user_list_logical_rule_operator_enum { /// Enum describing possible user list logical rule operators. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListLogicalRuleOperator { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// And - all of the operands. All = 2, /// Or - at least one of the operands. Any = 3, /// Not - none of the operands. None = 4, } } /// Supported rule operator for number type. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListNumberRuleItemOperatorEnum {} pub mod user_list_number_rule_item_operator_enum { /// Enum describing possible user list number rule item operators. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListNumberRuleItemOperator { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Greater than. GreaterThan = 2, /// Greater than or equal. GreaterThanOrEqual = 3, /// Equals. Equals = 4, /// Not equals. NotEquals = 5, /// Less than. LessThan = 6, /// Less than or equal. LessThanOrEqual = 7, } } /// Indicates status of prepopulation based on the rule. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListPrepopulationStatusEnum {} pub mod user_list_prepopulation_status_enum { /// Enum describing possible user list prepopulation status. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListPrepopulationStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Prepopoulation is being requested. Requested = 2, /// Prepopulation is finished. Finished = 3, /// Prepopulation failed. Failed = 4, } } /// Rule based user list rule type. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListRuleTypeEnum {} pub mod user_list_rule_type_enum { /// Enum describing possible user list rule types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListRuleType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Conjunctive normal form. AndOfOrs = 2, /// Disjunctive normal form. OrOfAnds = 3, } } /// Supported rule operator for string type. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListStringRuleItemOperatorEnum {} pub mod user_list_string_rule_item_operator_enum { /// Enum describing possible user list string rule item operators. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListStringRuleItemOperator { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Contains. Contains = 2, /// Equals. Equals = 3, /// Starts with. StartsWith = 4, /// Ends with. EndsWith = 5, /// Not equals. NotEquals = 6, /// Not contains. NotContains = 7, /// Not starts with. NotStartsWith = 8, /// Not ends with. NotEndsWith = 9, } } /// Indicates the way the resource such as user list is related to a user. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AccessReasonEnum {} pub mod access_reason_enum { /// Enum describing possible access reasons. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AccessReason { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The resource is owned by the user. Owned = 2, /// The resource is shared to the user. Shared = 3, /// The resource is licensed to the user. Licensed = 4, /// The user subscribed to the resource. Subscribed = 5, /// The resource is accessible to the user. Affiliated = 6, } } /// Container for enum describing possible access role for user. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AccessRoleEnum {} pub mod access_role_enum { /// Possible access role of a user. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AccessRole { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Owns its account and can control the addition of other users. Admin = 2, /// Can modify campaigns, but can't affect other users. Standard = 3, /// Can view campaigns and account changes, but cannot make edits. ReadOnly = 4, /// Role for \"email only\" access. Represents an email recipient rather than /// a true User entity. EmailOnly = 5, } } // Proto file describing AccountBudgetProposal statuses. /// Message describing AccountBudgetProposal statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AccountBudgetProposalStatusEnum {} pub mod account_budget_proposal_status_enum { /// The possible statuses of an AccountBudgetProposal. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AccountBudgetProposalStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The proposal is pending approval. Pending = 2, /// The proposal has been approved but the corresponding billing setup /// has not. This can occur for proposals that set up the first budget /// when signing up for billing or when performing a change of bill-to /// operation. ApprovedHeld = 3, /// The proposal has been approved. Approved = 4, /// The proposal has been cancelled by the user. Cancelled = 5, /// The proposal has been rejected by the user, e.g. by rejecting an /// acceptance email. Rejected = 6, } } // Proto file describing AccountBudgetProposal types. /// Message describing AccountBudgetProposal types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AccountBudgetProposalTypeEnum {} pub mod account_budget_proposal_type_enum { /// The possible types of an AccountBudgetProposal. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AccountBudgetProposalType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Identifies a request to create a new budget. Create = 2, /// Identifies a request to edit an existing budget. Update = 3, /// Identifies a request to end a budget that has already started. End = 4, /// Identifies a request to remove a budget that hasn't started yet. Remove = 5, } } // Proto file describing AccountBudget statuses. /// Message describing AccountBudget statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AccountBudgetStatusEnum {} pub mod account_budget_status_enum { /// The possible statuses of an AccountBudget. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AccountBudgetStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The account budget is pending approval. Pending = 2, /// The account budget has been approved. Approved = 3, /// The account budget has been cancelled by the user. Cancelled = 4, } } /// Container for enum describing possible statuses of an account link. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AccountLinkStatusEnum {} pub mod account_link_status_enum { /// Describes the possible statuses for a link between a Google Ads customer /// and another account. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AccountLinkStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The link is enabled. Enabled = 2, /// The link is removed/disabled. Removed = 3, } } // Proto file describing Ad Customizer placeholder fields. /// Values for Ad Customizer placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdCustomizerPlaceholderFieldEnum {} pub mod ad_customizer_placeholder_field_enum { /// Possible values for Ad Customizers placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdCustomizerPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: INT64. Integer value to be inserted. Integer = 2, /// Data Type: STRING. Price value to be inserted. Price = 3, /// Data Type: DATE_TIME. Date value to be inserted. Date = 4, /// Data Type: STRING. String value to be inserted. String = 5, } } // Proto file describing ad group ad rotation mode. /// Container for enum describing possible ad rotation modes of ads within an /// ad group. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdGroupAdRotationModeEnum {} pub mod ad_group_ad_rotation_mode_enum { /// The possible ad rotation modes of an ad group. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdGroupAdRotationMode { /// The ad rotation mode has not been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// Optimize ad group ads based on clicks or conversions. Optimize = 2, /// Rotate evenly forever. RotateForever = 3, } } // Proto file describing ad group status. /// Container for enum describing possible statuses of an AdGroupAd. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdGroupAdStatusEnum {} pub mod ad_group_ad_status_enum { /// The possible statuses of an AdGroupAd. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdGroupAdStatus { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The ad group ad is enabled. Enabled = 2, /// The ad group ad is paused. Paused = 3, /// The ad group ad is removed. Removed = 4, } } // Proto file describing approval status for the criterion. /// Container for enum describing possible AdGroupCriterion approval statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdGroupCriterionApprovalStatusEnum {} pub mod ad_group_criterion_approval_status_enum { /// Enumerates AdGroupCriterion approval statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdGroupCriterionApprovalStatus { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Approved. Approved = 2, /// Disapproved. Disapproved = 3, /// Pending Review. PendingReview = 4, /// Under review. UnderReview = 5, } } // Proto file describing AdGroupCriterion statuses. /// Message describing AdGroupCriterion statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdGroupCriterionStatusEnum {} pub mod ad_group_criterion_status_enum { /// The possible statuses of an AdGroupCriterion. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdGroupCriterionStatus { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The ad group criterion is enabled. Enabled = 2, /// The ad group criterion is paused. Paused = 3, /// The ad group criterion is removed. Removed = 4, } } // Proto file describing ad group status. /// Container for enum describing possible statuses of an ad group. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdGroupStatusEnum {} pub mod ad_group_status_enum { /// The possible statuses of an ad group. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdGroupStatus { /// The status has not been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The ad group is enabled. Enabled = 2, /// The ad group is paused. Paused = 3, /// The ad group is removed. Removed = 4, } } // Proto file describing ad group types. /// Defines types of an ad group, specific to a particular campaign channel /// type. This type drives validations that restrict which entities can be /// added to the ad group. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdGroupTypeEnum {} pub mod ad_group_type_enum { /// Enum listing the possible types of an ad group. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdGroupType { /// The type has not been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The default ad group type for Search campaigns. SearchStandard = 2, /// The default ad group type for Display campaigns. DisplayStandard = 3, /// The ad group type for Shopping campaigns serving standard product ads. ShoppingProductAds = 4, /// The default ad group type for Hotel campaigns. HotelAds = 6, /// The type for ad groups in Smart Shopping campaigns. ShoppingSmartAds = 7, /// Short unskippable in-stream video ads. VideoBumper = 8, /// TrueView (skippable) in-stream video ads. VideoTrueViewInStream = 9, /// TrueView in-display video ads. VideoTrueViewInDisplay = 10, /// Unskippable in-stream video ads. VideoNonSkippableInStream = 11, /// Outstream video ads. VideoOutstream = 12, /// Ad group type for Dynamic Search Ads ad groups. SearchDynamicAds = 13, /// The type for ad groups in Shopping Comparison Listing campaigns. ShoppingComparisonListingAds = 14, /// The ad group type for Promoted Hotel ad groups. PromotedHotelAds = 15, /// Video responsive ad groups. VideoResponsive = 16, } } // Proto file describing ad serving statuses. /// Possible ad serving statuses of a campaign. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdServingOptimizationStatusEnum {} pub mod ad_serving_optimization_status_enum { /// Enum describing possible serving statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdServingOptimizationStatus { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// Ad serving is optimized based on CTR for the campaign. Optimize = 2, /// Ad serving is optimized based on CTR * Conversion for the campaign. If /// the campaign is not in the conversion optimizer bidding strategy, it will /// default to OPTIMIZED. ConversionOptimize = 3, /// Ads are rotated evenly for 90 days, then optimized for clicks. Rotate = 4, /// Show lower performing ads more evenly with higher performing ads, and do /// not optimize. RotateIndefinitely = 5, /// Ad serving optimization status is not available. Unavailable = 6, } } // Proto file describing ad strengths. /// Container for enum describing possible ad strengths. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdStrengthEnum {} pub mod ad_strength_enum { /// Enum listing the possible ad strengths. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdStrength { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The ad strength is currently pending. Pending = 2, /// No ads could be generated. NoAds = 3, /// Poor strength. Poor = 4, /// Average strength. Average = 5, /// Good strength. Good = 6, /// Excellent strength. Excellent = 7, } } // Proto file describing the ad type. /// Container for enum describing possible types of an ad. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AdTypeEnum {} pub mod ad_type_enum { /// The possible types of an ad. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AdType { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The ad is a text ad. TextAd = 2, /// The ad is an expanded text ad. ExpandedTextAd = 3, /// The ad is a call only ad. CallOnlyAd = 6, /// The ad is an expanded dynamic search ad. ExpandedDynamicSearchAd = 7, /// The ad is a hotel ad. HotelAd = 8, /// The ad is a Smart Shopping ad. ShoppingSmartAd = 9, /// The ad is a standard Shopping ad. ShoppingProductAd = 10, /// The ad is a video ad. VideoAd = 12, /// This ad is a Gmail ad. GmailAd = 13, /// This ad is an Image ad. ImageAd = 14, /// The ad is a responsive search ad. ResponsiveSearchAd = 15, /// The ad is a legacy responsive display ad. LegacyResponsiveDisplayAd = 16, /// The ad is an app ad. AppAd = 17, /// The ad is a legacy app install ad. LegacyAppInstallAd = 18, /// The ad is a responsive display ad. ResponsiveDisplayAd = 19, /// The ad is a local ad. LocalAd = 20, /// The ad is a display upload ad with the HTML5_UPLOAD_AD product type. Html5UploadAd = 21, /// The ad is a display upload ad with one of the DYNAMIC_HTML5_* product /// types. DynamicHtml5Ad = 22, /// The ad is an app engagement ad. AppEngagementAd = 23, /// The ad is a Shopping Comparison Listing ad. ShoppingComparisonListingAd = 24, /// Video bumper ad. VideoBumperAd = 25, /// Video non-skippable in-stream ad. VideoNonSkippableInStreamAd = 26, /// Video outstream ad. VideoOutstreamAd = 27, /// Video TrueView in-display ad. VideoTrueviewDiscoveryAd = 28, /// Video TrueView in-stream ad. VideoTrueviewInStreamAd = 29, /// Video responsive ad. VideoResponsiveAd = 30, } } // Proto file describing relation type for affiliate location feeds. /// Container for enum describing possible values for a relationship type for /// an affiliate location feed. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AffiliateLocationFeedRelationshipTypeEnum {} pub mod affiliate_location_feed_relationship_type_enum { /// Possible values for a relationship type for an affiliate location feed. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AffiliateLocationFeedRelationshipType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// General retailer relationship. GeneralRetailer = 2, } } // Proto file describing Affiliate Location placeholder fields. /// Values for Affiliate Location placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AffiliateLocationPlaceholderFieldEnum {} pub mod affiliate_location_placeholder_field_enum { /// Possible values for Affiliate Location placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AffiliateLocationPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. The name of the business. BusinessName = 2, /// Data Type: STRING. Line 1 of the business address. AddressLine1 = 3, /// Data Type: STRING. Line 2 of the business address. AddressLine2 = 4, /// Data Type: STRING. City of the business address. City = 5, /// Data Type: STRING. Province of the business address. Province = 6, /// Data Type: STRING. Postal code of the business address. PostalCode = 7, /// Data Type: STRING. Country code of the business address. CountryCode = 8, /// Data Type: STRING. Phone number of the business. PhoneNumber = 9, /// Data Type: STRING. Language code of the business. LanguageCode = 10, /// Data Type: INT64. ID of the chain. ChainId = 11, /// Data Type: STRING. Name of the chain. ChainName = 12, } } // Proto file describing App Campaign app store. /// The application store that distributes mobile applications. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AppCampaignAppStoreEnum {} pub mod app_campaign_app_store_enum { /// Enum describing app campaign app store. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AppCampaignAppStore { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Apple app store. AppleAppStore = 2, /// Google play. GoogleAppStore = 3, } } // Proto file describing App Campaign bidding strategy goal types. /// Container for enum describing goal towards which the bidding strategy of an /// app campaign should optimize for. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AppCampaignBiddingStrategyGoalTypeEnum {} pub mod app_campaign_bidding_strategy_goal_type_enum { /// Goal type of App campaign BiddingStrategy. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AppCampaignBiddingStrategyGoalType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Aim to maximize the number of app installs. The cpa bid is the /// target cost per install. OptimizeInstallsTargetInstallCost = 2, /// Aim to maximize the long term number of selected in-app conversions from /// app installs. The cpa bid is the target cost per install. OptimizeInAppConversionsTargetInstallCost = 3, /// Aim to maximize the long term number of selected in-app conversions from /// app installs. The cpa bid is the target cost per in-app conversion. Note /// that the actual cpa may seem higher than the target cpa at first, since /// the long term conversions haven’t happened yet. OptimizeInAppConversionsTargetConversionCost = 4, /// Aim to maximize all conversions' value, i.e. install + selected in-app /// conversions while achieving or exceeding target return on advertising /// spend. OptimizeReturnOnAdvertisingSpend = 5, } } // Proto file describing App placeholder fields. /// Values for App placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AppPlaceholderFieldEnum {} pub mod app_placeholder_field_enum { /// Possible values for App placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AppPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: INT64. The application store that the target application /// belongs to. Valid values are: 1 = Apple iTunes Store; 2 = Google Play /// Store. Store = 2, /// Data Type: STRING. The store-specific ID for the target application. Id = 3, /// Data Type: STRING. The visible text displayed when the link is rendered /// in an ad. LinkText = 4, /// Data Type: STRING. The destination URL of the in-app link. Url = 5, /// Data Type: URL_LIST. Final URLs for the in-app link when using Upgraded /// URLs. FinalUrls = 6, /// Data Type: URL_LIST. Final Mobile URLs for the in-app link when using /// Upgraded URLs. FinalMobileUrls = 7, /// Data Type: URL. Tracking template for the in-app link when using Upgraded /// URLs. TrackingUrl = 8, /// Data Type: STRING. Final URL suffix for the in-app link when using /// parallel tracking. FinalUrlSuffix = 9, } } // Proto file describing asset type. /// Container for enum describing the possible placements of an asset. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AssetFieldTypeEnum {} pub mod asset_field_type_enum { /// Enum describing the possible placements of an asset. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AssetFieldType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The asset is linked for use as a headline. Headline = 2, /// The asset is linked for use as a description. Description = 3, /// The asset is linked for use as mandatory ad text. MandatoryAdText = 4, /// The asset is linked for use as a marketing image. MarketingImage = 5, /// The asset is linked for use as a media bundle. MediaBundle = 6, /// The asset is linked for use as a YouTube video. YoutubeVideo = 7, } } // Proto file describing the performance label of an asset. /// Container for enum describing the performance label of an asset. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AssetPerformanceLabelEnum {} pub mod asset_performance_label_enum { /// Enum describing the possible performance labels of an asset, usually /// computed in the context of a linkage. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AssetPerformanceLabel { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// This asset does not yet have any performance informantion. This may be /// because it is still under review. Pending = 2, /// The asset has started getting impressions but the stats are not /// statistically significant enough to get an asset performance label. Learning = 3, /// Worst performing assets. Low = 4, /// Good performing assets. Good = 5, /// Best performing assets. Best = 6, } } // Proto file describing asset type. /// Container for enum describing the types of asset. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AssetTypeEnum {} pub mod asset_type_enum { /// Enum describing possible types of asset. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AssetType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// YouTube video asset. YoutubeVideo = 2, /// Media bundle asset. MediaBundle = 3, /// Image asset. Image = 4, /// Text asset. Text = 5, /// Book on Google asset. BookOnGoogle = 7, } } /// Container for enum representing the attribution model that describes how to /// distribute credit for a particular conversion across potentially many prior /// interactions. #[derive(Clone, PartialEq, ::prost::Message)] pub struct AttributionModelEnum {} pub mod attribution_model_enum { /// The attribution model that describes how to distribute credit for a /// particular conversion across potentially many prior interactions. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum AttributionModel { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Uses external attribution. External = 100, /// Attributes all credit for a conversion to its last click. GoogleAdsLastClick = 101, /// Attributes all credit for a conversion to its first click using Google /// Search attribution. GoogleSearchAttributionFirstClick = 102, /// Attributes credit for a conversion equally across all of its clicks using /// Google Search attribution. GoogleSearchAttributionLinear = 103, /// Attributes exponentially more credit for a conversion to its more recent /// clicks using Google Search attribution (half-life is 1 week). GoogleSearchAttributionTimeDecay = 104, /// Attributes 40% of the credit for a conversion to its first and last /// clicks. Remaining 20% is evenly distributed across all other clicks. This /// uses Google Search attribution. GoogleSearchAttributionPositionBased = 105, /// Flexible model that uses machine learning to determine the appropriate /// distribution of credit among clicks using Google Search attribution. GoogleSearchAttributionDataDriven = 106, } } // Proto file describing batch job statuses. /// Container for enum describing possible batch job statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BatchJobStatusEnum {} pub mod batch_job_status_enum { /// The batch job statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BatchJobStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The job is not currently running. Pending = 2, /// The job is running. Running = 3, /// The job is done. Done = 4, } } // Proto file describing bid modifier source. /// Container for enum describing possible bid modifier sources. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BidModifierSourceEnum {} pub mod bid_modifier_source_enum { /// Enum describing possible bid modifier sources. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BidModifierSource { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The bid modifier is specified at the campaign level, on the campaign /// level criterion. Campaign = 2, /// The bid modifier is specified (overridden) at the ad group level. AdGroup = 3, } } // Proto file describing bidding sources. /// Container for enum describing possible bidding sources. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BiddingSourceEnum {} pub mod bidding_source_enum { /// Indicates where a bid or target is defined. For example, an ad group /// criterion may define a cpc bid directly, or it can inherit its cpc bid from /// the ad group. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BiddingSource { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Effective bid or target is inherited from campaign bidding strategy. CampaignBiddingStrategy = 5, /// The bid or target is defined on the ad group. AdGroup = 6, /// The bid or target is defined on the ad group criterion. AdGroupCriterion = 7, } } // Proto file describing BiddingStrategy statuses. /// Message describing BiddingStrategy statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BiddingStrategyStatusEnum {} pub mod bidding_strategy_status_enum { /// The possible statuses of a BiddingStrategy. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BiddingStrategyStatus { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The bidding strategy is enabled. Enabled = 2, /// The bidding strategy is removed. Removed = 4, } } // Proto file describing bidding schemes. /// Container for enum describing possible bidding strategy types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BiddingStrategyTypeEnum {} pub mod bidding_strategy_type_enum { /// Enum describing possible bidding strategy types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BiddingStrategyType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Commission is an automatic bidding strategy in which the advertiser pays /// a certain portion of the conversion value. Commission = 16, /// Enhanced CPC is a bidding strategy that raises bids for clicks /// that seem more likely to lead to a conversion and lowers /// them for clicks where they seem less likely. EnhancedCpc = 2, /// Manual click based bidding where user pays per click. ManualCpc = 3, /// Manual impression based bidding /// where user pays per thousand impressions. ManualCpm = 4, /// A bidding strategy that pays a configurable amount per video view. ManualCpv = 13, /// A bidding strategy that automatically maximizes number of conversions /// given a daily budget. MaximizeConversions = 10, /// An automated bidding strategy that automatically sets bids to maximize /// revenue while spending your budget. MaximizeConversionValue = 11, /// Page-One Promoted bidding scheme, which sets max cpc bids to /// target impressions on page one or page one promoted slots on google.com. /// This enum value is deprecated. PageOnePromoted = 5, /// Percent Cpc is bidding strategy where bids are a fraction of the /// advertised price for some good or service. PercentCpc = 12, /// Target CPA is an automated bid strategy that sets bids /// to help get as many conversions as possible /// at the target cost-per-acquisition (CPA) you set. TargetCpa = 6, /// Target CPM is an automated bid strategy that sets bids to help get /// as many impressions as possible at the target cost per one thousand /// impressions (CPM) you set. TargetCpm = 14, /// An automated bidding strategy that sets bids so that a certain percentage /// of search ads are shown at the top of the first page (or other targeted /// location). TargetImpressionShare = 15, /// Target Outrank Share is an automated bidding strategy that sets bids /// based on the target fraction of auctions where the advertiser /// should outrank a specific competitor. /// This enum value is deprecated. TargetOutrankShare = 7, /// Target ROAS is an automated bidding strategy /// that helps you maximize revenue while averaging /// a specific target Return On Average Spend (ROAS). TargetRoas = 8, /// Target Spend is an automated bid strategy that sets your bids /// to help get as many clicks as possible within your budget. TargetSpend = 9, } } // Proto file describing BillingSetup statuses. /// Message describing BillingSetup statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BillingSetupStatusEnum {} pub mod billing_setup_status_enum { /// The possible statuses of a BillingSetup. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BillingSetupStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The billing setup is pending approval. Pending = 2, /// The billing setup has been approved but the corresponding first budget /// has not. This can only occur for billing setups configured for monthly /// invoicing. ApprovedHeld = 3, /// The billing setup has been approved. Approved = 4, /// The billing setup was cancelled by the user prior to approval. Cancelled = 5, } } // Proto file describing brand safety suitability settings. /// Container for enum with 3-Tier brand safety suitability control. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BrandSafetySuitabilityEnum {} pub mod brand_safety_suitability_enum { /// 3-Tier brand safety suitability control. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BrandSafetySuitability { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// This option lets you show ads across all inventory on YouTube and video /// partners that meet our standards for monetization. This option may be an /// appropriate choice for brands that want maximum access to the full /// breadth of videos eligible for ads, including, for example, videos that /// have strong profanity in the context of comedy or a documentary, or /// excessive violence as featured in video games. ExpandedInventory = 2, /// This option lets you show ads across a wide range of content that's /// appropriate for most brands, such as popular music videos, documentaries, /// and movie trailers. The content you can show ads on is based on YouTube's /// advertiser-friendly content guidelines that take into account, for /// example, the strength or frequency of profanity, or the appropriateness /// of subject matter like sensitive events. Ads won't show, for example, on /// content with repeated strong profanity, strong sexual content, or graphic /// violence. StandardInventory = 3, /// This option lets you show ads on a reduced range of content that's /// appropriate for brands with particularly strict guidelines around /// inappropriate language and sexual suggestiveness; above and beyond what /// YouTube's advertiser-friendly content guidelines address. The videos /// accessible in this sensitive category meet heightened requirements, /// especially for inappropriate language and sexual suggestiveness. For /// example, your ads will be excluded from showing on some of YouTube's most /// popular music videos and other pop culture content across YouTube and /// Google video partners. LimitedInventory = 4, } } // Proto file describing Budget delivery methods. /// Message describing Budget delivery methods. A delivery method determines the /// rate at which the Budget is spent. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BudgetDeliveryMethodEnum {} pub mod budget_delivery_method_enum { /// Possible delivery methods of a Budget. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BudgetDeliveryMethod { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The budget server will throttle serving evenly across /// the entire time period. Standard = 2, /// The budget server will not throttle serving, /// and ads will serve as fast as possible. Accelerated = 3, } } // Proto file describing Budget delivery methods. /// Message describing Budget period. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BudgetPeriodEnum {} pub mod budget_period_enum { /// Possible period of a Budget. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BudgetPeriod { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Daily budget. Daily = 2, } } // Proto file describing Budget statuses /// Message describing a Budget status #[derive(Clone, PartialEq, ::prost::Message)] pub struct BudgetStatusEnum {} pub mod budget_status_enum { /// Possible statuses of a Budget. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BudgetStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Budget is enabled. Enabled = 2, /// Budget is removed. Removed = 3, } } // Proto file describing Budget types. /// Describes Budget types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct BudgetTypeEnum {} pub mod budget_type_enum { /// Possible Budget types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum BudgetType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Budget type for standard Google Ads usage. /// Caps daily spend at two times the specified budget amount. /// Full details: https://support.google.com/google-ads/answer/6385083 Standard = 2, /// Budget type for Hotels Ads commission program. /// Full details: https://support.google.com/google-ads/answer/9243945 /// /// This type is only supported by campaigns with /// AdvertisingChannelType.HOTEL, BiddingStrategyType.COMMISSION and /// PaymentMode.CONVERSION_VALUE. HotelAdsCommission = 3, /// Budget type with a fixed cost-per-acquisition (conversion). /// Full details: https://support.google.com/google-ads/answer/7528254 /// /// This type is only supported by campaigns with /// AdvertisingChannelType.DISPLAY (excluding /// AdvertisingChannelSubType.DISPLAY_GMAIL), /// BiddingStrategyType.TARGET_CPA and PaymentMode.CONVERSIONS. FixedCpa = 4, } } // Proto file describing Call placeholder fields. /// Values for Call placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CallPlaceholderFieldEnum {} pub mod call_placeholder_field_enum { /// Possible values for Call placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CallPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. The advertiser's phone number to append to the ad. PhoneNumber = 2, /// Data Type: STRING. Uppercase two-letter country code of the advertiser's /// phone number. CountryCode = 3, /// Data Type: BOOLEAN. Indicates whether call tracking is enabled. Default: /// true. Tracked = 4, /// Data Type: INT64. The ID of an AdCallMetricsConversion object. This /// object contains the phoneCallDurationfield which is the minimum duration /// (in seconds) of a call to be considered a conversion. ConversionTypeId = 5, /// Data Type: STRING. Indicates whether this call extension uses its own /// call conversion setting or follows the account level setting. /// Valid values are: USE_ACCOUNT_LEVEL_CALL_CONVERSION_ACTION and /// USE_RESOURCE_LEVEL_CALL_CONVERSION_ACTION. ConversionReportingState = 6, } } // Proto file describing Callout placeholder fields. /// Values for Callout placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CalloutPlaceholderFieldEnum {} pub mod callout_placeholder_field_enum { /// Possible values for Callout placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CalloutPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Callout text. CalloutText = 2, } } // Proto file describing CampaignCriterion statuses. /// Message describing CampaignCriterion statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CampaignCriterionStatusEnum {} pub mod campaign_criterion_status_enum { /// The possible statuses of a CampaignCriterion. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CampaignCriterionStatus { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The campaign criterion is enabled. Enabled = 2, /// The campaign criterion is paused. Paused = 3, /// The campaign criterion is removed. Removed = 4, } } // Proto file describing campaign draft status. /// Container for enum describing possible statuses of a campaign draft. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CampaignDraftStatusEnum {} pub mod campaign_draft_status_enum { /// Possible statuses of a campaign draft. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CampaignDraftStatus { /// The status has not been specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Initial state of the draft, the advertiser can start adding changes with /// no effect on serving. Proposed = 2, /// The campaign draft is removed. Removed = 3, /// Advertiser requested to promote draft's changes back into the original /// campaign. Advertiser can poll the long running operation returned by /// the promote action to see the status of the promotion. Promoting = 5, /// The process to merge changes in the draft back to the original campaign /// has completed successfully. Promoted = 4, /// The promotion failed after it was partially applied. Promote cannot be /// attempted again safely, so the issue must be corrected in the original /// campaign. PromoteFailed = 6, } } // Proto file describing campaign experiment status. /// Container for enum describing possible statuses of a campaign experiment. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CampaignExperimentStatusEnum {} pub mod campaign_experiment_status_enum { /// Possible statuses of a campaign experiment. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CampaignExperimentStatus { /// The status has not been specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The experiment campaign is being initialized. Initializing = 2, /// Initialization of the experiment campaign failed. InitializationFailed = 8, /// The experiment campaign is fully initialized. The experiment is currently /// running, scheduled to run in the future or has ended based on its /// end date. An experiment with the status INITIALIZING will be updated to /// ENABLED when it is fully created. Enabled = 3, /// The experiment campaign was graduated to a stand-alone /// campaign, existing independently of the experiment. Graduated = 4, /// The experiment is removed. Removed = 5, /// The experiment's changes are being applied to the original campaign. /// The long running operation returned by the promote method can be polled /// to see the status of the promotion. Promoting = 6, /// Promote of the experiment campaign failed. PromotionFailed = 9, /// The changes of the experiment are promoted to their original campaign. Promoted = 7, /// The experiment was ended manually. It did not end based on its end date. EndedManually = 10, } } // Proto file describing campaign experiment traffic split type. /// Container for enum describing campaign experiment traffic split type. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CampaignExperimentTrafficSplitTypeEnum {} pub mod campaign_experiment_traffic_split_type_enum { /// Enum of strategies for splitting traffic between base and experiment /// campaigns in campaign experiment. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CampaignExperimentTrafficSplitType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Traffic is randomly assigned to the base or experiment arm for each /// query, independent of previous assignments for the same user. RandomQuery = 2, /// Traffic is split using cookies to keep users in the same arm (base or /// experiment) of the experiment. Cookie = 3, } } // Proto file describing campaign experiment type. /// Container for enum describing campaign experiment type. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CampaignExperimentTypeEnum {} pub mod campaign_experiment_type_enum { /// Indicates if this campaign is a normal campaign, /// a draft campaign, or an experiment campaign. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CampaignExperimentType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// This is a regular campaign. Base = 2, /// This is a draft version of a campaign. /// It has some modifications from a base campaign, /// but it does not serve or accrue metrics. Draft = 3, /// This is an experiment version of a campaign. /// It has some modifications from a base campaign, /// and a percentage of traffic is being diverted /// from the BASE campaign to this experiment campaign. Experiment = 4, } } // Proto file describing Campaign serving statuses. /// Message describing Campaign serving statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CampaignServingStatusEnum {} pub mod campaign_serving_status_enum { /// Possible serving statuses of a campaign. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CampaignServingStatus { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// Serving. Serving = 2, /// None. None = 3, /// Ended. Ended = 4, /// Pending. Pending = 5, /// Suspended. Suspended = 6, } } // Proto file describing campaign shared set statuses. /// Container for enum describing types of campaign shared set statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CampaignSharedSetStatusEnum {} pub mod campaign_shared_set_status_enum { /// Enum listing the possible campaign shared set statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CampaignSharedSetStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The campaign shared set is enabled. Enabled = 2, /// The campaign shared set is removed and can no longer be used. Removed = 3, } } // Proto file describing campaign status. /// Container for enum describing possible statuses of a campaign. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CampaignStatusEnum {} pub mod campaign_status_enum { /// Possible statuses of a campaign. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CampaignStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Campaign is currently serving ads depending on budget information. Enabled = 2, /// Campaign has been paused by the user. Paused = 3, /// Campaign has been removed. Removed = 4, } } // Proto file describing the change status operations. /// Container for enum describing operations for the ChangeStatus resource. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChangeStatusOperationEnum {} pub mod change_status_operation_enum { /// Status of the changed resource #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ChangeStatusOperation { /// No value has been specified. Unspecified = 0, /// Used for return value only. Represents an unclassified resource unknown /// in this version. Unknown = 1, /// The resource was created. Added = 2, /// The resource was modified. Changed = 3, /// The resource was removed. Removed = 4, } } // Proto file describing the resource types the ChangeStatus resource supports. /// Container for enum describing supported resource types for the ChangeStatus /// resource. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ChangeStatusResourceTypeEnum {} pub mod change_status_resource_type_enum { /// Enum listing the resource types support by the ChangeStatus resource. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ChangeStatusResourceType { /// No value has been specified. Unspecified = 0, /// Used for return value only. Represents an unclassified resource unknown /// in this version. Unknown = 1, /// An AdGroup resource change. AdGroup = 3, /// An AdGroupAd resource change. AdGroupAd = 4, /// An AdGroupCriterion resource change. AdGroupCriterion = 5, /// A Campaign resource change. Campaign = 6, /// A CampaignCriterion resource change. CampaignCriterion = 7, /// A Feed resource change. Feed = 9, /// A FeedItem resource change. FeedItem = 10, /// An AdGroupFeed resource change. AdGroupFeed = 11, /// A CampaignFeed resource change. CampaignFeed = 12, /// An AdGroupBidModifier resource change. AdGroupBidModifier = 13, } } // Proto file describing conversion action counting type. /// Container for enum describing the conversion deduplication mode for /// conversion optimizer. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ConversionActionCountingTypeEnum {} pub mod conversion_action_counting_type_enum { /// Indicates how conversions for this action will be counted. For more /// information, see https://support.google.com/google-ads/answer/3438531. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ConversionActionCountingType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Count only one conversion per click. OnePerClick = 2, /// Count all conversions per click. ManyPerClick = 3, } } // Proto file describing conversion action status. /// Container for enum describing possible statuses of a conversion action. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ConversionActionStatusEnum {} pub mod conversion_action_status_enum { /// Possible statuses of a conversion action. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ConversionActionStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Conversions will be recorded. Enabled = 2, /// Conversions will not be recorded. Removed = 3, /// Conversions will not be recorded and the conversion action will not /// appear in the UI. Hidden = 4, } } // Proto file describing conversion action type. /// Container for enum describing possible types of a conversion action. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ConversionActionTypeEnum {} pub mod conversion_action_type_enum { /// Possible types of a conversion action. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ConversionActionType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Conversions that occur when a user clicks on an ad's call extension. AdCall = 2, /// Conversions that occur when a user on a mobile device clicks a phone /// number. ClickToCall = 3, /// Conversions that occur when a user downloads a mobile app from the Google /// Play Store. GooglePlayDownload = 4, /// Conversions that occur when a user makes a purchase in an app through /// Android billing. GooglePlayInAppPurchase = 5, /// Call conversions that are tracked by the advertiser and uploaded. UploadCalls = 6, /// Conversions that are tracked by the advertiser and uploaded with /// attributed clicks. UploadClicks = 7, /// Conversions that occur on a webpage. Webpage = 8, /// Conversions that occur when a user calls a dynamically-generated phone /// number from an advertiser's website. WebsiteCall = 9, /// Store Sales conversion based on first-party or third-party merchant /// data uploads. /// Only customers on the allowlist can use store sales direct upload types. StoreSalesDirectUpload = 10, /// Store Sales conversion based on first-party or third-party merchant /// data uploads and/or from in-store purchases using cards from payment /// networks. /// Only customers on the allowlist can use store sales types. StoreSales = 11, /// Android app first open conversions tracked via Firebase. FirebaseAndroidFirstOpen = 12, /// Android app in app purchase conversions tracked via Firebase. FirebaseAndroidInAppPurchase = 13, /// Android app custom conversions tracked via Firebase. FirebaseAndroidCustom = 14, /// iOS app first open conversions tracked via Firebase. FirebaseIosFirstOpen = 15, /// iOS app in app purchase conversions tracked via Firebase. FirebaseIosInAppPurchase = 16, /// iOS app custom conversions tracked via Firebase. FirebaseIosCustom = 17, /// Android app first open conversions tracked via Third Party App Analytics. ThirdPartyAppAnalyticsAndroidFirstOpen = 18, /// Android app in app purchase conversions tracked via Third Party App /// Analytics. ThirdPartyAppAnalyticsAndroidInAppPurchase = 19, /// Android app custom conversions tracked via Third Party App Analytics. ThirdPartyAppAnalyticsAndroidCustom = 20, /// iOS app first open conversions tracked via Third Party App Analytics. ThirdPartyAppAnalyticsIosFirstOpen = 21, /// iOS app in app purchase conversions tracked via Third Party App /// Analytics. ThirdPartyAppAnalyticsIosInAppPurchase = 22, /// iOS app custom conversions tracked via Third Party App Analytics. ThirdPartyAppAnalyticsIosCustom = 23, } } // Proto file describing conversion adjustment type. /// Container for enum describing conversion adjustment types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ConversionAdjustmentTypeEnum {} pub mod conversion_adjustment_type_enum { /// The different actions advertisers can take to adjust the conversions that /// they already reported. Retractions negate a conversion. Restatements change /// the value of a conversion. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ConversionAdjustmentType { /// Not specified. Unspecified = 0, /// Represents value unknown in this version. Unknown = 1, /// Negates a conversion so that its total value and count are both zero. Retraction = 2, /// Changes the value of a conversion. Restatement = 3, } } // Proto file describing approval status for the criterion. /// Container for enum describing possible criterion system serving statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CriterionSystemServingStatusEnum {} pub mod criterion_system_serving_status_enum { /// Enumerates criterion system serving statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CriterionSystemServingStatus { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Eligible. Eligible = 2, /// Low search volume. RarelyServed = 3, } } // Proto file describing criteria types. /// The possible types of a criterion. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CriterionTypeEnum {} pub mod criterion_type_enum { /// Enum describing possible criterion types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CriterionType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Keyword. e.g. 'mars cruise'. Keyword = 2, /// Placement, aka Website. e.g. 'www.flowers4sale.com' Placement = 3, /// Mobile application categories to target. MobileAppCategory = 4, /// Mobile applications to target. MobileApplication = 5, /// Devices to target. Device = 6, /// Locations to target. Location = 7, /// Listing groups to target. ListingGroup = 8, /// Ad Schedule. AdSchedule = 9, /// Age range. AgeRange = 10, /// Gender. Gender = 11, /// Income Range. IncomeRange = 12, /// Parental status. ParentalStatus = 13, /// YouTube Video. YoutubeVideo = 14, /// YouTube Channel. YoutubeChannel = 15, /// User list. UserList = 16, /// Proximity. Proximity = 17, /// A topic target on the display network (e.g. "Pets & Animals"). Topic = 18, /// Listing scope to target. ListingScope = 19, /// Language. Language = 20, /// IpBlock. IpBlock = 21, /// Content Label for category exclusion. ContentLabel = 22, /// Carrier. Carrier = 23, /// A category the user is interested in. UserInterest = 24, /// Webpage criterion for dynamic search ads. Webpage = 25, /// Operating system version. OperatingSystemVersion = 26, /// App payment model. AppPaymentModel = 27, /// Mobile device. MobileDevice = 28, /// Custom affinity. CustomAffinity = 29, /// Custom intent. CustomIntent = 30, /// Location group. LocationGroup = 31, } } // Proto file describing custom interest member type. /// The types of custom interest member, either KEYWORD or URL. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CustomInterestMemberTypeEnum {} pub mod custom_interest_member_type_enum { /// Enum containing possible custom interest member types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CustomInterestMemberType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Custom interest member type KEYWORD. Keyword = 2, /// Custom interest member type URL. Url = 3, } } // Proto file describing custom interest status. /// The status of custom interest. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CustomInterestStatusEnum {} pub mod custom_interest_status_enum { /// Enum containing possible custom interest types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CustomInterestStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Enabled status - custom interest is enabled and can be targeted to. Enabled = 2, /// Removed status - custom interest is removed and cannot be used for /// targeting. Removed = 3, } } // Proto file describing custom interest type. /// The types of custom interest. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CustomInterestTypeEnum {} pub mod custom_interest_type_enum { /// Enum containing possible custom interest types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CustomInterestType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Allows brand advertisers to define custom affinity audience lists. CustomAffinity = 2, /// Allows advertisers to define custom intent audience lists. CustomIntent = 3, } } // Proto file describing Custom placeholder fields. /// Values for Custom placeholder fields. /// For more information about dynamic remarketing feeds, see /// https://support.google.com/google-ads/answer/6053288. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CustomPlaceholderFieldEnum {} pub mod custom_placeholder_field_enum { /// Possible values for Custom placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CustomPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Required. Combination ID and ID2 must be unique per /// offer. Id = 2, /// Data Type: STRING. Combination ID and ID2 must be unique per offer. Id2 = 3, /// Data Type: STRING. Required. Main headline with product name to be shown /// in dynamic ad. ItemTitle = 4, /// Data Type: STRING. Optional text to be shown in the image ad. ItemSubtitle = 5, /// Data Type: STRING. Optional description of the product to be shown in the /// ad. ItemDescription = 6, /// Data Type: STRING. Full address of your offer or service, including /// postal code. This will be used to identify the closest product to the /// user when there are multiple offers in the feed that are relevant to the /// user. ItemAddress = 7, /// Data Type: STRING. Price to be shown in the ad. /// Example: "100.00 USD" Price = 8, /// Data Type: STRING. Formatted price to be shown in the ad. /// Example: "Starting at $100.00 USD", "$80 - $100" FormattedPrice = 9, /// Data Type: STRING. Sale price to be shown in the ad. /// Example: "80.00 USD" SalePrice = 10, /// Data Type: STRING. Formatted sale price to be shown in the ad. /// Example: "On sale for $80.00", "$60 - $80" FormattedSalePrice = 11, /// Data Type: URL. Image to be displayed in the ad. Highly recommended for /// image ads. ImageUrl = 12, /// Data Type: STRING. Used as a recommendation engine signal to serve items /// in the same category. ItemCategory = 13, /// Data Type: URL_LIST. Final URLs for the ad when using Upgraded /// URLs. User will be redirected to these URLs when they click on an ad, or /// when they click on a specific product for ads that have multiple /// products. FinalUrls = 14, /// Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded /// URLs. FinalMobileUrls = 15, /// Data Type: URL. Tracking template for the ad when using Upgraded URLs. TrackingUrl = 16, /// Data Type: STRING_LIST. Keywords used for product retrieval. ContextualKeywords = 17, /// Data Type: STRING. Android app link. Must be formatted as: /// android-app://{package_id}/{scheme}/{host_path}. /// The components are defined as follows: /// package_id: app ID as specified in Google Play. /// scheme: the scheme to pass to the application. Can be HTTP, or a custom /// scheme. /// host_path: identifies the specific content within your application. AndroidAppLink = 18, /// Data Type: STRING_LIST. List of recommended IDs to show together with /// this item. SimilarIds = 19, /// Data Type: STRING. iOS app link. IosAppLink = 20, /// Data Type: INT64. iOS app store ID. IosAppStoreId = 21, } } // Proto file describing pay per conversion eligibility failure reasons. /// Container for enum describing reasons why a customer is not eligible to use /// PaymentMode.CONVERSIONS. #[derive(Clone, PartialEq, ::prost::Message)] pub struct CustomerPayPerConversionEligibilityFailureReasonEnum {} pub mod customer_pay_per_conversion_eligibility_failure_reason_enum { /// Enum describing possible reasons a customer is not eligible to use /// PaymentMode.CONVERSIONS. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum CustomerPayPerConversionEligibilityFailureReason { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Customer does not have enough conversions. NotEnoughConversions = 2, /// Customer's conversion lag is too high. ConversionLagTooHigh = 3, /// Customer uses shared budgets. HasCampaignWithSharedBudget = 4, /// Customer has conversions with ConversionActionType.UPLOAD_CLICKS. HasUploadClicksConversion = 5, /// Customer's average daily spend is too high. AverageDailySpendTooHigh = 6, /// Customer's eligibility has not yet been calculated by the Google Ads /// backend. Check back soon. AnalysisNotComplete = 7, /// Customer is not eligible due to other reasons. Other = 8, } } // Proto file describing data-driven model status. /// Container for enum indicating data driven model status. #[derive(Clone, PartialEq, ::prost::Message)] pub struct DataDrivenModelStatusEnum {} pub mod data_driven_model_status_enum { /// Enumerates data driven model statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum DataDrivenModelStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The data driven model is available. Available = 2, /// The data driven model is stale. It hasn't been updated for at least 7 /// days. It is still being used, but will become expired if it does not get /// updated for 30 days. Stale = 3, /// The data driven model expired. It hasn't been updated for at least 30 /// days and cannot be used. Most commonly this is because there hasn't been /// the required number of events in a recent 30-day period. Expired = 4, /// The data driven model has never been generated. Most commonly this is /// because there has never been the required number of events in any 30-day /// period. NeverGenerated = 5, } } // Proto file describing distance buckets. /// Container for distance buckets of a user’s distance from an advertiser’s /// location extension. #[derive(Clone, PartialEq, ::prost::Message)] pub struct DistanceBucketEnum {} pub mod distance_bucket_enum { /// The distance bucket for a user’s distance from an advertiser’s location /// extension. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum DistanceBucket { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// User was within 700m of the location. Within700m = 2, /// User was within 1KM of the location. Within1km = 3, /// User was within 5KM of the location. Within5km = 4, /// User was within 10KM of the location. Within10km = 5, /// User was within 15KM of the location. Within15km = 6, /// User was within 20KM of the location. Within20km = 7, /// User was within 25KM of the location. Within25km = 8, /// User was within 30KM of the location. Within30km = 9, /// User was within 35KM of the location. Within35km = 10, /// User was within 40KM of the location. Within40km = 11, /// User was within 45KM of the location. Within45km = 12, /// User was within 50KM of the location. Within50km = 13, /// User was within 55KM of the location. Within55km = 14, /// User was within 60KM of the location. Within60km = 15, /// User was within 65KM of the location. Within65km = 16, /// User was beyond 65KM of the location. Beyond65km = 17, /// User was within 0.7 miles of the location. Within07miles = 18, /// User was within 1 mile of the location. Within1mile = 19, /// User was within 5 miles of the location. Within5miles = 20, /// User was within 10 miles of the location. Within10miles = 21, /// User was within 15 miles of the location. Within15miles = 22, /// User was within 20 miles of the location. Within20miles = 23, /// User was within 25 miles of the location. Within25miles = 24, /// User was within 30 miles of the location. Within30miles = 25, /// User was within 35 miles of the location. Within35miles = 26, /// User was within 40 miles of the location. Within40miles = 27, /// User was beyond 40 miles of the location. Beyond40miles = 28, } } // Proto file describing Dynamic Search Ad Page Feed criterion fields. /// Values for Dynamic Search Ad Page Feed criterion fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct DsaPageFeedCriterionFieldEnum {} pub mod dsa_page_feed_criterion_field_enum { /// Possible values for Dynamic Search Ad Page Feed criterion fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum DsaPageFeedCriterionField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: URL or URL_LIST. URL of the web page you want to target. PageUrl = 2, /// Data Type: STRING_LIST. The labels that will help you target ads within /// your page feed. Label = 3, } } // Proto file describing Education placeholder fields. /// Values for Education placeholder fields. /// For more information about dynamic remarketing feeds, see /// https://support.google.com/google-ads/answer/6053288. #[derive(Clone, PartialEq, ::prost::Message)] pub struct EducationPlaceholderFieldEnum {} pub mod education_placeholder_field_enum { /// Possible values for Education placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum EducationPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Required. Combination of PROGRAM ID and LOCATION ID /// must be unique per offer. ProgramId = 2, /// Data Type: STRING. Combination of PROGRAM ID and LOCATION ID must be /// unique per offer. LocationId = 3, /// Data Type: STRING. Required. Main headline with program name to be shown /// in dynamic ad. ProgramName = 4, /// Data Type: STRING. Area of study that can be shown in dynamic ad. AreaOfStudy = 5, /// Data Type: STRING. Description of program that can be shown in dynamic /// ad. ProgramDescription = 6, /// Data Type: STRING. Name of school that can be shown in dynamic ad. SchoolName = 7, /// Data Type: STRING. Complete school address, including postal code. Address = 8, /// Data Type: URL. Image to be displayed in ads. ThumbnailImageUrl = 9, /// Data Type: URL. Alternative hosted file of image to be used in the ad. AlternativeThumbnailImageUrl = 10, /// Data Type: URL_LIST. Required. Final URLs to be used in ad when using /// Upgraded URLs; the more specific the better (e.g. the individual URL of a /// specific program and its location). FinalUrls = 11, /// Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded /// URLs. FinalMobileUrls = 12, /// Data Type: URL. Tracking template for the ad when using Upgraded URLs. TrackingUrl = 13, /// Data Type: STRING_LIST. Keywords used for product retrieval. ContextualKeywords = 14, /// Data Type: STRING. Android app link. Must be formatted as: /// android-app://{package_id}/{scheme}/{host_path}. /// The components are defined as follows: /// package_id: app ID as specified in Google Play. /// scheme: the scheme to pass to the application. Can be HTTP, or a custom /// scheme. /// host_path: identifies the specific content within your application. AndroidAppLink = 15, /// Data Type: STRING_LIST. List of recommended program IDs to show together /// with this item. SimilarProgramIds = 16, /// Data Type: STRING. iOS app link. IosAppLink = 17, /// Data Type: INT64. iOS app store ID. IosAppStoreId = 18, } } // Proto file describing extension setting device type. /// Container for enum describing extension setting device types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExtensionSettingDeviceEnum {} pub mod extension_setting_device_enum { /// Possible device types for an extension setting. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ExtensionSettingDevice { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Mobile. The extensions in the extension setting will only serve on /// mobile devices. Mobile = 2, /// Desktop. The extensions in the extension setting will only serve on /// desktop devices. Desktop = 3, } } // Proto file describing extension type. /// Container for enum describing possible data types for an extension in an /// extension setting. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ExtensionTypeEnum {} pub mod extension_type_enum { /// Possible data types for an extension in an extension setting. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ExtensionType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// None. None = 2, /// App. App = 3, /// Call. Call = 4, /// Callout. Callout = 5, /// Message. Message = 6, /// Price. Price = 7, /// Promotion. Promotion = 8, /// Sitelink. Sitelink = 10, /// Structured snippet. StructuredSnippet = 11, /// Location. Location = 12, /// Affiliate location. AffiliateLocation = 13, /// Hotel callout HotelCallout = 15, } } // Proto file describing feed attribute type. /// Container for enum describing possible data types for a feed attribute. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedAttributeTypeEnum {} pub mod feed_attribute_type_enum { /// Possible data types for a feed attribute. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedAttributeType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Int64. Int64 = 2, /// Double. Double = 3, /// String. String = 4, /// Boolean. Boolean = 5, /// Url. Url = 6, /// Datetime. DateTime = 7, /// Int64 list. Int64List = 8, /// Double (8 bytes) list. DoubleList = 9, /// String list. StringList = 10, /// Boolean list. BooleanList = 11, /// Url list. UrlList = 12, /// Datetime list. DateTimeList = 13, /// Price. Price = 14, } } // Proto file describing feed item quality evaluation approval statuses. /// Container for enum describing possible quality evaluation approval statuses /// of a feed item. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedItemQualityApprovalStatusEnum {} pub mod feed_item_quality_approval_status_enum { /// The possible quality evaluation approval statuses of a feed item. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedItemQualityApprovalStatus { /// No value has been specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Meets all quality expectations. Approved = 2, /// Does not meet some quality expectations. The specific reason is found in /// the quality_disapproval_reasons field. Disapproved = 3, } } // Proto file describing feed item quality disapproval reasons. /// Container for enum describing possible quality evaluation disapproval reasons /// of a feed item. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedItemQualityDisapprovalReasonEnum {} pub mod feed_item_quality_disapproval_reason_enum { /// The possible quality evaluation disapproval reasons of a feed item. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedItemQualityDisapprovalReason { /// No value has been specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Price contains repetitive headers. PriceTableRepetitiveHeaders = 2, /// Price contains repetitive description. PriceTableRepetitiveDescription = 3, /// Price contains inconsistent items. PriceTableInconsistentRows = 4, /// Price contains qualifiers in description. PriceDescriptionHasPriceQualifiers = 5, /// Price contains an unsupported language. PriceUnsupportedLanguage = 6, /// Price item header is not relevant to the price type. PriceTableRowHeaderTableTypeMismatch = 7, /// Price item header has promotional text. PriceTableRowHeaderHasPromotionalText = 8, /// Price item description is not relevant to the item header. PriceTableRowDescriptionNotRelevant = 9, /// Price item description contains promotional text. PriceTableRowDescriptionHasPromotionalText = 10, /// Price item header and description are repetitive. PriceTableRowHeaderDescriptionRepetitive = 11, /// Price item is in a foreign language, nonsense, or can't be rated. PriceTableRowUnrateable = 12, /// Price item price is invalid or inaccurate. PriceTableRowPriceInvalid = 13, /// Price item URL is invalid or irrelevant. PriceTableRowUrlInvalid = 14, /// Price item header or description has price. PriceHeaderOrDescriptionHasPrice = 15, /// Structured snippet values do not match the header. StructuredSnippetsHeaderPolicyViolated = 16, /// Structured snippet values are repeated. StructuredSnippetsRepeatedValues = 17, /// Structured snippet values violate editorial guidelines like punctuation. StructuredSnippetsEditorialGuidelines = 18, /// Structured snippet contain promotional text. StructuredSnippetsHasPromotionalText = 19, } } // Proto file describing feed item status. /// Container for enum describing possible statuses of a feed item. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedItemStatusEnum {} pub mod feed_item_status_enum { /// Possible statuses of a feed item. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedItemStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Feed item is enabled. Enabled = 2, /// Feed item has been removed. Removed = 3, } } // Proto file describing feed item target device type. /// Container for enum describing possible data types for a feed item target /// device. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedItemTargetDeviceEnum {} pub mod feed_item_target_device_enum { /// Possible data types for a feed item target device. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedItemTargetDevice { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Mobile. Mobile = 2, } } // Proto file describing feed item target status. /// Container for enum describing possible statuses of a feed item target. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedItemTargetStatusEnum {} pub mod feed_item_target_status_enum { /// Possible statuses of a feed item target. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedItemTargetStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Feed item target is enabled. Enabled = 2, /// Feed item target has been removed. Removed = 3, } } // Proto file describing feed item target type status. /// Container for enum describing possible types of a feed item target. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedItemTargetTypeEnum {} pub mod feed_item_target_type_enum { /// Possible type of a feed item target. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedItemTargetType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Feed item targets a campaign. Campaign = 2, /// Feed item targets an ad group. AdGroup = 3, /// Feed item targets a criterion. Criterion = 4, } } // Proto file describing feed item validation statuses. /// Container for enum describing possible validation statuses of a feed item. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedItemValidationStatusEnum {} pub mod feed_item_validation_status_enum { /// The possible validation statuses of a feed item. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedItemValidationStatus { /// No value has been specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Validation pending. Pending = 2, /// An error was found. Invalid = 3, /// Feed item is semantically well-formed. Valid = 4, } } // Proto file describing status of a feed link. /// Container for an enum describing possible statuses of a feed link. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedLinkStatusEnum {} pub mod feed_link_status_enum { /// Possible statuses of a feed link. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedLinkStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Feed link is enabled. Enabled = 2, /// Feed link has been removed. Removed = 3, } } // Proto file describing criterion types for feed mappings. /// Container for enum describing possible criterion types for a feed mapping. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedMappingCriterionTypeEnum {} pub mod feed_mapping_criterion_type_enum { /// Possible placeholder types for a feed mapping. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedMappingCriterionType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Allows campaign targeting at locations within a location feed. LocationExtensionTargeting = 4, /// Allows url targeting for your dynamic search ads within a page feed. DsaPageFeed = 3, } } // Proto file describing feed mapping status. /// Container for enum describing possible statuses of a feed mapping. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedMappingStatusEnum {} pub mod feed_mapping_status_enum { /// Possible statuses of a feed mapping. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedMappingStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Feed mapping is enabled. Enabled = 2, /// Feed mapping has been removed. Removed = 3, } } // Proto file describing feed origin. /// Container for enum describing possible values for a feed origin. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedOriginEnum {} pub mod feed_origin_enum { /// Possible values for a feed origin. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedOrigin { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The FeedAttributes for this Feed are managed by the /// user. Users can add FeedAttributes to this Feed. User = 2, /// The FeedAttributes for an GOOGLE Feed are created by Google. A feed of /// this type is maintained by Google and will have the correct attributes /// for the placeholder type of the feed. Google = 3, } } // Proto file describing feed status. /// Container for enum describing possible statuses of a feed. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FeedStatusEnum {} pub mod feed_status_enum { /// Possible statuses of a feed. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FeedStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Feed is enabled. Enabled = 2, /// Feed has been removed. Removed = 3, } } // Proto file describing Flight placeholder fields. /// Values for Flight placeholder fields. /// For more information about dynamic remarketing feeds, see /// https://support.google.com/google-ads/answer/6053288. #[derive(Clone, PartialEq, ::prost::Message)] pub struct FlightPlaceholderFieldEnum {} pub mod flight_placeholder_field_enum { /// Possible values for Flight placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum FlightPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Required. Destination id. Example: PAR, LON. /// For feed items that only have destination id, destination id must be a /// unique key. For feed items that have both destination id and origin id, /// then the combination must be a unique key. DestinationId = 2, /// Data Type: STRING. Origin id. Example: PAR, LON. /// Optional. Combination of destination id and origin id must be unique per /// offer. OriginId = 3, /// Data Type: STRING. Required. Main headline with product name to be shown /// in dynamic ad. FlightDescription = 4, /// Data Type: STRING. Shorter names are recommended. OriginName = 5, /// Data Type: STRING. Shorter names are recommended. DestinationName = 6, /// Data Type: STRING. Price to be shown in the ad. /// Example: "100.00 USD" FlightPrice = 7, /// Data Type: STRING. Formatted price to be shown in the ad. /// Example: "Starting at $100.00 USD", "$80 - $100" FormattedPrice = 8, /// Data Type: STRING. Sale price to be shown in the ad. /// Example: "80.00 USD" FlightSalePrice = 9, /// Data Type: STRING. Formatted sale price to be shown in the ad. /// Example: "On sale for $80.00", "$60 - $80" FormattedSalePrice = 10, /// Data Type: URL. Image to be displayed in the ad. ImageUrl = 11, /// Data Type: URL_LIST. Required. Final URLs for the ad when using Upgraded /// URLs. User will be redirected to these URLs when they click on an ad, or /// when they click on a specific flight for ads that show multiple /// flights. FinalUrls = 12, /// Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded /// URLs. FinalMobileUrls = 13, /// Data Type: URL. Tracking template for the ad when using Upgraded URLs. TrackingUrl = 14, /// Data Type: STRING. Android app link. Must be formatted as: /// android-app://{package_id}/{scheme}/{host_path}. /// The components are defined as follows: /// package_id: app ID as specified in Google Play. /// scheme: the scheme to pass to the application. Can be HTTP, or a custom /// scheme. /// host_path: identifies the specific content within your application. AndroidAppLink = 15, /// Data Type: STRING_LIST. List of recommended destination IDs to show /// together with this item. SimilarDestinationIds = 16, /// Data Type: STRING. iOS app link. IosAppLink = 17, /// Data Type: INT64. iOS app store ID. IosAppStoreId = 18, } } // Proto file describing geo target constant statuses. /// Container for describing the status of a geo target constant. #[derive(Clone, PartialEq, ::prost::Message)] pub struct GeoTargetConstantStatusEnum {} pub mod geo_target_constant_status_enum { /// The possible statuses of a geo target constant. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum GeoTargetConstantStatus { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// The geo target constant is valid. Enabled = 2, /// The geo target constant is obsolete and will be removed. RemovalPlanned = 3, } } // Proto file describing GeoTargetingRestriction. /// Message describing feed item geo targeting restriction. #[derive(Clone, PartialEq, ::prost::Message)] pub struct GeoTargetingRestrictionEnum {} pub mod geo_targeting_restriction_enum { /// A restriction used to determine if the request context's /// geo should be matched. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum GeoTargetingRestriction { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Indicates that request context should match the physical location of /// the user. LocationOfPresence = 2, } } // Proto file describing geo targeting types. /// Container for enum describing possible geo targeting types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct GeoTargetingTypeEnum {} pub mod geo_targeting_type_enum { /// The possible geo targeting types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum GeoTargetingType { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Location the user is interested in while making the query. AreaOfInterest = 2, /// Location of the user issuing the query. LocationOfPresence = 3, } } // Proto file describing GoogleAdsField categories /// Container for enum that determines if the described artifact is a resource /// or a field, and if it is a field, when it segments search queries. #[derive(Clone, PartialEq, ::prost::Message)] pub struct GoogleAdsFieldCategoryEnum {} pub mod google_ads_field_category_enum { /// The category of the artifact. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum GoogleAdsFieldCategory { /// Unspecified Unspecified = 0, /// Unknown Unknown = 1, /// The described artifact is a resource. Resource = 2, /// The described artifact is a field and is an attribute of a resource. /// Including a resource attribute field in a query may segment the query if /// the resource to which it is attributed segments the resource found in /// the FROM clause. Attribute = 3, /// The described artifact is a field and always segments search queries. Segment = 5, /// The described artifact is a field and is a metric. It never segments /// search queries. Metric = 6, } } // Proto file describing GoogleAdsField data types /// Container holding the various data types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct GoogleAdsFieldDataTypeEnum {} pub mod google_ads_field_data_type_enum { /// These are the various types a GoogleAdsService artifact may take on. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum GoogleAdsFieldDataType { /// Unspecified Unspecified = 0, /// Unknown Unknown = 1, /// Maps to google.protobuf.BoolValue /// /// Applicable operators: =, != Boolean = 2, /// Maps to google.protobuf.StringValue. It can be compared using the set of /// operators specific to dates however. /// /// Applicable operators: =, <, >, <=, >=, BETWEEN, DURING, and IN Date = 3, /// Maps to google.protobuf.DoubleValue /// /// Applicable operators: =, !=, <, >, IN, NOT IN Double = 4, /// Maps to an enum. It's specific definition can be found at type_url. /// /// Applicable operators: =, !=, IN, NOT IN Enum = 5, /// Maps to google.protobuf.FloatValue /// /// Applicable operators: =, !=, <, >, IN, NOT IN Float = 6, /// Maps to google.protobuf.Int32Value /// /// Applicable operators: =, !=, <, >, <=, >=, BETWEEN, IN, NOT IN Int32 = 7, /// Maps to google.protobuf.Int64Value /// /// Applicable operators: =, !=, <, >, <=, >=, BETWEEN, IN, NOT IN Int64 = 8, /// Maps to a protocol buffer message type. The data type's details can be /// found in type_url. /// /// No operators work with MESSAGE fields. Message = 9, /// Maps to google.protobuf.StringValue. Represents the resource name /// (unique id) of a resource or one of its foreign keys. /// /// No operators work with RESOURCE_NAME fields. ResourceName = 10, /// Maps to google.protobuf.StringValue. /// /// Applicable operators: =, !=, LIKE, NOT LIKE, IN, NOT IN String = 11, /// Maps to google.protobuf.UInt64Value /// /// Applicable operators: =, !=, <, >, <=, >=, BETWEEN, IN, NOT IN Uint64 = 12, } } // Proto file describing Hotel placeholder fields. /// Values for Hotel placeholder fields. /// For more information about dynamic remarketing feeds, see /// https://support.google.com/google-ads/answer/6053288. #[derive(Clone, PartialEq, ::prost::Message)] pub struct HotelPlaceholderFieldEnum {} pub mod hotel_placeholder_field_enum { /// Possible values for Hotel placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum HotelPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Required. Unique ID. PropertyId = 2, /// Data Type: STRING. Required. Main headline with property name to be shown /// in dynamic ad. PropertyName = 3, /// Data Type: STRING. Name of destination to be shown in dynamic ad. DestinationName = 4, /// Data Type: STRING. Description of destination to be shown in dynamic ad. Description = 5, /// Data Type: STRING. Complete property address, including postal code. Address = 6, /// Data Type: STRING. Price to be shown in the ad. /// Example: "100.00 USD" Price = 7, /// Data Type: STRING. Formatted price to be shown in the ad. /// Example: "Starting at $100.00 USD", "$80 - $100" FormattedPrice = 8, /// Data Type: STRING. Sale price to be shown in the ad. /// Example: "80.00 USD" SalePrice = 9, /// Data Type: STRING. Formatted sale price to be shown in the ad. /// Example: "On sale for $80.00", "$60 - $80" FormattedSalePrice = 10, /// Data Type: URL. Image to be displayed in the ad. ImageUrl = 11, /// Data Type: STRING. Category of property used to group like items together /// for recommendation engine. Category = 12, /// Data Type: INT64. Star rating (1 to 5) used to group like items /// together for recommendation engine. StarRating = 13, /// Data Type: STRING_LIST. Keywords used for product retrieval. ContextualKeywords = 14, /// Data Type: URL_LIST. Required. Final URLs for the ad when using Upgraded /// URLs. User will be redirected to these URLs when they click on an ad, or /// when they click on a specific flight for ads that show multiple /// flights. FinalUrls = 15, /// Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded /// URLs. FinalMobileUrls = 16, /// Data Type: URL. Tracking template for the ad when using Upgraded URLs. TrackingUrl = 17, /// Data Type: STRING. Android app link. Must be formatted as: /// android-app://{package_id}/{scheme}/{host_path}. /// The components are defined as follows: /// package_id: app ID as specified in Google Play. /// scheme: the scheme to pass to the application. Can be HTTP, or a custom /// scheme. /// host_path: identifies the specific content within your application. AndroidAppLink = 18, /// Data Type: STRING_LIST. List of recommended property IDs to show together /// with this item. SimilarPropertyIds = 19, /// Data Type: STRING. iOS app link. IosAppLink = 20, /// Data Type: INT64. iOS app store ID. IosAppStoreId = 21, } } // Proto file describing invoice types. /// Container for enum describing the type of invoices. #[derive(Clone, PartialEq, ::prost::Message)] pub struct InvoiceTypeEnum {} pub mod invoice_type_enum { /// The possible type of invoices. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum InvoiceType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// An invoice with a negative amount. The account receives a credit. CreditMemo = 2, /// An invoice with a positive amount. The account owes a balance. Invoice = 3, } } // Proto file describing Job placeholder fields. /// Values for Job placeholder fields. /// For more information about dynamic remarketing feeds, see /// https://support.google.com/google-ads/answer/6053288. #[derive(Clone, PartialEq, ::prost::Message)] pub struct JobPlaceholderFieldEnum {} pub mod job_placeholder_field_enum { /// Possible values for Job placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum JobPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Required. If only JOB_ID is specified, then it must be /// unique. If both JOB_ID and LOCATION_ID are specified, then the /// pair must be unique. /// ID) pair must be unique. JobId = 2, /// Data Type: STRING. Combination of JOB_ID and LOCATION_ID must be unique /// per offer. LocationId = 3, /// Data Type: STRING. Required. Main headline with job title to be shown in /// dynamic ad. Title = 4, /// Data Type: STRING. Job subtitle to be shown in dynamic ad. Subtitle = 5, /// Data Type: STRING. Description of job to be shown in dynamic ad. Description = 6, /// Data Type: URL. Image to be displayed in the ad. Highly recommended for /// image ads. ImageUrl = 7, /// Data Type: STRING. Category of property used to group like items together /// for recommendation engine. Category = 8, /// Data Type: STRING_LIST. Keywords used for product retrieval. ContextualKeywords = 9, /// Data Type: STRING. Complete property address, including postal code. Address = 10, /// Data Type: STRING. Salary or salary range of job to be shown in dynamic /// ad. Salary = 11, /// Data Type: URL_LIST. Required. Final URLs to be used in ad when using /// Upgraded URLs; the more specific the better (e.g. the individual URL of a /// specific job and its location). FinalUrls = 12, /// Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded /// URLs. FinalMobileUrls = 14, /// Data Type: URL. Tracking template for the ad when using Upgraded URLs. TrackingUrl = 15, /// Data Type: STRING. Android app link. Must be formatted as: /// android-app://{package_id}/{scheme}/{host_path}. /// The components are defined as follows: /// package_id: app ID as specified in Google Play. /// scheme: the scheme to pass to the application. Can be HTTP, or a custom /// scheme. /// host_path: identifies the specific content within your application. AndroidAppLink = 16, /// Data Type: STRING_LIST. List of recommended job IDs to show together with /// this item. SimilarJobIds = 17, /// Data Type: STRING. iOS app link. IosAppLink = 18, /// Data Type: INT64. iOS app store ID. IosAppStoreId = 19, } } // Proto file describing keyword plan forecast intervals. /// Container for enumeration of forecast intervals. #[derive(Clone, PartialEq, ::prost::Message)] pub struct KeywordPlanForecastIntervalEnum {} pub mod keyword_plan_forecast_interval_enum { /// Forecast intervals. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum KeywordPlanForecastInterval { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// The next week date range for keyword plan. The next week is based /// on the default locale of the user's account and is mostly SUN-SAT or /// MON-SUN. /// This can be different from next-7 days. NextWeek = 3, /// The next month date range for keyword plan. NextMonth = 4, /// The next quarter date range for keyword plan. NextQuarter = 5, } } // Proto file describing Keyword Planner forecastable network types. /// Container for enumeration of keyword plan forecastable network types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct KeywordPlanNetworkEnum {} pub mod keyword_plan_network_enum { /// Enumerates keyword plan forecastable network types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum KeywordPlanNetwork { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Google Search. GoogleSearch = 2, /// Google Search + Search partners. GoogleSearchAndPartners = 3, } } /// Container for enum describing possible status of a label. #[derive(Clone, PartialEq, ::prost::Message)] pub struct LabelStatusEnum {} pub mod label_status_enum { /// Possible statuses of a label. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum LabelStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Label is enabled. Enabled = 2, /// Label is removed. Removed = 3, } } /// Container for enum describing different types of Linked accounts. #[derive(Clone, PartialEq, ::prost::Message)] pub struct LinkedAccountTypeEnum {} pub mod linked_account_type_enum { /// Describes the possible link types between a Google Ads customer /// and another account. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum LinkedAccountType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// A link to provide third party app analytics data. ThirdPartyAppAnalytics = 2, } } // Proto file describing Local placeholder fields. /// Values for Local placeholder fields. /// For more information about dynamic remarketing feeds, see /// https://support.google.com/google-ads/answer/6053288. #[derive(Clone, PartialEq, ::prost::Message)] pub struct LocalPlaceholderFieldEnum {} pub mod local_placeholder_field_enum { /// Possible values for Local placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum LocalPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Required. Unique ID. DealId = 2, /// Data Type: STRING. Required. Main headline with local deal title to be /// shown in dynamic ad. DealName = 3, /// Data Type: STRING. Local deal subtitle to be shown in dynamic ad. Subtitle = 4, /// Data Type: STRING. Description of local deal to be shown in dynamic ad. Description = 5, /// Data Type: STRING. Price to be shown in the ad. Highly recommended for /// dynamic ads. Example: "100.00 USD" Price = 6, /// Data Type: STRING. Formatted price to be shown in the ad. /// Example: "Starting at $100.00 USD", "$80 - $100" FormattedPrice = 7, /// Data Type: STRING. Sale price to be shown in the ad. /// Example: "80.00 USD" SalePrice = 8, /// Data Type: STRING. Formatted sale price to be shown in the ad. /// Example: "On sale for $80.00", "$60 - $80" FormattedSalePrice = 9, /// Data Type: URL. Image to be displayed in the ad. ImageUrl = 10, /// Data Type: STRING. Complete property address, including postal code. Address = 11, /// Data Type: STRING. Category of local deal used to group like items /// together for recommendation engine. Category = 12, /// Data Type: STRING_LIST. Keywords used for product retrieval. ContextualKeywords = 13, /// Data Type: URL_LIST. Required. Final URLs to be used in ad when using /// Upgraded URLs; the more specific the better (e.g. the individual URL of a /// specific local deal and its location). FinalUrls = 14, /// Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded /// URLs. FinalMobileUrls = 15, /// Data Type: URL. Tracking template for the ad when using Upgraded URLs. TrackingUrl = 16, /// Data Type: STRING. Android app link. Must be formatted as: /// android-app://{package_id}/{scheme}/{host_path}. /// The components are defined as follows: /// package_id: app ID as specified in Google Play. /// scheme: the scheme to pass to the application. Can be HTTP, or a custom /// scheme. /// host_path: identifies the specific content within your application. AndroidAppLink = 17, /// Data Type: STRING_LIST. List of recommended local deal IDs to show /// together with this item. SimilarDealIds = 18, /// Data Type: STRING. iOS app link. IosAppLink = 19, /// Data Type: INT64. iOS app store ID. IosAppStoreId = 20, } } // Proto file describing Location Extension Targeting criterion fields. /// Values for Location Extension Targeting criterion fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct LocationExtensionTargetingCriterionFieldEnum {} pub mod location_extension_targeting_criterion_field_enum { /// Possible values for Location Extension Targeting criterion fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum LocationExtensionTargetingCriterionField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Line 1 of the business address. AddressLine1 = 2, /// Data Type: STRING. Line 2 of the business address. AddressLine2 = 3, /// Data Type: STRING. City of the business address. City = 4, /// Data Type: STRING. Province of the business address. Province = 5, /// Data Type: STRING. Postal code of the business address. PostalCode = 6, /// Data Type: STRING. Country code of the business address. CountryCode = 7, } } // Proto file describing Location placeholder fields. /// Values for Location placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct LocationPlaceholderFieldEnum {} pub mod location_placeholder_field_enum { /// Possible values for Location placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum LocationPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. The name of the business. BusinessName = 2, /// Data Type: STRING. Line 1 of the business address. AddressLine1 = 3, /// Data Type: STRING. Line 2 of the business address. AddressLine2 = 4, /// Data Type: STRING. City of the business address. City = 5, /// Data Type: STRING. Province of the business address. Province = 6, /// Data Type: STRING. Postal code of the business address. PostalCode = 7, /// Data Type: STRING. Country code of the business address. CountryCode = 8, /// Data Type: STRING. Phone number of the business. PhoneNumber = 9, } } // Proto file describing location source types. /// Used to distinguish the location source type. #[derive(Clone, PartialEq, ::prost::Message)] pub struct LocationSourceTypeEnum {} pub mod location_source_type_enum { /// The possible types of a location source. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum LocationSourceType { /// No value has been specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Locations associated with the customer's linked Google My Business /// account. GoogleMyBusiness = 2, /// Affiliate (chain) store locations. For example, Best Buy store locations. Affiliate = 3, } } /// Container for enum describing possible status of a manager and client link. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ManagerLinkStatusEnum {} pub mod manager_link_status_enum { /// Possible statuses of a link. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ManagerLinkStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Indicates current in-effect relationship Active = 2, /// Indicates terminated relationship Inactive = 3, /// Indicates relationship has been requested by manager, but the client /// hasn't accepted yet. Pending = 4, /// Relationship was requested by the manager, but the client has refused. Refused = 5, /// Indicates relationship has been requested by manager, but manager /// canceled it. Canceled = 6, } } // Proto file describing media types. /// Container for enum describing the types of media. #[derive(Clone, PartialEq, ::prost::Message)] pub struct MediaTypeEnum {} pub mod media_type_enum { /// The type of media. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MediaType { /// The media type has not been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// Static image, used for image ad. Image = 2, /// Small image, used for map ad. Icon = 3, /// ZIP file, used in fields of template ads. MediaBundle = 4, /// Audio file. Audio = 5, /// Video file. Video = 6, /// Animated image, such as animated GIF. DynamicImage = 7, } } // Proto file describing Merchant Center link statuses. /// Container for enum describing possible statuses of a Google Merchant Center /// link. #[derive(Clone, PartialEq, ::prost::Message)] pub struct MerchantCenterLinkStatusEnum {} pub mod merchant_center_link_status_enum { /// Describes the possible statuses for a link between a Google Ads customer /// and a Google Merchant Center account. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MerchantCenterLinkStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The link is enabled. Enabled = 2, /// The link has no effect. It was proposed by the Merchant Center Account /// owner and hasn't been confirmed by the customer. Pending = 3, } } // Proto file describing Message placeholder fields. /// Values for Message placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct MessagePlaceholderFieldEnum {} pub mod message_placeholder_field_enum { /// Possible values for Message placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MessagePlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. The name of your business. BusinessName = 2, /// Data Type: STRING. Country code of phone number. CountryCode = 3, /// Data Type: STRING. A phone number that's capable of sending and receiving /// text messages. PhoneNumber = 4, /// Data Type: STRING. The text that will go in your click-to-message ad. MessageExtensionText = 5, /// Data Type: STRING. The message text automatically shows in people's /// messaging apps when they tap to send you a message. MessageText = 6, } } /// Container for enum describing different types of mobile app vendors. #[derive(Clone, PartialEq, ::prost::Message)] pub struct MobileAppVendorEnum {} pub mod mobile_app_vendor_enum { /// The type of mobile app vendor #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MobileAppVendor { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Mobile app vendor for Apple app store. AppleAppStore = 2, /// Mobile app vendor for Google app store. GoogleAppStore = 3, } } // Proto file describing mobile device types. /// Container for enum describing the types of mobile device. #[derive(Clone, PartialEq, ::prost::Message)] pub struct MobileDeviceTypeEnum {} pub mod mobile_device_type_enum { /// The type of mobile device. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum MobileDeviceType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Mobile phones. Mobile = 2, /// Tablets. Tablet = 3, } } // Proto file describing negative geo target types. /// Container for enum describing possible negative geo target types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct NegativeGeoTargetTypeEnum {} pub mod negative_geo_target_type_enum { /// The possible negative geo target types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum NegativeGeoTargetType { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Specifies that a user is excluded from seeing the ad if they /// are in, or show interest in, advertiser's excluded locations. PresenceOrInterest = 4, /// Specifies that a user is excluded from seeing the ad if they /// are in advertiser's excluded locations. Presence = 5, } } // Proto file describing offline user data job failure reasons. /// Container for enum describing reasons why an offline user data job /// failed to be processed. #[derive(Clone, PartialEq, ::prost::Message)] pub struct OfflineUserDataJobFailureReasonEnum {} pub mod offline_user_data_job_failure_reason_enum { /// The failure reason of an offline user data job. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum OfflineUserDataJobFailureReason { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The matched transactions are insufficient. InsufficientMatchedTransactions = 2, /// The uploaded transactions are insufficient. InsufficientTransactions = 3, } } // Proto file describing offline user data job status. /// Container for enum describing status of an offline user data job. #[derive(Clone, PartialEq, ::prost::Message)] pub struct OfflineUserDataJobStatusEnum {} pub mod offline_user_data_job_status_enum { /// The status of an offline user data job. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum OfflineUserDataJobStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The job has been successfully created and pending for uploading. Pending = 2, /// Upload(s) have been accepted and data is being processed. Running = 3, /// Uploaded data has been successfully processed. Success = 4, /// Uploaded data has failed to be processed. Failed = 5, } } // Proto file describing offline user data job types. /// Container for enum describing types of an offline user data job. #[derive(Clone, PartialEq, ::prost::Message)] pub struct OfflineUserDataJobTypeEnum {} pub mod offline_user_data_job_type_enum { /// The type of an offline user data job. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum OfflineUserDataJobType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Store Sales Direct data for self service. StoreSalesUploadFirstParty = 2, /// Store Sales Direct data for third party. StoreSalesUploadThirdParty = 3, /// Customer Match user list data. CustomerMatchUserList = 4, } } // Proto file describing operating system version operator types. /// Container for enum describing the type of OS operators. #[derive(Clone, PartialEq, ::prost::Message)] pub struct OperatingSystemVersionOperatorTypeEnum {} pub mod operating_system_version_operator_type_enum { /// The type of operating system version. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum OperatingSystemVersionOperatorType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Equals to the specified version. EqualsTo = 2, /// Greater than or equals to the specified version. GreaterThanEqualsTo = 4, } } // Proto file describing optimization goal type. /// Container for enum describing the type of optimization goal. #[derive(Clone, PartialEq, ::prost::Message)] pub struct OptimizationGoalTypeEnum {} pub mod optimization_goal_type_enum { /// The type of optimization goal #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum OptimizationGoalType { /// Not specified. Unspecified = 0, /// Used as a return value only. Represents value unknown in this version. Unknown = 1, /// Optimize for call clicks. Call click conversions are times people /// selected 'Call' to contact a store after viewing an ad. CallClicks = 2, /// Optimize for driving directions. Driving directions conversions are /// times people selected 'Get directions' to navigate to a store after /// viewing an ad. DrivingDirections = 3, } } // Proto file describing payment modes. /// Container for enum describing possible payment modes. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PaymentModeEnum {} pub mod payment_mode_enum { /// Enum describing possible payment modes. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PaymentMode { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Pay per click. Clicks = 4, /// Pay per conversion value. This mode is only supported by campaigns with /// AdvertisingChannelType.HOTEL, BiddingStrategyType.COMMISSION, and /// BudgetType.HOTEL_ADS_COMMISSION. ConversionValue = 5, /// Pay per conversion. This mode is only supported by campaigns with /// AdvertisingChannelType.DISPLAY (excluding /// AdvertisingChannelSubType.DISPLAY_GMAIL), BiddingStrategyType.TARGET_CPA, /// and BudgetType.FIXED_CPA. The customer must also be eligible for this /// mode. See Customer.eligibility_failure_reasons for details. Conversions = 6, /// Pay per guest stay value. This mode is only supported by campaigns with /// AdvertisingChannelType.HOTEL, BiddingStrategyType.COMMISSION, and /// BudgetType.STANDARD. GuestStay = 7, } } // Proto file describing placement types. /// Container for enum describing possible placement types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PlacementTypeEnum {} pub mod placement_type_enum { /// Possible placement types for a feed mapping. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PlacementType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Websites(e.g. 'www.flowers4sale.com'). Website = 2, /// Mobile application categories(e.g. 'Games'). MobileAppCategory = 3, /// mobile applications(e.g. 'mobileapp::2-com.whatsthewordanswers'). MobileApplication = 4, /// YouTube videos(e.g. 'youtube.com/video/wtLJPvx7-ys'). YoutubeVideo = 5, /// YouTube channels(e.g. 'youtube.com::L8ZULXASCc1I_oaOT0NaOQ'). YoutubeChannel = 6, } } // Proto file describing policy approval statuses. /// Container for enum describing possible policy approval statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PolicyApprovalStatusEnum {} pub mod policy_approval_status_enum { /// The possible policy approval statuses. When there are several approval /// statuses available the most severe one will be used. The order of severity /// is DISAPPROVED, AREA_OF_INTEREST_ONLY, APPROVED_LIMITED and APPROVED. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PolicyApprovalStatus { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// Will not serve. Disapproved = 2, /// Serves with restrictions. ApprovedLimited = 3, /// Serves without restrictions. Approved = 4, /// Will not serve in targeted countries, but may serve for users who are /// searching for information about the targeted countries. AreaOfInterestOnly = 5, } } // Proto file describing policy review statuses. /// Container for enum describing possible policy review statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PolicyReviewStatusEnum {} pub mod policy_review_status_enum { /// The possible policy review statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PolicyReviewStatus { /// No value has been specified. Unspecified = 0, /// The received value is not known in this version. /// /// This is a response-only value. Unknown = 1, /// Currently under review. ReviewInProgress = 2, /// Primary review complete. Other reviews may be continuing. Reviewed = 3, /// The resource has been resubmitted for approval or its policy decision has /// been appealed. UnderAppeal = 4, /// The resource is eligible and may be serving but could still undergo /// further review. EligibleMayServe = 5, } } // Proto file describing positive geo target types. /// Container for enum describing possible positive geo target types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PositiveGeoTargetTypeEnum {} pub mod positive_geo_target_type_enum { /// The possible positive geo target types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PositiveGeoTargetType { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Specifies that an ad is triggered if the user is in, /// or shows interest in, advertiser's targeted locations. PresenceOrInterest = 5, /// Specifies that an ad is triggered if the user /// searches for advertiser's targeted locations. /// This can only be used with Search and standard /// Shopping campaigns. SearchInterest = 6, /// Specifies that an ad is triggered if the user is in /// or regularly in advertiser's targeted locations. Presence = 7, } } // Proto file describing Price placeholder fields. /// Values for Price placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PricePlaceholderFieldEnum {} pub mod price_placeholder_field_enum { /// Possible values for Price placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PricePlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. The type of your price feed. Must match one of the /// predefined price feed type exactly. Type = 2, /// Data Type: STRING. The qualifier of each price. Must match one of the /// predefined price qualifiers exactly. PriceQualifier = 3, /// Data Type: URL. Tracking template for the price feed when using Upgraded /// URLs. TrackingTemplate = 4, /// Data Type: STRING. Language of the price feed. Must match one of the /// available available locale codes exactly. Language = 5, /// Data Type: STRING. Final URL suffix for the price feed when using /// parallel tracking. FinalUrlSuffix = 6, /// Data Type: STRING. The header of item 1 of the table. Item1Header = 100, /// Data Type: STRING. The description of item 1 of the table. Item1Description = 101, /// Data Type: MONEY. The price (money with currency) of item 1 of the table, /// e.g., 30 USD. The currency must match one of the available currencies. Item1Price = 102, /// Data Type: STRING. The price unit of item 1 of the table. Must match one /// of the predefined price units. Item1Unit = 103, /// Data Type: URL_LIST. The final URLs of item 1 of the table when using /// Upgraded URLs. Item1FinalUrls = 104, /// Data Type: URL_LIST. The final mobile URLs of item 1 of the table when /// using Upgraded URLs. Item1FinalMobileUrls = 105, /// Data Type: STRING. The header of item 2 of the table. Item2Header = 200, /// Data Type: STRING. The description of item 2 of the table. Item2Description = 201, /// Data Type: MONEY. The price (money with currency) of item 2 of the table, /// e.g., 30 USD. The currency must match one of the available currencies. Item2Price = 202, /// Data Type: STRING. The price unit of item 2 of the table. Must match one /// of the predefined price units. Item2Unit = 203, /// Data Type: URL_LIST. The final URLs of item 2 of the table when using /// Upgraded URLs. Item2FinalUrls = 204, /// Data Type: URL_LIST. The final mobile URLs of item 2 of the table when /// using Upgraded URLs. Item2FinalMobileUrls = 205, /// Data Type: STRING. The header of item 3 of the table. Item3Header = 300, /// Data Type: STRING. The description of item 3 of the table. Item3Description = 301, /// Data Type: MONEY. The price (money with currency) of item 3 of the table, /// e.g., 30 USD. The currency must match one of the available currencies. Item3Price = 302, /// Data Type: STRING. The price unit of item 3 of the table. Must match one /// of the predefined price units. Item3Unit = 303, /// Data Type: URL_LIST. The final URLs of item 3 of the table when using /// Upgraded URLs. Item3FinalUrls = 304, /// Data Type: URL_LIST. The final mobile URLs of item 3 of the table when /// using Upgraded URLs. Item3FinalMobileUrls = 305, /// Data Type: STRING. The header of item 4 of the table. Item4Header = 400, /// Data Type: STRING. The description of item 4 of the table. Item4Description = 401, /// Data Type: MONEY. The price (money with currency) of item 4 of the table, /// e.g., 30 USD. The currency must match one of the available currencies. Item4Price = 402, /// Data Type: STRING. The price unit of item 4 of the table. Must match one /// of the predefined price units. Item4Unit = 403, /// Data Type: URL_LIST. The final URLs of item 4 of the table when using /// Upgraded URLs. Item4FinalUrls = 404, /// Data Type: URL_LIST. The final mobile URLs of item 4 of the table when /// using Upgraded URLs. Item4FinalMobileUrls = 405, /// Data Type: STRING. The header of item 5 of the table. Item5Header = 500, /// Data Type: STRING. The description of item 5 of the table. Item5Description = 501, /// Data Type: MONEY. The price (money with currency) of item 5 of the table, /// e.g., 30 USD. The currency must match one of the available currencies. Item5Price = 502, /// Data Type: STRING. The price unit of item 5 of the table. Must match one /// of the predefined price units. Item5Unit = 503, /// Data Type: URL_LIST. The final URLs of item 5 of the table when using /// Upgraded URLs. Item5FinalUrls = 504, /// Data Type: URL_LIST. The final mobile URLs of item 5 of the table when /// using Upgraded URLs. Item5FinalMobileUrls = 505, /// Data Type: STRING. The header of item 6 of the table. Item6Header = 600, /// Data Type: STRING. The description of item 6 of the table. Item6Description = 601, /// Data Type: MONEY. The price (money with currency) of item 6 of the table, /// e.g., 30 USD. The currency must match one of the available currencies. Item6Price = 602, /// Data Type: STRING. The price unit of item 6 of the table. Must match one /// of the predefined price units. Item6Unit = 603, /// Data Type: URL_LIST. The final URLs of item 6 of the table when using /// Upgraded URLs. Item6FinalUrls = 604, /// Data Type: URL_LIST. The final mobile URLs of item 6 of the table when /// using Upgraded URLs. Item6FinalMobileUrls = 605, /// Data Type: STRING. The header of item 7 of the table. Item7Header = 700, /// Data Type: STRING. The description of item 7 of the table. Item7Description = 701, /// Data Type: MONEY. The price (money with currency) of item 7 of the table, /// e.g., 30 USD. The currency must match one of the available currencies. Item7Price = 702, /// Data Type: STRING. The price unit of item 7 of the table. Must match one /// of the predefined price units. Item7Unit = 703, /// Data Type: URL_LIST. The final URLs of item 7 of the table when using /// Upgraded URLs. Item7FinalUrls = 704, /// Data Type: URL_LIST. The final mobile URLs of item 7 of the table when /// using Upgraded URLs. Item7FinalMobileUrls = 705, /// Data Type: STRING. The header of item 8 of the table. Item8Header = 800, /// Data Type: STRING. The description of item 8 of the table. Item8Description = 801, /// Data Type: MONEY. The price (money with currency) of item 8 of the table, /// e.g., 30 USD. The currency must match one of the available currencies. Item8Price = 802, /// Data Type: STRING. The price unit of item 8 of the table. Must match one /// of the predefined price units. Item8Unit = 803, /// Data Type: URL_LIST. The final URLs of item 8 of the table when using /// Upgraded URLs. Item8FinalUrls = 804, /// Data Type: URL_LIST. The final mobile URLs of item 8 of the table when /// using Upgraded URLs. Item8FinalMobileUrls = 805, } } // Proto file describing bidding schemes. /// Status of the product bidding category. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ProductBiddingCategoryStatusEnum {} pub mod product_bidding_category_status_enum { /// Enum describing the status of the product bidding category. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ProductBiddingCategoryStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The category is active and can be used for bidding. Active = 2, /// The category is obsolete. Used only for reporting purposes. Obsolete = 3, } } // Proto file describing Promotion placeholder fields. /// Values for Promotion placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PromotionPlaceholderFieldEnum {} pub mod promotion_placeholder_field_enum { /// Possible values for Promotion placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum PromotionPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. The text that appears on the ad when the extension is /// shown. PromotionTarget = 2, /// Data Type: STRING. Allows you to add "up to" phrase to the promotion, /// in case you have variable promotion rates. DiscountModifier = 3, /// Data Type: INT64. Takes a value in micros, where 1 million micros /// represents 1%, and is shown as a percentage when rendered. PercentOff = 4, /// Data Type: MONEY. Requires a currency and an amount of money. MoneyAmountOff = 5, /// Data Type: STRING. A string that the user enters to get the discount. PromotionCode = 6, /// Data Type: MONEY. A minimum spend before the user qualifies for the /// promotion. OrdersOverAmount = 7, /// Data Type: DATE. The start date of the promotion. PromotionStart = 8, /// Data Type: DATE. The end date of the promotion. PromotionEnd = 9, /// Data Type: STRING. Describes the associated event for the promotion using /// one of the PromotionExtensionOccasion enum values, for example NEW_YEARS. Occasion = 10, /// Data Type: URL_LIST. Final URLs to be used in the ad when using Upgraded /// URLs. FinalUrls = 11, /// Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded /// URLs. FinalMobileUrls = 12, /// Data Type: URL. Tracking template for the ad when using Upgraded URLs. TrackingUrl = 13, /// Data Type: STRING. A string represented by a language code for the /// promotion. Language = 14, /// Data Type: STRING. Final URL suffix for the ad when using parallel /// tracking. FinalUrlSuffix = 15, } } // Proto file describing ad lengths of a plannable video ad. /// Message describing length of a plannable video ad. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReachPlanAdLengthEnum {} pub mod reach_plan_ad_length_enum { /// Possible ad length values. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ReachPlanAdLength { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// 6 seconds long ad. SixSeconds = 2, /// 15 or 20 seconds long ad. FifteenOrTwentySeconds = 3, /// More than 20 seconds long ad. TwentySecondsOrMore = 4, } } // Proto file describing a plannable age range. /// Message describing plannable age ranges. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReachPlanAgeRangeEnum {} pub mod reach_plan_age_range_enum { /// Possible plannable age range values. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ReachPlanAgeRange { /// Not specified. Unspecified = 0, /// The value is unknown in this version. Unknown = 1, /// Between 18 and 24 years old. AgeRange1824 = 503001, /// Between 18 and 34 years old. AgeRange1834 = 2, /// Between 18 and 44 years old. AgeRange1844 = 3, /// Between 18 and 49 years old. AgeRange1849 = 4, /// Between 18 and 54 years old. AgeRange1854 = 5, /// Between 18 and 64 years old. AgeRange1864 = 6, /// Between 18 and 65+ years old. AgeRange1865Up = 7, /// Between 21 and 34 years old. AgeRange2134 = 8, /// Between 25 and 34 years old. AgeRange2534 = 503002, /// Between 25 and 44 years old. AgeRange2544 = 9, /// Between 25 and 49 years old. AgeRange2549 = 10, /// Between 25 and 54 years old. AgeRange2554 = 11, /// Between 25 and 64 years old. AgeRange2564 = 12, /// Between 25 and 65+ years old. AgeRange2565Up = 13, /// Between 35 and 44 years old. AgeRange3544 = 503003, /// Between 35 and 49 years old. AgeRange3549 = 14, /// Between 35 and 54 years old. AgeRange3554 = 15, /// Between 35 and 64 years old. AgeRange3564 = 16, /// Between 35 and 65+ years old. AgeRange3565Up = 17, /// Between 45 and 54 years old. AgeRange4554 = 503004, /// Between 45 and 64 years old. AgeRange4564 = 18, /// Between 45 and 65+ years old. AgeRange4565Up = 19, /// Between 50 and 65+ years old. AgeRange5065Up = 20, /// Between 55 and 64 years old. AgeRange5564 = 503005, /// Between 55 and 65+ years old. AgeRange5565Up = 21, /// 65 years old and beyond. AgeRange65Up = 503006, } } // Proto file describing a plannable network. /// Container for enum describing plannable networks. #[derive(Clone, PartialEq, ::prost::Message)] pub struct ReachPlanNetworkEnum {} pub mod reach_plan_network_enum { /// Possible plannable network values. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum ReachPlanNetwork { /// Not specified. Unspecified = 0, /// Used as a return value only. Represents value unknown in this version. Unknown = 1, /// YouTube network. Youtube = 2, /// Google Video Partners (GVP) network. GoogleVideoPartners = 3, /// A combination of the YouTube network and the Google Video Partners /// network. YoutubeAndGoogleVideoPartners = 4, } } // Proto file describing Real Estate placeholder fields. /// Values for Real Estate placeholder fields. /// For more information about dynamic remarketing feeds, see /// https://support.google.com/google-ads/answer/6053288. #[derive(Clone, PartialEq, ::prost::Message)] pub struct RealEstatePlaceholderFieldEnum {} pub mod real_estate_placeholder_field_enum { /// Possible values for Real Estate placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum RealEstatePlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Unique ID. ListingId = 2, /// Data Type: STRING. Main headline with listing name to be shown in dynamic /// ad. ListingName = 3, /// Data Type: STRING. City name to be shown in dynamic ad. CityName = 4, /// Data Type: STRING. Description of listing to be shown in dynamic ad. Description = 5, /// Data Type: STRING. Complete listing address, including postal code. Address = 6, /// Data Type: STRING. Price to be shown in the ad. /// Example: "100.00 USD" Price = 7, /// Data Type: STRING. Formatted price to be shown in the ad. /// Example: "Starting at $100.00 USD", "$80 - $100" FormattedPrice = 8, /// Data Type: URL. Image to be displayed in the ad. ImageUrl = 9, /// Data Type: STRING. Type of property (house, condo, apartment, etc.) used /// to group like items together for recommendation engine. PropertyType = 10, /// Data Type: STRING. Type of listing (resale, rental, foreclosure, etc.) /// used to group like items together for recommendation engine. ListingType = 11, /// Data Type: STRING_LIST. Keywords used for product retrieval. ContextualKeywords = 12, /// Data Type: URL_LIST. Final URLs to be used in ad when using Upgraded /// URLs; the more specific the better (e.g. the individual URL of a specific /// listing and its location). FinalUrls = 13, /// Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded /// URLs. FinalMobileUrls = 14, /// Data Type: URL. Tracking template for the ad when using Upgraded URLs. TrackingUrl = 15, /// Data Type: STRING. Android app link. Must be formatted as: /// android-app://{package_id}/{scheme}/{host_path}. /// The components are defined as follows: /// package_id: app ID as specified in Google Play. /// scheme: the scheme to pass to the application. Can be HTTP, or a custom /// scheme. /// host_path: identifies the specific content within your application. AndroidAppLink = 16, /// Data Type: STRING_LIST. List of recommended listing IDs to show together /// with this item. SimilarListingIds = 17, /// Data Type: STRING. iOS app link. IosAppLink = 18, /// Data Type: INT64. iOS app store ID. IosAppStoreId = 19, } } // Proto file describing Recommendation types. /// Container for enum describing types of recommendations. #[derive(Clone, PartialEq, ::prost::Message)] pub struct RecommendationTypeEnum {} pub mod recommendation_type_enum { /// Types of recommendations. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum RecommendationType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Budget recommendation for campaigns that are currently budget-constrained /// (as opposed to the FORECASTING_CAMPAIGN_BUDGET recommendation, which /// applies to campaigns that are expected to become budget-constrained in /// the future). CampaignBudget = 2, /// Keyword recommendation. Keyword = 3, /// Recommendation to add a new text ad. TextAd = 4, /// Recommendation to update a campaign to use a Target CPA bidding strategy. TargetCpaOptIn = 5, /// Recommendation to update a campaign to use the Maximize Conversions /// bidding strategy. MaximizeConversionsOptIn = 6, /// Recommendation to enable Enhanced Cost Per Click for a campaign. EnhancedCpcOptIn = 7, /// Recommendation to start showing your campaign's ads on Google Search /// Partners Websites. SearchPartnersOptIn = 8, /// Recommendation to update a campaign to use a Maximize Clicks bidding /// strategy. MaximizeClicksOptIn = 9, /// Recommendation to start using the "Optimize" ad rotation setting for the /// given ad group. OptimizeAdRotation = 10, /// Recommendation to add callout extensions to a campaign. CalloutExtension = 11, /// Recommendation to add sitelink extensions to a campaign. SitelinkExtension = 12, /// Recommendation to add call extensions to a campaign. CallExtension = 13, /// Recommendation to change an existing keyword from one match type to a /// broader match type. KeywordMatchType = 14, /// Recommendation to move unused budget from one budget to a constrained /// budget. MoveUnusedBudget = 15, } } // Proto file describing search term targeting statuses. /// Container for enum indicating whether a search term is one of your targeted /// or excluded keywords. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SearchTermTargetingStatusEnum {} pub mod search_term_targeting_status_enum { /// Indicates whether the search term is one of your targeted or excluded /// keywords. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SearchTermTargetingStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Search term is added to targeted keywords. Added = 2, /// Search term matches a negative keyword. Excluded = 3, /// Search term has been both added and excluded. AddedExcluded = 4, /// Search term is neither targeted nor excluded. None = 5, } } // Proto file describing shared set statuses. /// Container for enum describing types of shared set statuses. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SharedSetStatusEnum {} pub mod shared_set_status_enum { /// Enum listing the possible shared set statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SharedSetStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The shared set is enabled. Enabled = 2, /// The shared set is removed and can no longer be used. Removed = 3, } } // Proto file describing shared set types. /// Container for enum describing types of shared sets. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SharedSetTypeEnum {} pub mod shared_set_type_enum { /// Enum listing the possible shared set types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SharedSetType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// A set of keywords that can be excluded from targeting. NegativeKeywords = 2, /// A set of placements that can be excluded from targeting. NegativePlacements = 3, } } // Proto file describing simulation modification methods. /// Container for enum describing the method by which a simulation modifies /// a field. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SimulationModificationMethodEnum {} pub mod simulation_modification_method_enum { /// Enum describing the method by which a simulation modifies a field. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SimulationModificationMethod { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The values in a simulation were applied to all children of a given /// resource uniformly. Overrides on child resources were not respected. Uniform = 2, /// The values in a simulation were applied to the given resource. /// Overrides on child resources were respected, and traffic estimates /// do not include these resources. Default = 3, } } // Proto file describing simulation types. /// Container for enum describing the field a simulation modifies. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SimulationTypeEnum {} pub mod simulation_type_enum { /// Enum describing the field a simulation modifies. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SimulationType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The simulation is for a CPC bid. CpcBid = 2, /// The simulation is for a CPV bid. CpvBid = 3, /// The simulation is for a CPA target. TargetCpa = 4, /// The simulation is for a bid modifier. BidModifier = 5, /// The simulation is for a ROAS target. TargetRoas = 6, } } // Proto file describing Sitelink placeholder fields. /// Values for Sitelink placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SitelinkPlaceholderFieldEnum {} pub mod sitelink_placeholder_field_enum { /// Possible values for Sitelink placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SitelinkPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. The link text for your sitelink. Text = 2, /// Data Type: STRING. First line of the sitelink description. Line1 = 3, /// Data Type: STRING. Second line of the sitelink description. Line2 = 4, /// Data Type: URL_LIST. Final URLs for the sitelink when using Upgraded /// URLs. FinalUrls = 5, /// Data Type: URL_LIST. Final Mobile URLs for the sitelink when using /// Upgraded URLs. FinalMobileUrls = 6, /// Data Type: URL. Tracking template for the sitelink when using Upgraded /// URLs. TrackingUrl = 7, /// Data Type: STRING. Final URL suffix for sitelink when using parallel /// tracking. FinalUrlSuffix = 8, } } // Proto file describing SpendingLimit types. /// Message describing spending limit types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SpendingLimitTypeEnum {} pub mod spending_limit_type_enum { /// The possible spending limit types used by certain resources as an /// alternative to absolute money values in micros. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SpendingLimitType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Infinite, indicates unlimited spending power. Infinite = 2, } } // Proto file describing Structured Snippet placeholder fields. /// Values for Structured Snippet placeholder fields. #[derive(Clone, PartialEq, ::prost::Message)] pub struct StructuredSnippetPlaceholderFieldEnum {} pub mod structured_snippet_placeholder_field_enum { /// Possible values for Structured Snippet placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum StructuredSnippetPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. The category of snippet of your products/services. /// Must match exactly one of the predefined structured snippets headers. /// For a list, visit /// https://developers.google.com/adwords/api/docs/appendix/structured-snippet-headers Header = 2, /// Data Type: STRING_LIST. Text values that describe your products/services. /// All text must be family safe. Special or non-ASCII characters are not /// permitted. A snippet can be at most 25 characters. Snippets = 3, } } // Proto file describing summary row setting. /// Indicates summary row setting in request parameter. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SummaryRowSettingEnum {} pub mod summary_row_setting_enum { /// Enum describing return summary row settings. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SummaryRowSetting { /// Not specified. Unspecified = 0, /// Represent unknown values of return summary row. Unknown = 1, /// Do not return summary row. NoSummaryRow = 2, /// Return summary row along with results. The summary row will be returned /// in the last batch alone (last batch will contain no results). SummaryRowWithResults = 3, /// Return summary row only and return no results. SummaryRowOnly = 4, } } // Proto file describing system managed entity sources. /// Container for enum describing possible system managed entity sources. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SystemManagedResourceSourceEnum {} pub mod system_managed_resource_source_enum { /// Enum listing the possible system managed entity sources. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum SystemManagedResourceSource { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Generated ad variations experiment ad. AdVariations = 2, } } // Proto file describing TargetCpaOptIn recommendation goals. /// Container for enum describing goals for TargetCpaOptIn recommendation. #[derive(Clone, PartialEq, ::prost::Message)] pub struct TargetCpaOptInRecommendationGoalEnum {} pub mod target_cpa_opt_in_recommendation_goal_enum { /// Goal of TargetCpaOptIn recommendation. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum TargetCpaOptInRecommendationGoal { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Recommendation to set Target CPA to maintain the same cost. SameCost = 2, /// Recommendation to set Target CPA to maintain the same conversions. SameConversions = 3, /// Recommendation to set Target CPA to maintain the same CPA. SameCpa = 4, /// Recommendation to set Target CPA to a value that is as close as possible /// to, yet lower than, the actual CPA (computed for past 28 days). ClosestCpa = 5, } } // Proto file describing TimeType types. /// Message describing time types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct TimeTypeEnum {} pub mod time_type_enum { /// The possible time types used by certain resources as an alternative to /// absolute timestamps. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum TimeType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// As soon as possible. Now = 2, /// An infinite point in the future. Forever = 3, } } // Proto file describing Travel placeholder fields. /// Values for Travel placeholder fields. /// For more information about dynamic remarketing feeds, see /// https://support.google.com/google-ads/answer/6053288. #[derive(Clone, PartialEq, ::prost::Message)] pub struct TravelPlaceholderFieldEnum {} pub mod travel_placeholder_field_enum { /// Possible values for Travel placeholder fields. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum TravelPlaceholderField { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Data Type: STRING. Required. Destination id. Example: PAR, LON. /// For feed items that only have destination id, destination id must be a /// unique key. For feed items that have both destination id and origin id, /// then the combination must be a unique key. DestinationId = 2, /// Data Type: STRING. Origin id. Example: PAR, LON. /// Combination of DESTINATION_ID and ORIGIN_ID must be /// unique per offer. OriginId = 3, /// Data Type: STRING. Required. Main headline with name to be shown in /// dynamic ad. Title = 4, /// Data Type: STRING. The destination name. Shorter names are recommended. DestinationName = 5, /// Data Type: STRING. Origin name. Shorter names are recommended. OriginName = 6, /// Data Type: STRING. Price to be shown in the ad. Highly recommended for /// dynamic ads. /// Example: "100.00 USD" Price = 7, /// Data Type: STRING. Formatted price to be shown in the ad. /// Example: "Starting at $100.00 USD", "$80 - $100" FormattedPrice = 8, /// Data Type: STRING. Sale price to be shown in the ad. /// Example: "80.00 USD" SalePrice = 9, /// Data Type: STRING. Formatted sale price to be shown in the ad. /// Example: "On sale for $80.00", "$60 - $80" FormattedSalePrice = 10, /// Data Type: URL. Image to be displayed in the ad. ImageUrl = 11, /// Data Type: STRING. Category of travel offer used to group like items /// together for recommendation engine. Category = 12, /// Data Type: STRING_LIST. Keywords used for product retrieval. ContextualKeywords = 13, /// Data Type: STRING. Address of travel offer, including postal code. DestinationAddress = 14, /// Data Type: URL_LIST. Required. Final URLs to be used in ad, when using /// Upgraded URLs; the more specific the better (e.g. the individual URL of a /// specific travel offer and its location). FinalUrl = 15, /// Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded /// URLs. FinalMobileUrls = 16, /// Data Type: URL. Tracking template for the ad when using Upgraded URLs. TrackingUrl = 17, /// Data Type: STRING. Android app link. Must be formatted as: /// android-app://{package_id}/{scheme}/{host_path}. /// The components are defined as follows: /// package_id: app ID as specified in Google Play. /// scheme: the scheme to pass to the application. Can be HTTP, or a custom /// scheme. /// host_path: identifies the specific content within your application. AndroidAppLink = 18, /// Data Type: STRING_LIST. List of recommended destination IDs to show /// together with this item. SimilarDestinationIds = 19, /// Data Type: STRING. iOS app link. IosAppLink = 20, /// Data Type: INT64. iOS app store ID. IosAppStoreId = 21, } } // Proto file describing the UserInterest taxonomy type /// Message describing a UserInterestTaxonomyType. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserInterestTaxonomyTypeEnum {} pub mod user_interest_taxonomy_type_enum { /// Enum containing the possible UserInterestTaxonomyTypes. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserInterestTaxonomyType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The affinity for this user interest. Affinity = 2, /// The market for this user interest. InMarket = 3, /// Users known to have installed applications in the specified categories. MobileAppInstallUser = 4, /// The geographical location of the interest-based vertical. VerticalGeo = 5, /// User interest criteria for new smart phone users. NewSmartPhoneUser = 6, } } // Proto file describing user list access status. /// Indicates if this client still has access to the list. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListAccessStatusEnum {} pub mod user_list_access_status_enum { /// Enum containing possible user list access statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListAccessStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The access is enabled. Enabled = 2, /// The access is disabled. Disabled = 3, } } // Proto file describing user list closing reason. /// Indicates the reason why the userlist was closed. /// This enum is only used when a list is auto-closed by the system. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListClosingReasonEnum {} pub mod user_list_closing_reason_enum { /// Enum describing possible user list closing reasons. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListClosingReason { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// The userlist was closed because of not being used for over one year. Unused = 2, } } // Proto file describing user list membership status. /// Membership status of this user list. Indicates whether a user list is open /// or active. Only open user lists can accumulate more users and can be used for /// targeting. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListMembershipStatusEnum {} pub mod user_list_membership_status_enum { /// Enum containing possible user list membership statuses. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListMembershipStatus { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Open status - List is accruing members and can be targeted to. Open = 2, /// Closed status - No new members being added. Cannot be used for targeting. Closed = 3, } } // Proto file describing user list size range. /// Size range in terms of number of users of a UserList. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListSizeRangeEnum {} pub mod user_list_size_range_enum { /// Enum containing possible user list size ranges. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListSizeRange { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// User list has less than 500 users. LessThanFiveHundred = 2, /// User list has number of users in range of 500 to 1000. LessThanOneThousand = 3, /// User list has number of users in range of 1000 to 10000. OneThousandToTenThousand = 4, /// User list has number of users in range of 10000 to 50000. TenThousandToFiftyThousand = 5, /// User list has number of users in range of 50000 to 100000. FiftyThousandToOneHundredThousand = 6, /// User list has number of users in range of 100000 to 300000. OneHundredThousandToThreeHundredThousand = 7, /// User list has number of users in range of 300000 to 500000. ThreeHundredThousandToFiveHundredThousand = 8, /// User list has number of users in range of 500000 to 1 million. FiveHundredThousandToOneMillion = 9, /// User list has number of users in range of 1 to 2 millions. OneMillionToTwoMillion = 10, /// User list has number of users in range of 2 to 3 millions. TwoMillionToThreeMillion = 11, /// User list has number of users in range of 3 to 5 millions. ThreeMillionToFiveMillion = 12, /// User list has number of users in range of 5 to 10 millions. FiveMillionToTenMillion = 13, /// User list has number of users in range of 10 to 20 millions. TenMillionToTwentyMillion = 14, /// User list has number of users in range of 20 to 30 millions. TwentyMillionToThirtyMillion = 15, /// User list has number of users in range of 30 to 50 millions. ThirtyMillionToFiftyMillion = 16, /// User list has over 50 million users. OverFiftyMillion = 17, } } // Proto file describing user list type. /// The user list types. #[derive(Clone, PartialEq, ::prost::Message)] pub struct UserListTypeEnum {} pub mod user_list_type_enum { /// Enum containing possible user list types. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum UserListType { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// UserList represented as a collection of conversion types. Remarketing = 2, /// UserList represented as a combination of other user lists/interests. Logical = 3, /// UserList created in the Google Ad Manager platform. ExternalRemarketing = 4, /// UserList associated with a rule. RuleBased = 5, /// UserList with users similar to users of another UserList. Similar = 6, /// UserList of first-party CRM data provided by advertiser in the form of /// emails or other formats. CrmBased = 7, } } // Proto file describing vanity pharma display url modes. /// The display mode for vanity pharma URLs. #[derive(Clone, PartialEq, ::prost::Message)] pub struct VanityPharmaDisplayUrlModeEnum {} pub mod vanity_pharma_display_url_mode_enum { /// Enum describing possible display modes for vanity pharma URLs. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum VanityPharmaDisplayUrlMode { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Replace vanity pharma URL with manufacturer website url. ManufacturerWebsiteUrl = 2, /// Replace vanity pharma URL with description of the website. WebsiteDescription = 3, } } // Proto file describing vanity pharma texts. /// The text that will be displayed in display URL of the text ad when website /// description is the selected display mode for vanity pharma URLs. #[derive(Clone, PartialEq, ::prost::Message)] pub struct VanityPharmaTextEnum {} pub mod vanity_pharma_text_enum { /// Enum describing possible text. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] #[repr(i32)] pub enum VanityPharmaText { /// Not specified. Unspecified = 0, /// Used for return value only. Represents value unknown in this version. Unknown = 1, /// Prescription treatment website with website content in English. PrescriptionTreatmentWebsiteEn = 2, /// Prescription treatment website with website content in Spanish /// (Sitio de tratamientos con receta). PrescriptionTreatmentWebsiteEs = 3, /// Prescription device website with website content in English. PrescriptionDeviceWebsiteEn = 4, /// Prescription device website with website content in Spanish (Sitio de /// dispositivos con receta). PrescriptionDeviceWebsiteEs = 5, /// Medical device website with website content in English. MedicalDeviceWebsiteEn = 6, /// Medical device website with website content in Spanish (Sitio de /// dispositivos médicos). MedicalDeviceWebsiteEs = 7, /// Preventative treatment website with website content in English. PreventativeTreatmentWebsiteEn = 8, /// Preventative treatment website with website content in Spanish (Sitio de /// tratamientos preventivos). PreventativeTreatmentWebsiteEs = 9, /// Prescription contraception website with website content in English. PrescriptionContraceptionWebsiteEn = 10, /// Prescription contraception website with website content in Spanish (Sitio /// de anticonceptivos con receta). PrescriptionContraceptionWebsiteEs = 11, /// Prescription vaccine website with website content in English. PrescriptionVaccineWebsiteEn = 12, /// Prescription vaccine website with website content in Spanish (Sitio de /// vacunas con receta). PrescriptionVaccineWebsiteEs = 13, } }