File size: 136,987 Bytes
065fee7 |
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 |
{
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/adexchange.buyer": {
"description": "Manage your Ad Exchange buyer account configuration"
}
}
}
},
"basePath": "/adexchangebuyer/v1.4/",
"baseUrl": "https://www.googleapis.com/adexchangebuyer/v1.4/",
"batchPath": "batch/adexchangebuyer/v1.4",
"canonicalName": "Ad Exchange Buyer",
"description": "Accesses your bidding-account information, submits creatives for validation, finds available direct deals, and retrieves performance reports.",
"discoveryVersion": "v1",
"documentationLink": "https://developers.google.com/ad-exchange/buyer-rest",
"etag": "\"uWj2hSb4GVjzdDlAnRd2gbM1ZQ8/28H_ClrLhezfMe9hzMrqdyiMlfE\"",
"icons": {
"x16": "https://www.google.com/images/icons/product/doubleclick-16.gif",
"x32": "https://www.google.com/images/icons/product/doubleclick-32.gif"
},
"id": "adexchangebuyer:v1.4",
"kind": "discovery#restDescription",
"name": "adexchangebuyer",
"ownerDomain": "google.com",
"ownerName": "Google",
"parameters": {
"alt": {
"default": "json",
"description": "Data format for the response.",
"enum": [
"json"
],
"enumDescriptions": [
"Responses with Content-Type of application/json"
],
"location": "query",
"type": "string"
},
"fields": {
"description": "Selector specifying which fields to include in a partial response.",
"location": "query",
"type": "string"
},
"key": {
"description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"location": "query",
"type": "string"
},
"oauth_token": {
"description": "OAuth 2.0 token for the current user.",
"location": "query",
"type": "string"
},
"prettyPrint": {
"default": "true",
"description": "Returns response with indentations and line breaks.",
"location": "query",
"type": "boolean"
},
"quotaUser": {
"description": "An opaque string that represents a user for quota purposes. Must not exceed 40 characters.",
"location": "query",
"type": "string"
},
"userIp": {
"description": "Deprecated. Please use quotaUser instead.",
"location": "query",
"type": "string"
}
},
"protocol": "rest",
"resources": {
"accounts": {
"methods": {
"get": {
"description": "Gets one account by ID.",
"httpMethod": "GET",
"id": "adexchangebuyer.accounts.get",
"parameterOrder": [
"id"
],
"parameters": {
"id": {
"description": "The account id",
"format": "int32",
"location": "path",
"required": true,
"type": "integer"
}
},
"path": "accounts/{id}",
"response": {
"$ref": "Account"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"list": {
"description": "Retrieves the authenticated user's list of accounts.",
"httpMethod": "GET",
"id": "adexchangebuyer.accounts.list",
"path": "accounts",
"response": {
"$ref": "AccountsList"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"patch": {
"description": "Updates an existing account. This method supports patch semantics.",
"httpMethod": "PATCH",
"id": "adexchangebuyer.accounts.patch",
"parameterOrder": [
"id"
],
"parameters": {
"confirmUnsafeAccountChange": {
"description": "Confirmation for erasing bidder and cookie matching urls.",
"location": "query",
"type": "boolean"
},
"id": {
"description": "The account id",
"format": "int32",
"location": "path",
"required": true,
"type": "integer"
}
},
"path": "accounts/{id}",
"request": {
"$ref": "Account"
},
"response": {
"$ref": "Account"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"update": {
"description": "Updates an existing account.",
"httpMethod": "PUT",
"id": "adexchangebuyer.accounts.update",
"parameterOrder": [
"id"
],
"parameters": {
"confirmUnsafeAccountChange": {
"description": "Confirmation for erasing bidder and cookie matching urls.",
"location": "query",
"type": "boolean"
},
"id": {
"description": "The account id",
"format": "int32",
"location": "path",
"required": true,
"type": "integer"
}
},
"path": "accounts/{id}",
"request": {
"$ref": "Account"
},
"response": {
"$ref": "Account"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"billingInfo": {
"methods": {
"get": {
"description": "Returns the billing information for one account specified by account ID.",
"httpMethod": "GET",
"id": "adexchangebuyer.billingInfo.get",
"parameterOrder": [
"accountId"
],
"parameters": {
"accountId": {
"description": "The account id.",
"format": "int32",
"location": "path",
"required": true,
"type": "integer"
}
},
"path": "billinginfo/{accountId}",
"response": {
"$ref": "BillingInfo"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"list": {
"description": "Retrieves a list of billing information for all accounts of the authenticated user.",
"httpMethod": "GET",
"id": "adexchangebuyer.billingInfo.list",
"path": "billinginfo",
"response": {
"$ref": "BillingInfoList"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"budget": {
"methods": {
"get": {
"description": "Returns the budget information for the adgroup specified by the accountId and billingId.",
"httpMethod": "GET",
"id": "adexchangebuyer.budget.get",
"parameterOrder": [
"accountId",
"billingId"
],
"parameters": {
"accountId": {
"description": "The account id to get the budget information for.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
},
"billingId": {
"description": "The billing id to get the budget information for.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "billinginfo/{accountId}/{billingId}",
"response": {
"$ref": "Budget"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"patch": {
"description": "Updates the budget amount for the budget of the adgroup specified by the accountId and billingId, with the budget amount in the request. This method supports patch semantics.",
"httpMethod": "PATCH",
"id": "adexchangebuyer.budget.patch",
"parameterOrder": [
"accountId",
"billingId"
],
"parameters": {
"accountId": {
"description": "The account id associated with the budget being updated.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
},
"billingId": {
"description": "The billing id associated with the budget being updated.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "billinginfo/{accountId}/{billingId}",
"request": {
"$ref": "Budget"
},
"response": {
"$ref": "Budget"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"update": {
"description": "Updates the budget amount for the budget of the adgroup specified by the accountId and billingId, with the budget amount in the request.",
"httpMethod": "PUT",
"id": "adexchangebuyer.budget.update",
"parameterOrder": [
"accountId",
"billingId"
],
"parameters": {
"accountId": {
"description": "The account id associated with the budget being updated.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
},
"billingId": {
"description": "The billing id associated with the budget being updated.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "billinginfo/{accountId}/{billingId}",
"request": {
"$ref": "Budget"
},
"response": {
"$ref": "Budget"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"creatives": {
"methods": {
"addDeal": {
"description": "Add a deal id association for the creative.",
"httpMethod": "POST",
"id": "adexchangebuyer.creatives.addDeal",
"parameterOrder": [
"accountId",
"buyerCreativeId",
"dealId"
],
"parameters": {
"accountId": {
"description": "The id for the account that will serve this creative.",
"format": "int32",
"location": "path",
"required": true,
"type": "integer"
},
"buyerCreativeId": {
"description": "The buyer-specific id for this creative.",
"location": "path",
"required": true,
"type": "string"
},
"dealId": {
"description": "The id of the deal id to associate with this creative.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "creatives/{accountId}/{buyerCreativeId}/addDeal/{dealId}",
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"get": {
"description": "Gets the status for a single creative. A creative will be available 30-40 minutes after submission.",
"httpMethod": "GET",
"id": "adexchangebuyer.creatives.get",
"parameterOrder": [
"accountId",
"buyerCreativeId"
],
"parameters": {
"accountId": {
"description": "The id for the account that will serve this creative.",
"format": "int32",
"location": "path",
"required": true,
"type": "integer"
},
"buyerCreativeId": {
"description": "The buyer-specific id for this creative.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "creatives/{accountId}/{buyerCreativeId}",
"response": {
"$ref": "Creative"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"insert": {
"description": "Submit a new creative.",
"httpMethod": "POST",
"id": "adexchangebuyer.creatives.insert",
"path": "creatives",
"request": {
"$ref": "Creative"
},
"response": {
"$ref": "Creative"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"list": {
"description": "Retrieves a list of the authenticated user's active creatives. A creative will be available 30-40 minutes after submission.",
"httpMethod": "GET",
"id": "adexchangebuyer.creatives.list",
"parameters": {
"accountId": {
"description": "When specified, only creatives for the given account ids are returned.",
"format": "int32",
"location": "query",
"repeated": true,
"type": "integer"
},
"buyerCreativeId": {
"description": "When specified, only creatives for the given buyer creative ids are returned.",
"location": "query",
"repeated": true,
"type": "string"
},
"dealsStatusFilter": {
"description": "When specified, only creatives having the given deals status are returned.",
"enum": [
"approved",
"conditionally_approved",
"disapproved",
"not_checked"
],
"enumDescriptions": [
"Creatives which have been approved for serving on deals.",
"Creatives which have been conditionally approved for serving on deals.",
"Creatives which have been disapproved for serving on deals.",
"Creatives whose deals status is not yet checked."
],
"location": "query",
"type": "string"
},
"maxResults": {
"description": "Maximum number of entries returned on one result page. If not set, the default is 100. Optional.",
"format": "uint32",
"location": "query",
"maximum": "1000",
"minimum": "1",
"type": "integer"
},
"openAuctionStatusFilter": {
"description": "When specified, only creatives having the given open auction status are returned.",
"enum": [
"approved",
"conditionally_approved",
"disapproved",
"not_checked"
],
"enumDescriptions": [
"Creatives which have been approved for serving on the open auction.",
"Creatives which have been conditionally approved for serving on the open auction.",
"Creatives which have been disapproved for serving on the open auction.",
"Creatives whose open auction status is not yet checked."
],
"location": "query",
"type": "string"
},
"pageToken": {
"description": "A continuation token, used to page through ad clients. To retrieve the next page, set this parameter to the value of \"nextPageToken\" from the previous response. Optional.",
"location": "query",
"type": "string"
}
},
"path": "creatives",
"response": {
"$ref": "CreativesList"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"listDeals": {
"description": "Lists the external deal ids associated with the creative.",
"httpMethod": "GET",
"id": "adexchangebuyer.creatives.listDeals",
"parameterOrder": [
"accountId",
"buyerCreativeId"
],
"parameters": {
"accountId": {
"description": "The id for the account that will serve this creative.",
"format": "int32",
"location": "path",
"required": true,
"type": "integer"
},
"buyerCreativeId": {
"description": "The buyer-specific id for this creative.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "creatives/{accountId}/{buyerCreativeId}/listDeals",
"response": {
"$ref": "CreativeDealIds"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"removeDeal": {
"description": "Remove a deal id associated with the creative.",
"httpMethod": "POST",
"id": "adexchangebuyer.creatives.removeDeal",
"parameterOrder": [
"accountId",
"buyerCreativeId",
"dealId"
],
"parameters": {
"accountId": {
"description": "The id for the account that will serve this creative.",
"format": "int32",
"location": "path",
"required": true,
"type": "integer"
},
"buyerCreativeId": {
"description": "The buyer-specific id for this creative.",
"location": "path",
"required": true,
"type": "string"
},
"dealId": {
"description": "The id of the deal id to disassociate with this creative.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "creatives/{accountId}/{buyerCreativeId}/removeDeal/{dealId}",
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"marketplacedeals": {
"methods": {
"delete": {
"description": "Delete the specified deals from the proposal",
"httpMethod": "POST",
"id": "adexchangebuyer.marketplacedeals.delete",
"parameterOrder": [
"proposalId"
],
"parameters": {
"proposalId": {
"description": "The proposalId to delete deals from.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}/deals/delete",
"request": {
"$ref": "DeleteOrderDealsRequest"
},
"response": {
"$ref": "DeleteOrderDealsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"insert": {
"description": "Add new deals for the specified proposal",
"httpMethod": "POST",
"id": "adexchangebuyer.marketplacedeals.insert",
"parameterOrder": [
"proposalId"
],
"parameters": {
"proposalId": {
"description": "proposalId for which deals need to be added.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}/deals/insert",
"request": {
"$ref": "AddOrderDealsRequest"
},
"response": {
"$ref": "AddOrderDealsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"list": {
"description": "List all the deals for a given proposal",
"httpMethod": "GET",
"id": "adexchangebuyer.marketplacedeals.list",
"parameterOrder": [
"proposalId"
],
"parameters": {
"pqlQuery": {
"description": "Query string to retrieve specific deals.",
"location": "query",
"type": "string"
},
"proposalId": {
"description": "The proposalId to get deals for. To search across all proposals specify order_id = '-' as part of the URL.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}/deals",
"response": {
"$ref": "GetOrderDealsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"update": {
"description": "Replaces all the deals in the proposal with the passed in deals",
"httpMethod": "POST",
"id": "adexchangebuyer.marketplacedeals.update",
"parameterOrder": [
"proposalId"
],
"parameters": {
"proposalId": {
"description": "The proposalId to edit deals on.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}/deals/update",
"request": {
"$ref": "EditAllOrderDealsRequest"
},
"response": {
"$ref": "EditAllOrderDealsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"marketplacenotes": {
"methods": {
"insert": {
"description": "Add notes to the proposal",
"httpMethod": "POST",
"id": "adexchangebuyer.marketplacenotes.insert",
"parameterOrder": [
"proposalId"
],
"parameters": {
"proposalId": {
"description": "The proposalId to add notes for.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}/notes/insert",
"request": {
"$ref": "AddOrderNotesRequest"
},
"response": {
"$ref": "AddOrderNotesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"list": {
"description": "Get all the notes associated with a proposal",
"httpMethod": "GET",
"id": "adexchangebuyer.marketplacenotes.list",
"parameterOrder": [
"proposalId"
],
"parameters": {
"pqlQuery": {
"description": "Query string to retrieve specific notes. To search the text contents of notes, please use syntax like \"WHERE note.note = \"foo\" or \"WHERE note.note LIKE \"%bar%\"",
"location": "query",
"type": "string"
},
"proposalId": {
"description": "The proposalId to get notes for. To search across all proposals specify order_id = '-' as part of the URL.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}/notes",
"response": {
"$ref": "GetOrderNotesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"marketplaceprivateauction": {
"methods": {
"updateproposal": {
"description": "Update a given private auction proposal",
"httpMethod": "POST",
"id": "adexchangebuyer.marketplaceprivateauction.updateproposal",
"parameterOrder": [
"privateAuctionId"
],
"parameters": {
"privateAuctionId": {
"description": "The private auction id to be updated.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "privateauction/{privateAuctionId}/updateproposal",
"request": {
"$ref": "UpdatePrivateAuctionProposalRequest"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"performanceReport": {
"methods": {
"list": {
"description": "Retrieves the authenticated user's list of performance metrics.",
"httpMethod": "GET",
"id": "adexchangebuyer.performanceReport.list",
"parameterOrder": [
"accountId",
"endDateTime",
"startDateTime"
],
"parameters": {
"accountId": {
"description": "The account id to get the reports.",
"format": "int64",
"location": "query",
"required": true,
"type": "string"
},
"endDateTime": {
"description": "The end time of the report in ISO 8601 timestamp format using UTC.",
"location": "query",
"required": true,
"type": "string"
},
"maxResults": {
"description": "Maximum number of entries returned on one result page. If not set, the default is 100. Optional.",
"format": "uint32",
"location": "query",
"maximum": "1000",
"minimum": "1",
"type": "integer"
},
"pageToken": {
"description": "A continuation token, used to page through performance reports. To retrieve the next page, set this parameter to the value of \"nextPageToken\" from the previous response. Optional.",
"location": "query",
"type": "string"
},
"startDateTime": {
"description": "The start time of the report in ISO 8601 timestamp format using UTC.",
"location": "query",
"required": true,
"type": "string"
}
},
"path": "performancereport",
"response": {
"$ref": "PerformanceReportList"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"pretargetingConfig": {
"methods": {
"delete": {
"description": "Deletes an existing pretargeting config.",
"httpMethod": "DELETE",
"id": "adexchangebuyer.pretargetingConfig.delete",
"parameterOrder": [
"accountId",
"configId"
],
"parameters": {
"accountId": {
"description": "The account id to delete the pretargeting config for.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
},
"configId": {
"description": "The specific id of the configuration to delete.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "pretargetingconfigs/{accountId}/{configId}",
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"get": {
"description": "Gets a specific pretargeting configuration",
"httpMethod": "GET",
"id": "adexchangebuyer.pretargetingConfig.get",
"parameterOrder": [
"accountId",
"configId"
],
"parameters": {
"accountId": {
"description": "The account id to get the pretargeting config for.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
},
"configId": {
"description": "The specific id of the configuration to retrieve.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "pretargetingconfigs/{accountId}/{configId}",
"response": {
"$ref": "PretargetingConfig"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"insert": {
"description": "Inserts a new pretargeting configuration.",
"httpMethod": "POST",
"id": "adexchangebuyer.pretargetingConfig.insert",
"parameterOrder": [
"accountId"
],
"parameters": {
"accountId": {
"description": "The account id to insert the pretargeting config for.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "pretargetingconfigs/{accountId}",
"request": {
"$ref": "PretargetingConfig"
},
"response": {
"$ref": "PretargetingConfig"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"list": {
"description": "Retrieves a list of the authenticated user's pretargeting configurations.",
"httpMethod": "GET",
"id": "adexchangebuyer.pretargetingConfig.list",
"parameterOrder": [
"accountId"
],
"parameters": {
"accountId": {
"description": "The account id to get the pretargeting configs for.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "pretargetingconfigs/{accountId}",
"response": {
"$ref": "PretargetingConfigList"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"patch": {
"description": "Updates an existing pretargeting config. This method supports patch semantics.",
"httpMethod": "PATCH",
"id": "adexchangebuyer.pretargetingConfig.patch",
"parameterOrder": [
"accountId",
"configId"
],
"parameters": {
"accountId": {
"description": "The account id to update the pretargeting config for.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
},
"configId": {
"description": "The specific id of the configuration to update.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "pretargetingconfigs/{accountId}/{configId}",
"request": {
"$ref": "PretargetingConfig"
},
"response": {
"$ref": "PretargetingConfig"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"update": {
"description": "Updates an existing pretargeting config.",
"httpMethod": "PUT",
"id": "adexchangebuyer.pretargetingConfig.update",
"parameterOrder": [
"accountId",
"configId"
],
"parameters": {
"accountId": {
"description": "The account id to update the pretargeting config for.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
},
"configId": {
"description": "The specific id of the configuration to update.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "pretargetingconfigs/{accountId}/{configId}",
"request": {
"$ref": "PretargetingConfig"
},
"response": {
"$ref": "PretargetingConfig"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"products": {
"methods": {
"get": {
"description": "Gets the requested product by id.",
"httpMethod": "GET",
"id": "adexchangebuyer.products.get",
"parameterOrder": [
"productId"
],
"parameters": {
"productId": {
"description": "The id for the product to get the head revision for.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "products/{productId}",
"response": {
"$ref": "Product"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"search": {
"description": "Gets the requested product.",
"httpMethod": "GET",
"id": "adexchangebuyer.products.search",
"parameters": {
"pqlQuery": {
"description": "The pql query used to query for products.",
"location": "query",
"type": "string"
}
},
"path": "products/search",
"response": {
"$ref": "GetOffersResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"proposals": {
"methods": {
"get": {
"description": "Get a proposal given its id",
"httpMethod": "GET",
"id": "adexchangebuyer.proposals.get",
"parameterOrder": [
"proposalId"
],
"parameters": {
"proposalId": {
"description": "Id of the proposal to retrieve.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}",
"response": {
"$ref": "Proposal"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"insert": {
"description": "Create the given list of proposals",
"httpMethod": "POST",
"id": "adexchangebuyer.proposals.insert",
"path": "proposals/insert",
"request": {
"$ref": "CreateOrdersRequest"
},
"response": {
"$ref": "CreateOrdersResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"patch": {
"description": "Update the given proposal. This method supports patch semantics.",
"httpMethod": "PATCH",
"id": "adexchangebuyer.proposals.patch",
"parameterOrder": [
"proposalId",
"revisionNumber",
"updateAction"
],
"parameters": {
"proposalId": {
"description": "The proposal id to update.",
"location": "path",
"required": true,
"type": "string"
},
"revisionNumber": {
"description": "The last known revision number to update. If the head revision in the marketplace database has since changed, an error will be thrown. The caller should then fetch the latest proposal at head revision and retry the update at that revision.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
},
"updateAction": {
"description": "The proposed action to take on the proposal. This field is required and it must be set when updating a proposal.",
"enum": [
"accept",
"cancel",
"propose",
"proposeAndAccept",
"unknownAction",
"updateNonTerms"
],
"enumDescriptions": [
"",
"",
"",
"",
"",
""
],
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}/{revisionNumber}/{updateAction}",
"request": {
"$ref": "Proposal"
},
"response": {
"$ref": "Proposal"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"search": {
"description": "Search for proposals using pql query",
"httpMethod": "GET",
"id": "adexchangebuyer.proposals.search",
"parameters": {
"pqlQuery": {
"description": "Query string to retrieve specific proposals.",
"location": "query",
"type": "string"
}
},
"path": "proposals/search",
"response": {
"$ref": "GetOrdersResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"setupcomplete": {
"description": "Update the given proposal to indicate that setup has been completed.",
"httpMethod": "POST",
"id": "adexchangebuyer.proposals.setupcomplete",
"parameterOrder": [
"proposalId"
],
"parameters": {
"proposalId": {
"description": "The proposal id for which the setup is complete",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}/setupcomplete",
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
},
"update": {
"description": "Update the given proposal",
"httpMethod": "PUT",
"id": "adexchangebuyer.proposals.update",
"parameterOrder": [
"proposalId",
"revisionNumber",
"updateAction"
],
"parameters": {
"proposalId": {
"description": "The proposal id to update.",
"location": "path",
"required": true,
"type": "string"
},
"revisionNumber": {
"description": "The last known revision number to update. If the head revision in the marketplace database has since changed, an error will be thrown. The caller should then fetch the latest proposal at head revision and retry the update at that revision.",
"format": "int64",
"location": "path",
"required": true,
"type": "string"
},
"updateAction": {
"description": "The proposed action to take on the proposal. This field is required and it must be set when updating a proposal.",
"enum": [
"accept",
"cancel",
"propose",
"proposeAndAccept",
"unknownAction",
"updateNonTerms"
],
"enumDescriptions": [
"",
"",
"",
"",
"",
""
],
"location": "path",
"required": true,
"type": "string"
}
},
"path": "proposals/{proposalId}/{revisionNumber}/{updateAction}",
"request": {
"$ref": "Proposal"
},
"response": {
"$ref": "Proposal"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
},
"pubprofiles": {
"methods": {
"list": {
"description": "Gets the requested publisher profile(s) by publisher accountId.",
"httpMethod": "GET",
"id": "adexchangebuyer.pubprofiles.list",
"parameterOrder": [
"accountId"
],
"parameters": {
"accountId": {
"description": "The accountId of the publisher to get profiles for.",
"format": "int32",
"location": "path",
"required": true,
"type": "integer"
}
},
"path": "publisher/{accountId}/profiles",
"response": {
"$ref": "GetPublisherProfilesByAccountIdResponse"
},
"scopes": [
"https://www.googleapis.com/auth/adexchange.buyer"
]
}
}
}
},
"revision": "20210815",
"rootUrl": "https://www.googleapis.com/",
"schemas": {
"Account": {
"description": "Configuration data for an Ad Exchange buyer account.",
"id": "Account",
"properties": {
"applyPretargetingToNonGuaranteedDeals": {
"description": "When this is false, bid requests that include a deal ID for a private auction or preferred deal are always sent to your bidder. When true, all active pretargeting configs will be applied to private auctions and preferred deals. Programmatic Guaranteed deals (when enabled) are always sent to your bidder.",
"type": "boolean"
},
"bidderLocation": {
"description": "Your bidder locations that have distinct URLs.",
"items": {
"properties": {
"bidProtocol": {
"description": "The protocol that the bidder endpoint is using. OpenRTB protocols with prefix PROTOCOL_OPENRTB_PROTOBUF use proto buffer, otherwise use JSON. Allowed values: \n- PROTOCOL_ADX \n- PROTOCOL_OPENRTB_2_2 \n- PROTOCOL_OPENRTB_2_3 \n- PROTOCOL_OPENRTB_2_4 \n- PROTOCOL_OPENRTB_2_5 \n- PROTOCOL_OPENRTB_PROTOBUF_2_3 \n- PROTOCOL_OPENRTB_PROTOBUF_2_4 \n- PROTOCOL_OPENRTB_PROTOBUF_2_5",
"type": "string"
},
"maximumQps": {
"description": "The maximum queries per second the Ad Exchange will send.",
"format": "int32",
"type": "integer"
},
"region": {
"description": "The geographical region the Ad Exchange should send requests from. Only used by some quota systems, but always setting the value is recommended. Allowed values: \n- ASIA \n- EUROPE \n- US_EAST \n- US_WEST",
"type": "string"
},
"url": {
"description": "The URL to which the Ad Exchange will send bid requests.",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"cookieMatchingNid": {
"description": "The nid parameter value used in cookie match requests. Please contact your technical account manager if you need to change this.",
"type": "string"
},
"cookieMatchingUrl": {
"description": "The base URL used in cookie match requests.",
"type": "string"
},
"id": {
"description": "Account id.",
"format": "int32",
"type": "integer"
},
"kind": {
"default": "adexchangebuyer#account",
"description": "Resource type.",
"type": "string"
},
"maximumActiveCreatives": {
"description": "The maximum number of active creatives that an account can have, where a creative is active if it was inserted or bid with in the last 30 days. Please contact your technical account manager if you need to change this.",
"format": "int32",
"type": "integer"
},
"maximumTotalQps": {
"description": "The sum of all bidderLocation.maximumQps values cannot exceed this. Please contact your technical account manager if you need to change this.",
"format": "int32",
"type": "integer"
},
"numberActiveCreatives": {
"description": "The number of creatives that this account inserted or bid with in the last 30 days.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"AccountsList": {
"description": "An account feed lists Ad Exchange buyer accounts that the user has access to. Each entry in the feed corresponds to a single buyer account.",
"id": "AccountsList",
"properties": {
"items": {
"description": "A list of accounts.",
"items": {
"$ref": "Account"
},
"type": "array"
},
"kind": {
"default": "adexchangebuyer#accountsList",
"description": "Resource type.",
"type": "string"
}
},
"type": "object"
},
"AddOrderDealsRequest": {
"id": "AddOrderDealsRequest",
"properties": {
"deals": {
"description": "The list of deals to add",
"items": {
"$ref": "MarketplaceDeal"
},
"type": "array"
},
"proposalRevisionNumber": {
"description": "The last known proposal revision number.",
"format": "int64",
"type": "string"
},
"updateAction": {
"description": "Indicates an optional action to take on the proposal",
"type": "string"
}
},
"type": "object"
},
"AddOrderDealsResponse": {
"id": "AddOrderDealsResponse",
"properties": {
"deals": {
"description": "List of deals added (in the same proposal as passed in the request)",
"items": {
"$ref": "MarketplaceDeal"
},
"type": "array"
},
"proposalRevisionNumber": {
"description": "The updated revision number for the proposal.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"AddOrderNotesRequest": {
"id": "AddOrderNotesRequest",
"properties": {
"notes": {
"description": "The list of notes to add.",
"items": {
"$ref": "MarketplaceNote"
},
"type": "array"
}
},
"type": "object"
},
"AddOrderNotesResponse": {
"id": "AddOrderNotesResponse",
"properties": {
"notes": {
"items": {
"$ref": "MarketplaceNote"
},
"type": "array"
}
},
"type": "object"
},
"BillingInfo": {
"description": "The configuration data for an Ad Exchange billing info.",
"id": "BillingInfo",
"properties": {
"accountId": {
"description": "Account id.",
"format": "int32",
"type": "integer"
},
"accountName": {
"description": "Account name.",
"type": "string"
},
"billingId": {
"description": "A list of adgroup IDs associated with this particular account. These IDs may show up as part of a realtime bidding BidRequest, which indicates a bid request for this account.",
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"default": "adexchangebuyer#billingInfo",
"description": "Resource type.",
"type": "string"
}
},
"type": "object"
},
"BillingInfoList": {
"description": "A billing info feed lists Billing Info the Ad Exchange buyer account has access to. Each entry in the feed corresponds to a single billing info.",
"id": "BillingInfoList",
"properties": {
"items": {
"description": "A list of billing info relevant for your account.",
"items": {
"$ref": "BillingInfo"
},
"type": "array"
},
"kind": {
"default": "adexchangebuyer#billingInfoList",
"description": "Resource type.",
"type": "string"
}
},
"type": "object"
},
"Budget": {
"description": "The configuration data for Ad Exchange RTB - Budget API.",
"id": "Budget",
"properties": {
"accountId": {
"description": "The id of the account. This is required for get and update requests.",
"format": "int64",
"type": "string"
},
"billingId": {
"description": "The billing id to determine which adgroup to provide budget information for. This is required for get and update requests.",
"format": "int64",
"type": "string"
},
"budgetAmount": {
"description": "The daily budget amount in unit amount of the account currency to apply for the billingId provided. This is required for update requests.",
"format": "int64",
"type": "string"
},
"currencyCode": {
"description": "The currency code for the buyer. This cannot be altered here.",
"type": "string"
},
"id": {
"description": "The unique id that describes this item.",
"type": "string"
},
"kind": {
"default": "adexchangebuyer#budget",
"description": "The kind of the resource, i.e. \"adexchangebuyer#budget\".",
"type": "string"
}
},
"type": "object"
},
"Buyer": {
"id": "Buyer",
"properties": {
"accountId": {
"description": "Adx account id of the buyer.",
"type": "string"
}
},
"type": "object"
},
"ContactInformation": {
"id": "ContactInformation",
"properties": {
"email": {
"description": "Email address of the contact.",
"type": "string"
},
"name": {
"description": "The name of the contact.",
"type": "string"
}
},
"type": "object"
},
"CreateOrdersRequest": {
"id": "CreateOrdersRequest",
"properties": {
"proposals": {
"description": "The list of proposals to create.",
"items": {
"$ref": "Proposal"
},
"type": "array"
},
"webPropertyCode": {
"description": "Web property id of the seller creating these orders",
"type": "string"
}
},
"type": "object"
},
"CreateOrdersResponse": {
"id": "CreateOrdersResponse",
"properties": {
"proposals": {
"description": "The list of proposals successfully created.",
"items": {
"$ref": "Proposal"
},
"type": "array"
}
},
"type": "object"
},
"Creative": {
"description": "A creative and its classification data.",
"id": "Creative",
"properties": {
"HTMLSnippet": {
"description": "The HTML snippet that displays the ad when inserted in the web page. If set, videoURL, videoVastXML, and nativeAd should not be set.",
"type": "string"
},
"accountId": {
"annotations": {
"required": [
"adexchangebuyer.creatives.insert"
]
},
"description": "Account id.",
"format": "int32",
"type": "integer"
},
"adChoicesDestinationUrl": {
"description": "The link to the Ad Preferences page. This is only supported for native ads.",
"type": "string"
},
"adTechnologyProviders": {
"properties": {
"detectedProviderIds": {
"description": "The detected ad technology provider IDs for this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to provided name, a privacy policy URL, and a list of domains which can be attributed to the provider. If this creative contains provider IDs that are outside of those listed in the `BidRequest.adslot.consented_providers_settings.consented_providers` field on the Authorized Buyers Real-Time Bidding protocol or the `BidRequest.user.ext.consented_providers_settings.consented_providers` field on the OpenRTB protocol, a bid submitted for a European Economic Area (EEA) user with this creative is not compliant with the GDPR policies as mentioned in the \"Third-party Ad Technology Vendors\" section of Authorized Buyers Program Guidelines.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"hasUnidentifiedProvider": {
"description": "Whether the creative contains an unidentified ad technology provider. If true, a bid submitted for a European Economic Area (EEA) user with this creative is not compliant with the GDPR policies as mentioned in the \"Third-party Ad Technology Vendors\" section of Authorized Buyers Program Guidelines.",
"type": "boolean"
}
},
"type": "object"
},
"advertiserId": {
"description": "Detected advertiser id, if any. Read-only. This field should not be set in requests.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"advertiserName": {
"annotations": {
"required": [
"adexchangebuyer.creatives.insert"
]
},
"description": "The name of the company being advertised in the creative. A list of advertisers is provided in the advertisers.txt file.",
"type": "string"
},
"agencyId": {
"description": "The agency id for this creative.",
"format": "int64",
"type": "string"
},
"apiUploadTimestamp": {
"description": "The last upload timestamp of this creative if it was uploaded via API. Read-only. The value of this field is generated, and will be ignored for uploads. (formatted RFC 3339 timestamp).",
"format": "date-time",
"type": "string"
},
"attribute": {
"description": "List of buyer selectable attributes for the ads that may be shown from this snippet. Each attribute is represented by an integer as defined in buyer-declarable-creative-attributes.txt.",
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"buyerCreativeId": {
"annotations": {
"required": [
"adexchangebuyer.creatives.insert"
]
},
"description": "A buyer-specific id identifying the creative in this ad.",
"type": "string"
},
"clickThroughUrl": {
"annotations": {
"required": [
"adexchangebuyer.creatives.insert"
]
},
"description": "The set of destination urls for the snippet.",
"items": {
"type": "string"
},
"type": "array"
},
"corrections": {
"description": "Shows any corrections that were applied to this creative. Read-only. This field should not be set in requests.",
"items": {
"properties": {
"contexts": {
"description": "All known serving contexts containing serving status information.",
"items": {
"properties": {
"auctionType": {
"description": "Only set when contextType=AUCTION_TYPE. Represents the auction types this correction applies to.",
"items": {
"type": "string"
},
"type": "array"
},
"contextType": {
"description": "The type of context (e.g., location, platform, auction type, SSL-ness).",
"type": "string"
},
"geoCriteriaId": {
"description": "Only set when contextType=LOCATION. Represents the geo criterias this correction applies to.",
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"platform": {
"description": "Only set when contextType=PLATFORM. Represents the platforms this correction applies to.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"type": "array"
},
"details": {
"description": "Additional details about the correction.",
"items": {
"type": "string"
},
"type": "array"
},
"reason": {
"description": "The type of correction that was applied to the creative.",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"creativeStatusIdentityType": {
"description": "Creative status identity type that the creative item applies to. Ad Exchange real-time bidding is migrating to the sizeless creative verification. Originally, Ad Exchange assigned creative verification status to a unique combination of a buyer creative ID and creative dimensions. Post-migration, a single verification status will be assigned at the buyer creative ID level. This field allows to distinguish whether a given creative status applies to a unique combination of a buyer creative ID and creative dimensions, or to a buyer creative ID as a whole.",
"type": "string"
},
"dealsStatus": {
"description": "Top-level deals status. Read-only. This field should not be set in requests. If disapproved, an entry for auctionType=DIRECT_DEALS (or ALL) in servingRestrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case it may be preferable to read from servingRestrictions directly.",
"type": "string"
},
"detectedDomains": {
"description": "Detected domains for this creative. Read-only. This field should not be set in requests.",
"items": {
"type": "string"
},
"type": "array"
},
"filteringReasons": {
"description": "The filtering reasons for the creative. Read-only. This field should not be set in requests.",
"properties": {
"date": {
"description": "The date in ISO 8601 format for the data. The data is collected from 00:00:00 to 23:59:59 in PST.",
"type": "string"
},
"reasons": {
"description": "The filtering reasons.",
"items": {
"properties": {
"filteringCount": {
"description": "The number of times the creative was filtered for the status. The count is aggregated across all publishers on the exchange.",
"format": "int64",
"type": "string"
},
"filteringStatus": {
"description": "The filtering status code as defined in creative-status-codes.txt.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"height": {
"annotations": {
"required": [
"adexchangebuyer.creatives.insert"
]
},
"description": "Ad height.",
"format": "int32",
"type": "integer"
},
"impressionTrackingUrl": {
"description": "The set of urls to be called to record an impression.",
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"default": "adexchangebuyer#creative",
"description": "Resource type.",
"type": "string"
},
"languages": {
"description": "Detected languages for this creative. Read-only. This field should not be set in requests.",
"items": {
"type": "string"
},
"type": "array"
},
"nativeAd": {
"description": "If nativeAd is set, HTMLSnippet, videoVastXML, and the videoURL outside of nativeAd should not be set. (The videoURL inside nativeAd can be set.)",
"properties": {
"advertiser": {
"type": "string"
},
"appIcon": {
"description": "The app icon, for app download ads.",
"properties": {
"height": {
"format": "int32",
"type": "integer"
},
"url": {
"type": "string"
},
"width": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"body": {
"description": "A long description of the ad.",
"type": "string"
},
"callToAction": {
"description": "A label for the button that the user is supposed to click.",
"type": "string"
},
"clickLinkUrl": {
"description": "The URL that the browser/SDK will load when the user clicks the ad.",
"type": "string"
},
"clickTrackingUrl": {
"description": "The URL to use for click tracking.",
"type": "string"
},
"headline": {
"description": "A short title for the ad.",
"type": "string"
},
"image": {
"description": "A large image.",
"properties": {
"height": {
"format": "int32",
"type": "integer"
},
"url": {
"type": "string"
},
"width": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"impressionTrackingUrl": {
"description": "The URLs are called when the impression is rendered.",
"items": {
"type": "string"
},
"type": "array"
},
"logo": {
"description": "A smaller image, for the advertiser logo.",
"properties": {
"height": {
"format": "int32",
"type": "integer"
},
"url": {
"type": "string"
},
"width": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"price": {
"description": "The price of the promoted app including the currency info.",
"type": "string"
},
"starRating": {
"description": "The app rating in the app store. Must be in the range [0-5].",
"format": "double",
"type": "number"
},
"videoURL": {
"description": "The URL of the XML VAST for a native ad. Note this is a separate field from resource.video_url.",
"type": "string"
}
},
"type": "object"
},
"openAuctionStatus": {
"description": "Top-level open auction status. Read-only. This field should not be set in requests. If disapproved, an entry for auctionType=OPEN_AUCTION (or ALL) in servingRestrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case it may be preferable to read from ServingRestrictions directly.",
"type": "string"
},
"productCategories": {
"description": "Detected product categories, if any. Each category is represented by an integer as defined in ad-product-categories.txt. Read-only. This field should not be set in requests.",
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"restrictedCategories": {
"description": "All restricted categories for the ads that may be shown from this snippet. Each category is represented by an integer as defined in the ad-restricted-categories.txt.",
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"sensitiveCategories": {
"description": "Detected sensitive categories, if any. Each category is represented by an integer as defined in ad-sensitive-categories.txt. Read-only. This field should not be set in requests.",
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"servingRestrictions": {
"description": "The granular status of this ad in specific contexts. A context here relates to where something ultimately serves (for example, a physical location, a platform, an HTTPS vs HTTP request, or the type of auction). Read-only. This field should not be set in requests. See the examples in the Creatives guide for more details.",
"items": {
"properties": {
"contexts": {
"description": "All known contexts/restrictions.",
"items": {
"properties": {
"auctionType": {
"description": "Only set when contextType=AUCTION_TYPE. Represents the auction types this restriction applies to.",
"items": {
"type": "string"
},
"type": "array"
},
"contextType": {
"description": "The type of context (e.g., location, platform, auction type, SSL-ness).",
"type": "string"
},
"geoCriteriaId": {
"description": "Only set when contextType=LOCATION. Represents the geo criterias this restriction applies to. Impressions are considered to match a context if either the user location or publisher location matches a given geoCriteriaId.",
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"platform": {
"description": "Only set when contextType=PLATFORM. Represents the platforms this restriction applies to.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"type": "array"
},
"disapprovalReasons": {
"description": "The reasons for disapproval within this restriction, if any. Note that not all disapproval reasons may be categorized, so it is possible for the creative to have a status of DISAPPROVED or CONDITIONALLY_APPROVED with an empty list for disapproval_reasons. In this case, please reach out to your TAM to help debug the issue.",
"items": {
"properties": {
"details": {
"description": "Additional details about the reason for disapproval.",
"items": {
"type": "string"
},
"type": "array"
},
"reason": {
"description": "The categorized reason for disapproval.",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"reason": {
"description": "Why the creative is ineligible to serve in this context (e.g., it has been explicitly disapproved or is pending review).",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"vendorType": {
"description": "List of vendor types for the ads that may be shown from this snippet. Each vendor type is represented by an integer as defined in vendors.txt.",
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"version": {
"description": "The version for this creative. Read-only. This field should not be set in requests.",
"format": "int32",
"type": "integer"
},
"videoURL": {
"description": "The URL to fetch a video ad. If set, HTMLSnippet, videoVastXML, and nativeAd should not be set. Note, this is different from resource.native_ad.video_url above.",
"type": "string"
},
"videoVastXML": {
"description": "The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard. If set, HTMLSnippet, videoURL, and nativeAd and should not be set.",
"type": "string"
},
"width": {
"annotations": {
"required": [
"adexchangebuyer.creatives.insert"
]
},
"description": "Ad width.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"CreativeDealIds": {
"description": "The external deal ids associated with a creative.",
"id": "CreativeDealIds",
"properties": {
"dealStatuses": {
"description": "A list of external deal ids and ARC approval status.",
"items": {
"properties": {
"arcStatus": {
"description": "ARC approval status.",
"type": "string"
},
"dealId": {
"description": "External deal ID.",
"format": "int64",
"type": "string"
},
"webPropertyId": {
"description": "Publisher ID.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"kind": {
"default": "adexchangebuyer#creativeDealIds",
"description": "Resource type.",
"type": "string"
}
},
"type": "object"
},
"CreativesList": {
"description": "The creatives feed lists the active creatives for the Ad Exchange buyer accounts that the user has access to. Each entry in the feed corresponds to a single creative.",
"id": "CreativesList",
"properties": {
"items": {
"description": "A list of creatives.",
"items": {
"$ref": "Creative"
},
"type": "array"
},
"kind": {
"default": "adexchangebuyer#creativesList",
"description": "Resource type.",
"type": "string"
},
"nextPageToken": {
"description": "Continuation token used to page through creatives. To retrieve the next page of results, set the next request's \"pageToken\" value to this.",
"type": "string"
}
},
"type": "object"
},
"DealServingMetadata": {
"id": "DealServingMetadata",
"properties": {
"alcoholAdsAllowed": {
"description": "True if alcohol ads are allowed for this deal (read-only). This field is only populated when querying for finalized orders using the method GetFinalizedOrderDeals",
"type": "boolean"
},
"dealPauseStatus": {
"$ref": "DealServingMetadataDealPauseStatus",
"description": "Tracks which parties (if any) have paused a deal. (readonly, except via PauseResumeOrderDeals action)"
}
},
"type": "object"
},
"DealServingMetadataDealPauseStatus": {
"description": "Tracks which parties (if any) have paused a deal. The deal is considered paused if has_buyer_paused || has_seller_paused. Each of the has_buyer_paused or the has_seller_paused bits can be set independently.",
"id": "DealServingMetadataDealPauseStatus",
"properties": {
"buyerPauseReason": {
"type": "string"
},
"firstPausedBy": {
"description": "If the deal is paused, records which party paused the deal first.",
"type": "string"
},
"hasBuyerPaused": {
"type": "boolean"
},
"hasSellerPaused": {
"type": "boolean"
},
"sellerPauseReason": {
"type": "string"
}
},
"type": "object"
},
"DealTerms": {
"id": "DealTerms",
"properties": {
"brandingType": {
"description": "Visibility of the URL in bid requests.",
"type": "string"
},
"crossListedExternalDealIdType": {
"description": "Indicates that this ExternalDealId exists under at least two different AdxInventoryDeals. Currently, the only case that the same ExternalDealId will exist is programmatic cross sell case.",
"type": "string"
},
"description": {
"description": "Description for the proposed terms of the deal.",
"type": "string"
},
"estimatedGrossSpend": {
"$ref": "Price",
"description": "Non-binding estimate of the estimated gross spend for this deal Can be set by buyer or seller."
},
"estimatedImpressionsPerDay": {
"description": "Non-binding estimate of the impressions served per day Can be set by buyer or seller.",
"format": "int64",
"type": "string"
},
"guaranteedFixedPriceTerms": {
"$ref": "DealTermsGuaranteedFixedPriceTerms",
"description": "The terms for guaranteed fixed price deals."
},
"nonGuaranteedAuctionTerms": {
"$ref": "DealTermsNonGuaranteedAuctionTerms",
"description": "The terms for non-guaranteed auction deals."
},
"nonGuaranteedFixedPriceTerms": {
"$ref": "DealTermsNonGuaranteedFixedPriceTerms",
"description": "The terms for non-guaranteed fixed price deals."
},
"rubiconNonGuaranteedTerms": {
"$ref": "DealTermsRubiconNonGuaranteedTerms",
"description": "The terms for rubicon non-guaranteed deals."
},
"sellerTimeZone": {
"description": "For deals with Cost Per Day billing, defines the timezone used to mark the boundaries of a day (buyer-readonly)",
"type": "string"
}
},
"type": "object"
},
"DealTermsGuaranteedFixedPriceTerms": {
"id": "DealTermsGuaranteedFixedPriceTerms",
"properties": {
"billingInfo": {
"$ref": "DealTermsGuaranteedFixedPriceTermsBillingInfo",
"description": "External billing info for this Deal. This field is relevant when external billing info such as price has a different currency code than DFP/AdX."
},
"fixedPrices": {
"description": "Fixed price for the specified buyer.",
"items": {
"$ref": "PricePerBuyer"
},
"type": "array"
},
"guaranteedImpressions": {
"description": "Guaranteed impressions as a percentage. This is the percentage of guaranteed looks that the buyer is guaranteeing to buy.",
"format": "int64",
"type": "string"
},
"guaranteedLooks": {
"description": "Count of guaranteed looks. Required for deal, optional for product. For CPD deals, buyer changes to guaranteed_looks will be ignored.",
"format": "int64",
"type": "string"
},
"minimumDailyLooks": {
"description": "Count of minimum daily looks for a CPD deal. For CPD deals, buyer should negotiate on this field instead of guaranteed_looks.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"DealTermsGuaranteedFixedPriceTermsBillingInfo": {
"id": "DealTermsGuaranteedFixedPriceTermsBillingInfo",
"properties": {
"currencyConversionTimeMs": {
"description": "The timestamp (in ms since epoch) when the original reservation price for the deal was first converted to DFP currency. This is used to convert the contracted price into buyer's currency without discrepancy.",
"format": "int64",
"type": "string"
},
"dfpLineItemId": {
"description": "The DFP line item id associated with this deal. For features like CPD, buyers can retrieve the DFP line item for billing reconciliation.",
"format": "int64",
"type": "string"
},
"originalContractedQuantity": {
"description": "The original contracted quantity (# impressions) for this deal. To ensure delivery, sometimes the publisher will book the deal with a impression buffer, such that guaranteed_looks is greater than the contracted quantity. However clients are billed using the original contracted quantity.",
"format": "int64",
"type": "string"
},
"price": {
"$ref": "Price",
"description": "The original reservation price for the deal, if the currency code is different from the one used in negotiation."
}
},
"type": "object"
},
"DealTermsNonGuaranteedAuctionTerms": {
"id": "DealTermsNonGuaranteedAuctionTerms",
"properties": {
"autoOptimizePrivateAuction": {
"description": "True if open auction buyers are allowed to compete with invited buyers in this private auction (buyer-readonly).",
"type": "boolean"
},
"reservePricePerBuyers": {
"description": "Reserve price for the specified buyer.",
"items": {
"$ref": "PricePerBuyer"
},
"type": "array"
}
},
"type": "object"
},
"DealTermsNonGuaranteedFixedPriceTerms": {
"id": "DealTermsNonGuaranteedFixedPriceTerms",
"properties": {
"fixedPrices": {
"description": "Fixed price for the specified buyer.",
"items": {
"$ref": "PricePerBuyer"
},
"type": "array"
}
},
"type": "object"
},
"DealTermsRubiconNonGuaranteedTerms": {
"id": "DealTermsRubiconNonGuaranteedTerms",
"properties": {
"priorityPrice": {
"$ref": "Price",
"description": "Optional price for Rubicon priority access in the auction."
},
"standardPrice": {
"$ref": "Price",
"description": "Optional price for Rubicon standard access in the auction."
}
},
"type": "object"
},
"DeleteOrderDealsRequest": {
"id": "DeleteOrderDealsRequest",
"properties": {
"dealIds": {
"description": "List of deals to delete for a given proposal",
"items": {
"type": "string"
},
"type": "array"
},
"proposalRevisionNumber": {
"description": "The last known proposal revision number.",
"format": "int64",
"type": "string"
},
"updateAction": {
"description": "Indicates an optional action to take on the proposal",
"type": "string"
}
},
"type": "object"
},
"DeleteOrderDealsResponse": {
"id": "DeleteOrderDealsResponse",
"properties": {
"deals": {
"description": "List of deals deleted (in the same proposal as passed in the request)",
"items": {
"$ref": "MarketplaceDeal"
},
"type": "array"
},
"proposalRevisionNumber": {
"description": "The updated revision number for the proposal.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"DeliveryControl": {
"id": "DeliveryControl",
"properties": {
"creativeBlockingLevel": {
"type": "string"
},
"deliveryRateType": {
"type": "string"
},
"frequencyCaps": {
"items": {
"$ref": "DeliveryControlFrequencyCap"
},
"type": "array"
}
},
"type": "object"
},
"DeliveryControlFrequencyCap": {
"id": "DeliveryControlFrequencyCap",
"properties": {
"maxImpressions": {
"format": "int32",
"type": "integer"
},
"numTimeUnits": {
"format": "int32",
"type": "integer"
},
"timeUnitType": {
"type": "string"
}
},
"type": "object"
},
"Dimension": {
"description": "This message carries publisher provided breakdown. E.g. {dimension_type: 'COUNTRY', [{dimension_value: {id: 1, name: 'US'}}, {dimension_value: {id: 2, name: 'UK'}}]}",
"id": "Dimension",
"properties": {
"dimensionType": {
"type": "string"
},
"dimensionValues": {
"items": {
"$ref": "DimensionDimensionValue"
},
"type": "array"
}
},
"type": "object"
},
"DimensionDimensionValue": {
"description": "Value of the dimension.",
"id": "DimensionDimensionValue",
"properties": {
"id": {
"description": "Id of the dimension.",
"format": "int32",
"type": "integer"
},
"name": {
"description": "Name of the dimension mainly for debugging purposes, except for the case of CREATIVE_SIZE. For CREATIVE_SIZE, strings are used instead of ids.",
"type": "string"
},
"percentage": {
"description": "Percent of total impressions for a dimension type. e.g. {dimension_type: 'GENDER', [{dimension_value: {id: 1, name: 'MALE', percentage: 60}}]} Gender MALE is 60% of all impressions which have gender.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"EditAllOrderDealsRequest": {
"id": "EditAllOrderDealsRequest",
"properties": {
"deals": {
"description": "List of deals to edit. Service may perform 3 different operations based on comparison of deals in this list vs deals already persisted in database: 1. Add new deal to proposal If a deal in this list does not exist in the proposal, the service will create a new deal and add it to the proposal. Validation will follow AddOrderDealsRequest. 2. Update existing deal in the proposal If a deal in this list already exist in the proposal, the service will update that existing deal to this new deal in the request. Validation will follow UpdateOrderDealsRequest. 3. Delete deals from the proposal (just need the id) If a existing deal in the proposal is not present in this list, the service will delete that deal from the proposal. Validation will follow DeleteOrderDealsRequest.",
"items": {
"$ref": "MarketplaceDeal"
},
"type": "array"
},
"proposal": {
"$ref": "Proposal",
"description": "If specified, also updates the proposal in the batch transaction. This is useful when the proposal and the deals need to be updated in one transaction."
},
"proposalRevisionNumber": {
"description": "The last known revision number for the proposal.",
"format": "int64",
"type": "string"
},
"updateAction": {
"description": "Indicates an optional action to take on the proposal",
"type": "string"
}
},
"type": "object"
},
"EditAllOrderDealsResponse": {
"id": "EditAllOrderDealsResponse",
"properties": {
"deals": {
"description": "List of all deals in the proposal after edit.",
"items": {
"$ref": "MarketplaceDeal"
},
"type": "array"
},
"orderRevisionNumber": {
"description": "The latest revision number after the update has been applied.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"GetOffersResponse": {
"id": "GetOffersResponse",
"properties": {
"products": {
"description": "The returned list of products.",
"items": {
"$ref": "Product"
},
"type": "array"
}
},
"type": "object"
},
"GetOrderDealsResponse": {
"id": "GetOrderDealsResponse",
"properties": {
"deals": {
"description": "List of deals for the proposal",
"items": {
"$ref": "MarketplaceDeal"
},
"type": "array"
}
},
"type": "object"
},
"GetOrderNotesResponse": {
"id": "GetOrderNotesResponse",
"properties": {
"notes": {
"description": "The list of matching notes. The notes for a proposal are ordered from oldest to newest. If the notes span multiple proposals, they will be grouped by proposal, with the notes for the most recently modified proposal appearing first.",
"items": {
"$ref": "MarketplaceNote"
},
"type": "array"
}
},
"type": "object"
},
"GetOrdersResponse": {
"id": "GetOrdersResponse",
"properties": {
"proposals": {
"description": "The list of matching proposals.",
"items": {
"$ref": "Proposal"
},
"type": "array"
}
},
"type": "object"
},
"GetPublisherProfilesByAccountIdResponse": {
"id": "GetPublisherProfilesByAccountIdResponse",
"properties": {
"profiles": {
"description": "Profiles for the requested publisher",
"items": {
"$ref": "PublisherProfileApiProto"
},
"type": "array"
}
},
"type": "object"
},
"MarketplaceDeal": {
"description": "A proposal can contain multiple deals. A deal contains the terms and targeting information that is used for serving.",
"id": "MarketplaceDeal",
"properties": {
"buyerPrivateData": {
"$ref": "PrivateData",
"description": "Buyer private data (hidden from seller)."
},
"creationTimeMs": {
"description": "The time (ms since epoch) of the deal creation. (readonly)",
"format": "int64",
"type": "string"
},
"creativePreApprovalPolicy": {
"description": "Specifies the creative pre-approval policy (buyer-readonly)",
"type": "string"
},
"creativeSafeFrameCompatibility": {
"description": "Specifies whether the creative is safeFrame compatible (buyer-readonly)",
"type": "string"
},
"dealId": {
"description": "A unique deal-id for the deal (readonly).",
"type": "string"
},
"dealServingMetadata": {
"$ref": "DealServingMetadata",
"description": "Metadata about the serving status of this deal (readonly, writes via custom actions)"
},
"deliveryControl": {
"$ref": "DeliveryControl",
"description": "The set of fields around delivery control that are interesting for a buyer to see but are non-negotiable. These are set by the publisher. This message is assigned an id of 100 since some day we would want to model this as a protobuf extension."
},
"externalDealId": {
"description": "The external deal id assigned to this deal once the deal is finalized. This is the deal-id that shows up in serving/reporting etc. (readonly)",
"type": "string"
},
"flightEndTimeMs": {
"description": "Proposed flight end time of the deal (ms since epoch) This will generally be stored in a granularity of a second. (updatable)",
"format": "int64",
"type": "string"
},
"flightStartTimeMs": {
"description": "Proposed flight start time of the deal (ms since epoch) This will generally be stored in a granularity of a second. (updatable)",
"format": "int64",
"type": "string"
},
"inventoryDescription": {
"description": "Description for the deal terms. (buyer-readonly)",
"type": "string"
},
"isRfpTemplate": {
"description": "Indicates whether the current deal is a RFP template. RFP template is created by buyer and not based on seller created products.",
"type": "boolean"
},
"isSetupComplete": {
"description": "True, if the buyside inventory setup is complete for this deal. (readonly, except via OrderSetupCompleted action)",
"type": "boolean"
},
"kind": {
"default": "adexchangebuyer#marketplaceDeal",
"description": "Identifies what kind of resource this is. Value: the fixed string \"adexchangebuyer#marketplaceDeal\".",
"type": "string"
},
"lastUpdateTimeMs": {
"description": "The time (ms since epoch) when the deal was last updated. (readonly)",
"format": "int64",
"type": "string"
},
"makegoodRequestedReason": {
"type": "string"
},
"name": {
"description": "The name of the deal. (updatable)",
"type": "string"
},
"productId": {
"description": "The product-id from which this deal was created. (readonly, except on create)",
"type": "string"
},
"productRevisionNumber": {
"description": "The revision number of the product that the deal was created from (readonly, except on create)",
"format": "int64",
"type": "string"
},
"programmaticCreativeSource": {
"description": "Specifies the creative source for programmatic deals, PUBLISHER means creative is provided by seller and ADVERTISR means creative is provided by buyer. (buyer-readonly)",
"type": "string"
},
"proposalId": {
"type": "string"
},
"sellerContacts": {
"description": "Optional Seller contact information for the deal (buyer-readonly)",
"items": {
"$ref": "ContactInformation"
},
"type": "array"
},
"sharedTargetings": {
"description": "The shared targeting visible to buyers and sellers. Each shared targeting entity is AND'd together. (updatable)",
"items": {
"$ref": "SharedTargeting"
},
"type": "array"
},
"syndicationProduct": {
"description": "The syndication product associated with the deal. (readonly, except on create)",
"type": "string"
},
"terms": {
"$ref": "DealTerms",
"description": "The negotiable terms of the deal. (updatable)"
},
"webPropertyCode": {
"type": "string"
}
},
"type": "object"
},
"MarketplaceDealParty": {
"id": "MarketplaceDealParty",
"properties": {
"buyer": {
"$ref": "Buyer",
"description": "The buyer/seller associated with the deal. One of buyer/seller is specified for a deal-party."
},
"seller": {
"$ref": "Seller",
"description": "The buyer/seller associated with the deal. One of buyer/seller is specified for a deal party."
}
},
"type": "object"
},
"MarketplaceLabel": {
"id": "MarketplaceLabel",
"properties": {
"accountId": {
"description": "The accountId of the party that created the label.",
"type": "string"
},
"createTimeMs": {
"description": "The creation time (in ms since epoch) for the label.",
"format": "int64",
"type": "string"
},
"deprecatedMarketplaceDealParty": {
"$ref": "MarketplaceDealParty",
"description": "Information about the party that created the label."
},
"label": {
"description": "The label to use.",
"type": "string"
}
},
"type": "object"
},
"MarketplaceNote": {
"description": "A proposal is associated with a bunch of notes which may optionally be associated with a deal and/or revision number.",
"id": "MarketplaceNote",
"properties": {
"creatorRole": {
"description": "The role of the person (buyer/seller) creating the note. (readonly)",
"type": "string"
},
"dealId": {
"description": "Notes can optionally be associated with a deal. (readonly, except on create)",
"type": "string"
},
"kind": {
"default": "adexchangebuyer#marketplaceNote",
"description": "Identifies what kind of resource this is. Value: the fixed string \"adexchangebuyer#marketplaceNote\".",
"type": "string"
},
"note": {
"description": "The actual note to attach. (readonly, except on create)",
"type": "string"
},
"noteId": {
"description": "The unique id for the note. (readonly)",
"type": "string"
},
"proposalId": {
"description": "The proposalId that a note is attached to. (readonly)",
"type": "string"
},
"proposalRevisionNumber": {
"description": "If the note is associated with a proposal revision number, then store that here. (readonly, except on create)",
"format": "int64",
"type": "string"
},
"timestampMs": {
"description": "The timestamp (ms since epoch) that this note was created. (readonly)",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"MobileApplication": {
"id": "MobileApplication",
"properties": {
"appStore": {
"type": "string"
},
"externalAppId": {
"type": "string"
}
},
"type": "object"
},
"PerformanceReport": {
"description": "The configuration data for an Ad Exchange performance report list.",
"id": "PerformanceReport",
"properties": {
"bidRate": {
"description": "The number of bid responses with an ad.",
"format": "double",
"type": "number"
},
"bidRequestRate": {
"description": "The number of bid requests sent to your bidder.",
"format": "double",
"type": "number"
},
"calloutStatusRate": {
"description": "Rate of various prefiltering statuses per match. Please refer to the callout-status-codes.txt file for different statuses.",
"items": {
"type": "any"
},
"type": "array"
},
"cookieMatcherStatusRate": {
"description": "Average QPS for cookie matcher operations.",
"items": {
"type": "any"
},
"type": "array"
},
"creativeStatusRate": {
"description": "Rate of ads with a given status. Please refer to the creative-status-codes.txt file for different statuses.",
"items": {
"type": "any"
},
"type": "array"
},
"filteredBidRate": {
"description": "The number of bid responses that were filtered due to a policy violation or other errors.",
"format": "double",
"type": "number"
},
"hostedMatchStatusRate": {
"description": "Average QPS for hosted match operations.",
"items": {
"type": "any"
},
"type": "array"
},
"inventoryMatchRate": {
"description": "The number of potential queries based on your pretargeting settings.",
"format": "double",
"type": "number"
},
"kind": {
"default": "adexchangebuyer#performanceReport",
"description": "Resource type.",
"type": "string"
},
"latency50thPercentile": {
"description": "The 50th percentile round trip latency(ms) as perceived from Google servers for the duration period covered by the report.",
"format": "double",
"type": "number"
},
"latency85thPercentile": {
"description": "The 85th percentile round trip latency(ms) as perceived from Google servers for the duration period covered by the report.",
"format": "double",
"type": "number"
},
"latency95thPercentile": {
"description": "The 95th percentile round trip latency(ms) as perceived from Google servers for the duration period covered by the report.",
"format": "double",
"type": "number"
},
"noQuotaInRegion": {
"description": "Rate of various quota account statuses per quota check.",
"format": "double",
"type": "number"
},
"outOfQuota": {
"description": "Rate of various quota account statuses per quota check.",
"format": "double",
"type": "number"
},
"pixelMatchRequests": {
"description": "Average QPS for pixel match requests from clients.",
"format": "double",
"type": "number"
},
"pixelMatchResponses": {
"description": "Average QPS for pixel match responses from clients.",
"format": "double",
"type": "number"
},
"quotaConfiguredLimit": {
"description": "The configured quota limits for this account.",
"format": "double",
"type": "number"
},
"quotaThrottledLimit": {
"description": "The throttled quota limits for this account.",
"format": "double",
"type": "number"
},
"region": {
"description": "The trading location of this data.",
"type": "string"
},
"successfulRequestRate": {
"description": "The number of properly formed bid responses received by our servers within the deadline.",
"format": "double",
"type": "number"
},
"timestamp": {
"description": "The unix timestamp of the starting time of this performance data.",
"format": "int64",
"type": "string"
},
"unsuccessfulRequestRate": {
"description": "The number of bid responses that were unsuccessful due to timeouts, incorrect formatting, etc.",
"format": "double",
"type": "number"
}
},
"type": "object"
},
"PerformanceReportList": {
"description": "The configuration data for an Ad Exchange performance report list.",
"id": "PerformanceReportList",
"properties": {
"kind": {
"default": "adexchangebuyer#performanceReportList",
"description": "Resource type.",
"type": "string"
},
"performanceReport": {
"description": "A list of performance reports relevant for the account.",
"items": {
"$ref": "PerformanceReport"
},
"type": "array"
}
},
"type": "object"
},
"PretargetingConfig": {
"id": "PretargetingConfig",
"properties": {
"billingId": {
"description": "The id for billing purposes, provided for reference. Leave this field blank for insert requests; the id will be generated automatically.",
"format": "int64",
"type": "string"
},
"configId": {
"description": "The config id; generated automatically. Leave this field blank for insert requests.",
"format": "int64",
"type": "string"
},
"configName": {
"description": "The name of the config. Must be unique. Required for all requests.",
"type": "string"
},
"creativeType": {
"description": "List must contain exactly one of PRETARGETING_CREATIVE_TYPE_HTML or PRETARGETING_CREATIVE_TYPE_VIDEO.",
"items": {
"type": "string"
},
"type": "array"
},
"dimensions": {
"description": "Requests which allow one of these (width, height) pairs will match. All pairs must be supported ad dimensions.",
"items": {
"properties": {
"height": {
"description": "Height in pixels.",
"format": "int64",
"type": "string"
},
"width": {
"description": "Width in pixels.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"excludedContentLabels": {
"description": "Requests with any of these content labels will not match. Values are from content-labels.txt in the downloadable files section.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"excludedGeoCriteriaIds": {
"description": "Requests containing any of these geo criteria ids will not match.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"excludedPlacements": {
"description": "Requests containing any of these placements will not match.",
"items": {
"properties": {
"token": {
"description": "The value of the placement. Interpretation depends on the placement type, e.g. URL for a site placement, channel name for a channel placement, app id for a mobile app placement.",
"type": "string"
},
"type": {
"description": "The type of the placement.",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"excludedUserLists": {
"description": "Requests containing any of these users list ids will not match.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"excludedVerticals": {
"description": "Requests containing any of these vertical ids will not match. Values are from the publisher-verticals.txt file in the downloadable files section.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"geoCriteriaIds": {
"description": "Requests containing any of these geo criteria ids will match.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"isActive": {
"description": "Whether this config is active. Required for all requests.",
"type": "boolean"
},
"kind": {
"default": "adexchangebuyer#pretargetingConfig",
"description": "The kind of the resource, i.e. \"adexchangebuyer#pretargetingConfig\".",
"type": "string"
},
"languages": {
"description": "Request containing any of these language codes will match.",
"items": {
"type": "string"
},
"type": "array"
},
"maximumQps": {
"description": "The maximum QPS allocated to this pretargeting configuration, used for pretargeting-level QPS limits. By default, this is not set, which indicates that there is no QPS limit at the configuration level (a global or account-level limit may still be imposed).",
"format": "int64",
"type": "string"
},
"minimumViewabilityDecile": {
"description": "Requests where the predicted viewability is below the specified decile will not match. E.g. if the buyer sets this value to 5, requests from slots where the predicted viewability is below 50% will not match. If the predicted viewability is unknown this field will be ignored.",
"format": "int32",
"type": "integer"
},
"mobileCarriers": {
"description": "Requests containing any of these mobile carrier ids will match. Values are from mobile-carriers.csv in the downloadable files section.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"mobileDevices": {
"description": "Requests containing any of these mobile device ids will match. Values are from mobile-devices.csv in the downloadable files section.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"mobileOperatingSystemVersions": {
"description": "Requests containing any of these mobile operating system version ids will match. Values are from mobile-os.csv in the downloadable files section.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"placements": {
"description": "Requests containing any of these placements will match.",
"items": {
"properties": {
"token": {
"description": "The value of the placement. Interpretation depends on the placement type, e.g. URL for a site placement, channel name for a channel placement, app id for a mobile app placement.",
"type": "string"
},
"type": {
"description": "The type of the placement.",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"platforms": {
"description": "Requests matching any of these platforms will match. Possible values are PRETARGETING_PLATFORM_MOBILE, PRETARGETING_PLATFORM_DESKTOP, and PRETARGETING_PLATFORM_TABLET.",
"items": {
"type": "string"
},
"type": "array"
},
"supportedCreativeAttributes": {
"description": "Creative attributes should be declared here if all creatives corresponding to this pretargeting configuration have that creative attribute. Values are from pretargetable-creative-attributes.txt in the downloadable files section.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"userIdentifierDataRequired": {
"description": "Requests containing the specified type of user data will match. Possible values are HOSTED_MATCH_DATA, which means the request is cookie-targetable and has a match in the buyer's hosted match table, and COOKIE_OR_IDFA, which means the request has either a targetable cookie or an iOS IDFA.",
"items": {
"type": "string"
},
"type": "array"
},
"userLists": {
"description": "Requests containing any of these user list ids will match.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"vendorTypes": {
"description": "Requests that allow any of these vendor ids will match. Values are from vendors.txt in the downloadable files section.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"verticals": {
"description": "Requests containing any of these vertical ids will match.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"videoPlayerSizes": {
"description": "Video requests satisfying any of these player size constraints will match.",
"items": {
"properties": {
"aspectRatio": {
"description": "The type of aspect ratio. Leave this field blank to match all aspect ratios.",
"type": "string"
},
"minHeight": {
"description": "The minimum player height in pixels. Leave this field blank to match any player height.",
"format": "int64",
"type": "string"
},
"minWidth": {
"description": "The minimum player width in pixels. Leave this field blank to match any player width.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"PretargetingConfigList": {
"id": "PretargetingConfigList",
"properties": {
"items": {
"description": "A list of pretargeting configs",
"items": {
"$ref": "PretargetingConfig"
},
"type": "array"
},
"kind": {
"default": "adexchangebuyer#pretargetingConfigList",
"description": "Resource type.",
"type": "string"
}
},
"type": "object"
},
"Price": {
"id": "Price",
"properties": {
"amountMicros": {
"description": "The price value in micros.",
"format": "double",
"type": "number"
},
"currencyCode": {
"description": "The currency code for the price.",
"type": "string"
},
"expectedCpmMicros": {
"description": "In case of CPD deals, the expected CPM in micros.",
"format": "double",
"type": "number"
},
"pricingType": {
"description": "The pricing type for the deal/product.",
"type": "string"
}
},
"type": "object"
},
"PricePerBuyer": {
"description": "Used to specify pricing rules for buyers. Each PricePerBuyer in a product can become [0,1] deals. To check if there is a PricePerBuyer for a particular buyer we look for the most specific matching rule - we first look for a rule matching the buyer and otherwise look for a matching rule where no buyer is set.",
"id": "PricePerBuyer",
"properties": {
"auctionTier": {
"description": "Optional access type for this buyer.",
"type": "string"
},
"billedBuyer": {
"$ref": "Buyer",
"description": "Reference to the buyer that will get billed."
},
"buyer": {
"$ref": "Buyer",
"description": "The buyer who will pay this price. If unset, all buyers can pay this price (if the advertisers match, and there's no more specific rule matching the buyer)."
},
"price": {
"$ref": "Price",
"description": "The specified price"
}
},
"type": "object"
},
"PrivateData": {
"id": "PrivateData",
"properties": {
"referenceId": {
"type": "string"
},
"referencePayload": {
"format": "byte",
"type": "string"
}
},
"type": "object"
},
"Product": {
"description": "A product is segment of inventory that a seller wishes to sell. It is associated with certain terms and targeting information which helps buyer know more about the inventory. Each field in a product can have one of the following setting:\n\n(readonly) - It is an error to try and set this field. (buyer-readonly) - Only the seller can set this field. (seller-readonly) - Only the buyer can set this field. (updatable) - The field is updatable at all times by either buyer or the seller.",
"id": "Product",
"properties": {
"billedBuyer": {
"$ref": "Buyer",
"description": "The billed buyer corresponding to the buyer that created the offer. (readonly, except on create)"
},
"buyer": {
"$ref": "Buyer",
"description": "The buyer that created the offer if this is a buyer initiated offer (readonly, except on create)"
},
"creationTimeMs": {
"description": "Creation time in ms. since epoch (readonly)",
"format": "int64",
"type": "string"
},
"creatorContacts": {
"description": "Optional contact information for the creator of this product. (buyer-readonly)",
"items": {
"$ref": "ContactInformation"
},
"type": "array"
},
"creatorRole": {
"description": "The role that created the offer. Set to BUYER for buyer initiated offers.",
"type": "string"
},
"deliveryControl": {
"$ref": "DeliveryControl",
"description": "The set of fields around delivery control that are interesting for a buyer to see but are non-negotiable. These are set by the publisher. This message is assigned an id of 100 since some day we would want to model this as a protobuf extension."
},
"flightEndTimeMs": {
"description": "The proposed end time for the deal (ms since epoch) (buyer-readonly)",
"format": "int64",
"type": "string"
},
"flightStartTimeMs": {
"description": "Inventory availability dates. (times are in ms since epoch) The granularity is generally in the order of seconds. (buyer-readonly)",
"format": "int64",
"type": "string"
},
"hasCreatorSignedOff": {
"description": "If the creator has already signed off on the product, then the buyer can finalize the deal by accepting the product as is. When copying to a proposal, if any of the terms are changed, then auto_finalize is automatically set to false.",
"type": "boolean"
},
"inventorySource": {
"description": "What exchange will provide this inventory (readonly, except on create).",
"type": "string"
},
"kind": {
"default": "adexchangebuyer#product",
"description": "Identifies what kind of resource this is. Value: the fixed string \"adexchangebuyer#product\".",
"type": "string"
},
"labels": {
"description": "Optional List of labels for the product (optional, buyer-readonly).",
"items": {
"$ref": "MarketplaceLabel"
},
"type": "array"
},
"lastUpdateTimeMs": {
"description": "Time of last update in ms. since epoch (readonly)",
"format": "int64",
"type": "string"
},
"legacyOfferId": {
"description": "Optional legacy offer id if this offer is a preferred deal offer.",
"type": "string"
},
"marketplacePublisherProfileId": {
"description": "Marketplace publisher profile Id. This Id differs from the regular publisher_profile_id in that 1. This is a new id, the old Id will be deprecated in 2017. 2. This id uniquely identifies a publisher profile by itself.",
"type": "string"
},
"name": {
"description": "The name for this product as set by the seller. (buyer-readonly)",
"type": "string"
},
"privateAuctionId": {
"description": "Optional private auction id if this offer is a private auction offer.",
"type": "string"
},
"productId": {
"description": "The unique id for the product (readonly)",
"type": "string"
},
"publisherProfileId": {
"description": "Id of the publisher profile for a given seller. A (seller.account_id, publisher_profile_id) pair uniquely identifies a publisher profile. Buyers can call the PublisherProfiles::List endpoint to get a list of publisher profiles for a given seller.",
"type": "string"
},
"publisherProvidedForecast": {
"$ref": "PublisherProvidedForecast",
"description": "Publisher self-provided forecast information."
},
"revisionNumber": {
"description": "The revision number of the product. (readonly)",
"format": "int64",
"type": "string"
},
"seller": {
"$ref": "Seller",
"description": "Information about the seller that created this product (readonly, except on create)"
},
"sharedTargetings": {
"description": "Targeting that is shared between the buyer and the seller. Each targeting criteria has a specified key and for each key there is a list of inclusion value or exclusion values. (buyer-readonly)",
"items": {
"$ref": "SharedTargeting"
},
"type": "array"
},
"state": {
"description": "The state of the product. (buyer-readonly)",
"type": "string"
},
"syndicationProduct": {
"description": "The syndication product associated with the deal. (readonly, except on create)",
"type": "string"
},
"terms": {
"$ref": "DealTerms",
"description": "The negotiable terms of the deal (buyer-readonly)"
},
"webPropertyCode": {
"description": "The web property code for the seller. This field is meant to be copied over as is when creating deals.",
"type": "string"
}
},
"type": "object"
},
"Proposal": {
"description": "Represents a proposal in the marketplace. A proposal is the unit of negotiation between a seller and a buyer and contains deals which are served. Each field in a proposal can have one of the following setting:\n\n(readonly) - It is an error to try and set this field. (buyer-readonly) - Only the seller can set this field. (seller-readonly) - Only the buyer can set this field. (updatable) - The field is updatable at all times by either buyer or the seller.",
"id": "Proposal",
"properties": {
"billedBuyer": {
"$ref": "Buyer",
"description": "Reference to the buyer that will get billed for this proposal. (readonly)"
},
"buyer": {
"$ref": "Buyer",
"description": "Reference to the buyer on the proposal. (readonly, except on create)"
},
"buyerContacts": {
"description": "Optional contact information of the buyer. (seller-readonly)",
"items": {
"$ref": "ContactInformation"
},
"type": "array"
},
"buyerPrivateData": {
"$ref": "PrivateData",
"description": "Private data for buyer. (hidden from seller)."
},
"dbmAdvertiserIds": {
"description": "IDs of DBM advertisers permission to this proposal.",
"items": {
"type": "string"
},
"type": "array"
},
"hasBuyerSignedOff": {
"description": "When an proposal is in an accepted state, indicates whether the buyer has signed off. Once both sides have signed off on a deal, the proposal can be finalized by the seller. (seller-readonly)",
"type": "boolean"
},
"hasSellerSignedOff": {
"description": "When an proposal is in an accepted state, indicates whether the buyer has signed off Once both sides have signed off on a deal, the proposal can be finalized by the seller. (buyer-readonly)",
"type": "boolean"
},
"inventorySource": {
"description": "What exchange will provide this inventory (readonly, except on create).",
"type": "string"
},
"isRenegotiating": {
"description": "True if the proposal is being renegotiated (readonly).",
"type": "boolean"
},
"isSetupComplete": {
"description": "True, if the buyside inventory setup is complete for this proposal. (readonly, except via OrderSetupCompleted action) Deprecated in favor of deal level setup complete flag.",
"type": "boolean"
},
"kind": {
"default": "adexchangebuyer#proposal",
"description": "Identifies what kind of resource this is. Value: the fixed string \"adexchangebuyer#proposal\".",
"type": "string"
},
"labels": {
"description": "List of labels associated with the proposal. (readonly)",
"items": {
"$ref": "MarketplaceLabel"
},
"type": "array"
},
"lastUpdaterOrCommentorRole": {
"description": "The role of the last user that either updated the proposal or left a comment. (readonly)",
"type": "string"
},
"name": {
"description": "The name for the proposal (updatable)",
"type": "string"
},
"negotiationId": {
"description": "Optional negotiation id if this proposal is a preferred deal proposal.",
"type": "string"
},
"originatorRole": {
"description": "Indicates whether the buyer/seller created the proposal.(readonly)",
"type": "string"
},
"privateAuctionId": {
"description": "Optional private auction id if this proposal is a private auction proposal.",
"type": "string"
},
"proposalId": {
"description": "The unique id of the proposal. (readonly).",
"type": "string"
},
"proposalState": {
"description": "The current state of the proposal. (readonly)",
"type": "string"
},
"revisionNumber": {
"description": "The revision number for the proposal (readonly).",
"format": "int64",
"type": "string"
},
"revisionTimeMs": {
"description": "The time (ms since epoch) when the proposal was last revised (readonly).",
"format": "int64",
"type": "string"
},
"seller": {
"$ref": "Seller",
"description": "Reference to the seller on the proposal. (readonly, except on create)"
},
"sellerContacts": {
"description": "Optional contact information of the seller (buyer-readonly).",
"items": {
"$ref": "ContactInformation"
},
"type": "array"
}
},
"type": "object"
},
"PublisherProfileApiProto": {
"id": "PublisherProfileApiProto",
"properties": {
"audience": {
"description": "Publisher provided info on its audience.",
"type": "string"
},
"buyerPitchStatement": {
"description": "A pitch statement for the buyer",
"type": "string"
},
"directContact": {
"description": "Direct contact for the publisher profile.",
"type": "string"
},
"exchange": {
"description": "Exchange where this publisher profile is from. E.g. AdX, Rubicon etc...",
"type": "string"
},
"forecastInventory": {
"type": "string"
},
"googlePlusLink": {
"description": "Link to publisher's Google+ page.",
"type": "string"
},
"isParent": {
"description": "True, if this is the parent profile, which represents all domains owned by the publisher.",
"type": "boolean"
},
"isPublished": {
"description": "True, if this profile is published. Deprecated for state.",
"type": "boolean"
},
"kind": {
"default": "adexchangebuyer#publisherProfileApiProto",
"description": "Identifies what kind of resource this is. Value: the fixed string \"adexchangebuyer#publisherProfileApiProto\".",
"type": "string"
},
"logoUrl": {
"description": "The url to the logo for the publisher.",
"type": "string"
},
"mediaKitLink": {
"description": "The url for additional marketing and sales materials.",
"type": "string"
},
"name": {
"type": "string"
},
"overview": {
"description": "Publisher provided overview.",
"type": "string"
},
"profileId": {
"description": "The pair of (seller.account_id, profile_id) uniquely identifies a publisher profile for a given publisher.",
"format": "int32",
"type": "integer"
},
"programmaticContact": {
"description": "Programmatic contact for the publisher profile.",
"type": "string"
},
"publisherAppIds": {
"description": "The list of app IDs represented in this publisher profile. Empty if this is a parent profile. Deprecated in favor of publisher_app.",
"items": {
"format": "int64",
"type": "string"
},
"type": "array"
},
"publisherApps": {
"description": "The list of apps represented in this publisher profile. Empty if this is a parent profile.",
"items": {
"$ref": "MobileApplication"
},
"type": "array"
},
"publisherDomains": {
"description": "The list of domains represented in this publisher profile. Empty if this is a parent profile.",
"items": {
"type": "string"
},
"type": "array"
},
"publisherProfileId": {
"description": "Unique Id for publisher profile.",
"type": "string"
},
"publisherProvidedForecast": {
"$ref": "PublisherProvidedForecast",
"description": "Publisher provided forecasting information."
},
"rateCardInfoLink": {
"description": "Link to publisher rate card",
"type": "string"
},
"samplePageLink": {
"description": "Link for a sample content page.",
"type": "string"
},
"seller": {
"$ref": "Seller",
"description": "Seller of the publisher profile."
},
"state": {
"description": "State of the publisher profile.",
"type": "string"
},
"topHeadlines": {
"description": "Publisher provided key metrics and rankings.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"PublisherProvidedForecast": {
"description": "This message carries publisher provided forecasting information.",
"id": "PublisherProvidedForecast",
"properties": {
"dimensions": {
"description": "Publisher provided dimensions. E.g. geo, sizes etc...",
"items": {
"$ref": "Dimension"
},
"type": "array"
},
"weeklyImpressions": {
"description": "Publisher provided weekly impressions.",
"format": "int64",
"type": "string"
},
"weeklyUniques": {
"description": "Publisher provided weekly uniques.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"Seller": {
"id": "Seller",
"properties": {
"accountId": {
"description": "The unique id for the seller. The seller fills in this field. The seller account id is then available to buyer in the product.",
"type": "string"
},
"subAccountId": {
"description": "Optional sub-account id for the seller.",
"type": "string"
}
},
"type": "object"
},
"SharedTargeting": {
"id": "SharedTargeting",
"properties": {
"exclusions": {
"description": "The list of values to exclude from targeting. Each value is AND'd together.",
"items": {
"$ref": "TargetingValue"
},
"type": "array"
},
"inclusions": {
"description": "The list of value to include as part of the targeting. Each value is OR'd together.",
"items": {
"$ref": "TargetingValue"
},
"type": "array"
},
"key": {
"description": "The key representing the shared targeting criterion.",
"type": "string"
}
},
"type": "object"
},
"TargetingValue": {
"id": "TargetingValue",
"properties": {
"creativeSizeValue": {
"$ref": "TargetingValueCreativeSize",
"description": "The creative size value to exclude/include."
},
"dayPartTargetingValue": {
"$ref": "TargetingValueDayPartTargeting",
"description": "The daypart targeting to include / exclude. Filled in when the key is GOOG_DAYPART_TARGETING."
},
"demogAgeCriteriaValue": {
"$ref": "TargetingValueDemogAgeCriteria"
},
"demogGenderCriteriaValue": {
"$ref": "TargetingValueDemogGenderCriteria"
},
"longValue": {
"description": "The long value to exclude/include.",
"format": "int64",
"type": "string"
},
"requestPlatformTargetingValue": {
"$ref": "TargetingValueRequestPlatformTargeting"
},
"stringValue": {
"description": "The string value to exclude/include.",
"type": "string"
}
},
"type": "object"
},
"TargetingValueCreativeSize": {
"description": "Next Id: 7",
"id": "TargetingValueCreativeSize",
"properties": {
"allowedFormats": {
"description": "The formats allowed by the publisher.",
"items": {
"type": "string"
},
"type": "array"
},
"companionSizes": {
"description": "For video size type, the list of companion sizes.",
"items": {
"$ref": "TargetingValueSize"
},
"type": "array"
},
"creativeSizeType": {
"description": "The Creative size type.",
"type": "string"
},
"nativeTemplate": {
"description": "The native template for native ad.",
"type": "string"
},
"size": {
"$ref": "TargetingValueSize",
"description": "For regular or video creative size type, specifies the size of the creative."
},
"skippableAdType": {
"description": "The skippable ad type for video size.",
"type": "string"
}
},
"type": "object"
},
"TargetingValueDayPartTargeting": {
"id": "TargetingValueDayPartTargeting",
"properties": {
"dayParts": {
"items": {
"$ref": "TargetingValueDayPartTargetingDayPart"
},
"type": "array"
},
"timeZoneType": {
"type": "string"
}
},
"type": "object"
},
"TargetingValueDayPartTargetingDayPart": {
"id": "TargetingValueDayPartTargetingDayPart",
"properties": {
"dayOfWeek": {
"type": "string"
},
"endHour": {
"format": "int32",
"type": "integer"
},
"endMinute": {
"format": "int32",
"type": "integer"
},
"startHour": {
"format": "int32",
"type": "integer"
},
"startMinute": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"TargetingValueDemogAgeCriteria": {
"id": "TargetingValueDemogAgeCriteria",
"properties": {
"demogAgeCriteriaIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"TargetingValueDemogGenderCriteria": {
"id": "TargetingValueDemogGenderCriteria",
"properties": {
"demogGenderCriteriaIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"TargetingValueRequestPlatformTargeting": {
"id": "TargetingValueRequestPlatformTargeting",
"properties": {
"requestPlatforms": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"TargetingValueSize": {
"id": "TargetingValueSize",
"properties": {
"height": {
"description": "The height of the creative.",
"format": "int32",
"type": "integer"
},
"width": {
"description": "The width of the creative.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"UpdatePrivateAuctionProposalRequest": {
"id": "UpdatePrivateAuctionProposalRequest",
"properties": {
"externalDealId": {
"description": "The externalDealId of the deal to be updated.",
"type": "string"
},
"note": {
"$ref": "MarketplaceNote",
"description": "Optional note to be added."
},
"proposalRevisionNumber": {
"description": "The current revision number of the proposal to be updated.",
"format": "int64",
"type": "string"
},
"updateAction": {
"description": "The proposed action on the private auction proposal.",
"type": "string"
}
},
"type": "object"
}
},
"servicePath": "adexchangebuyer/v1.4/",
"title": "Ad Exchange Buyer API",
"version": "v1.4"
} |