Class: Google::Ads::AdManager::V1::Report

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/ads/admanager/v1/report_messages.rb

Overview

The Report resource.

Defined Under Namespace

Modules: Dimension, Metric, MetricValueType, ReportType, TimePeriodColumn, TimeZoneSource, Visibility Classes: DataTable, DateRange, Field, Filter, Flag, Slice, Sort, Value

Instance Attribute Summary collapse

Instance Attribute Details

#create_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The instant this report was created.

Returns:



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
# File 'proto_docs/google/ads/admanager/v1/report_messages.rb', line 55

class Report
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a single value in a report.
  # @!attribute [rw] int_value
  #   @return [::Integer]
  #     For integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] double_value
  #   @return [::Float]
  #     For double values.
  #
  #     Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_value
  #   @return [::String]
  #     For string values.
  #
  #     Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bool_value
  #   @return [::Boolean]
  #     For boolean values.
  #
  #     Note: The following fields are mutually exclusive: `bool_value`, `int_value`, `double_value`, `string_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] int_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::IntList]
  #     For lists of integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::StringList]
  #     For lists of string values.
  #
  #     Note: The following fields are mutually exclusive: `string_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bytes_value
  #   @return [::String]
  #     For bytes values.
  #
  #     Note: The following fields are mutually exclusive: `bytes_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Value
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A list of integer values.
    # @!attribute [rw] values
    #   @return [::Array<::Integer>]
    #     The values
    class IntList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of string values.
    # @!attribute [rw] values
    #   @return [::Array<::String>]
    #     The values
    class StringList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Represents a sorting in a report.
  # @!attribute [rw] field
  #   @return [::Google::Ads::AdManager::V1::Report::Field]
  #     Required. A field (dimension or metric) to sort by.
  # @!attribute [rw] descending
  #   @return [::Boolean]
  #     Optional. The sort order. If true the sort will be descending.
  # @!attribute [rw] slice
  #   @return [::Google::Ads::AdManager::V1::Report::Slice]
  #     Optional. Use to sort on a specific slice of data.
  # @!attribute [rw] time_period_index
  #   @return [::Integer]
  #     Optional. When using time period columns, use this to sort on a specific
  #     column.
  # @!attribute [rw] metric_value_type
  #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
  #     Optional. Use to specify which metric value type to sort on. Defaults to
  #     PRIMARY.
  class Sort
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A table containing report data including dimension and metric values.
  class DataTable
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A row of report data.
    # @!attribute [rw] dimension_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     The order of the dimension values is the same as the order of the
    #     dimensions specified in the request.
    # @!attribute [rw] metric_value_groups
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::DataTable::MetricValueGroup>]
    #     The length of the metric_value_groups
    #     field will be equal to the length of the date_ranges field in the
    #     fetch response. The metric_value_groups field is
    #     ordered such that each index corresponds to the date_range at the same
    #     index. For example, given date_ranges [x, y], metric_value_groups will
    #     have a length of two. The first entry in metric_value_groups represents
    #     the metrics for date x and the second entry in metric_value_groups
    #     represents the metrics for date y.
    class Row
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Contains all metric values requested for a single date range and set of
    # column dimension values (returned in the columns field of the response).
    # The order of the metrics in each field corresponds to the order of the
    # metrics specified in the request.
    # @!attribute [rw] primary_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY MetricValueType.
    # @!attribute [rw] primary_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] comparison_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON MetricValueType.
    # @!attribute [rw] comparison_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] absolute_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the ABSOLUTE_CHANGE MetricValueType.
    # @!attribute [rw] relative_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the RELATIVE_CHANGE MetricValueType.
    # @!attribute [rw] flag_values
    #   @return [::Array<::Boolean>]
    #     If true, the flag's conditions are met. If false, the flag's
    #     conditions are not met. flag_values has the same length as
    #     flags and index i of flag_values represents the flag at index i
    #     of flags.
    class MetricValueGroup
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # A dimension or a metric in a report.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     The dimension this field represents.
  #
  #     Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] metric
  #   @return [::Google::Ads::AdManager::V1::Report::Metric]
  #     The metric this field represents.
  #
  #     Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Field
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Use to specify a slice of data.
  #
  # For example, in a report, to focus on just data from the US, specify
  # `COUNTRY_NAME` for dimension and value: `"United States"`.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     Required. The dimension to slice on.
  # @!attribute [rw] value
  #   @return [::Google::Ads::AdManager::V1::Report::Value]
  #     Required. The value of the dimension.
  class Slice
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A filter over one or more fields.
  # @!attribute [rw] field_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FieldFilter]
  #     A filter on a single field.
  #
  #     Note: The following fields are mutually exclusive: `field_filter`, `not_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] not_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter]
  #     A filter whose result is negated.
  #
  #     Note: The following fields are mutually exclusive: `not_filter`, `field_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] and_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are AND-ed.
  #
  #     Note: The following fields are mutually exclusive: `and_filter`, `field_filter`, `not_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] or_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are OR-ed.
  #
  #     Note: The following fields are mutually exclusive: `or_filter`, `field_filter`, `not_filter`, `and_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Filter
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A filter on a specific field.
    # @!attribute [rw] field
    #   @return [::Google::Ads::AdManager::V1::Report::Field]
    #     Required. The field to filter on.
    # @!attribute [rw] operation
    #   @return [::Google::Ads::AdManager::V1::Report::Filter::Operation]
    #     Required. The operation of this filter.
    # @!attribute [rw] values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Required. Values to filter to.
    # @!attribute [rw] slice
    #   @return [::Google::Ads::AdManager::V1::Report::Slice]
    #     Optional. Use to filter on a specific slice of data.
    # @!attribute [rw] time_period_index
    #   @return [::Integer]
    #     Optional. When using time period columns, use this to filter on a
    #     specific column.
    # @!attribute [rw] metric_value_type
    #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
    #     Optional. Use to specify which metric value type to filter on. Defaults
    #     to PRIMARY.
    class FieldFilter
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of filters.
    # @!attribute [rw] filters
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
    #     Required. A list of filters.
    class FilterList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Supported filter operations.
    module Operation
      # For scalar operands, checks if the operand is in the set of provided
      # filter values.
      #
      # For list operands, checks if any element in the operand is in the set
      # of provided filter values.
      #
      # Default value.
      IN = 0

      # For scalar operands, checks that the operand is not in the set of
      # provided filter values.
      #
      # For list operands, checks that none of the elements in the operand
      # is in the set of provided filter values.
      NOT_IN = 1

      # For scalar string operands, checks if the operand contains any of the
      # provided filter substrings.
      #
      # For string list operands, checks if any string in the operand contains
      # any of the provided filter substrings.
      CONTAINS = 2

      # For scalar string operands, checks that the operand contains none of
      # the provided filter substrings.
      #
      # For string list operands, checks that none of the strings in the
      # operand contain none of the provided filter substrings.
      NOT_CONTAINS = 3

      # Operand is less than the provided filter value.
      LESS_THAN = 4

      # Operand is less than or equal to provided filter value.
      LESS_THAN_EQUALS = 5

      # Operand is greater than provided filter value.
      GREATER_THAN = 6

      # Operand is greater than or equal to provided filter value.
      GREATER_THAN_EQUALS = 7

      # Operand is between provided filter values.
      BETWEEN = 8

      # Operand matches against a regex or set of regexes (one must match)
      MATCHES = 9

      # Operand negative matches against a regex or set of regexes (none must
      # match)
      NOT_MATCHES = 10
    end
  end

  # A flag for a report. Flags are used show if certain thresholds are met.
  # Result rows that match the filter will have the corresponding
  # [MetricValueGroup.flagValues][MetricValueGroup] index set to true.
  # For more information about flags see:
  # https://support.google.com/admanager/answer/15079975
  # @!attribute [rw] filters
  #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
  #     Required. Filters to apply for the flag.
  # @!attribute [rw] name
  #   @return [::String]
  #     Optional. Name of the flag.
  #     The flag names RED, YELLOW, GREEN, BLUE, PURPLE, and GREY correspond to
  #     the colored flags that appear in the UI. The UI will not display flags
  #     with other names, but they are available for use by API clients.
  class Flag
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A date range for a report.
  # @!attribute [rw] fixed
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::FixedDateRange]
  #     A fixed date range.
  #
  #     Note: The following fields are mutually exclusive: `fixed`, `relative`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] relative
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::RelativeDateRange]
  #     A relative date range.
  #
  #     Note: The following fields are mutually exclusive: `relative`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class DateRange
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A date range between two fixed dates (inclusive of end date).
    # @!attribute [rw] start_date
    #   @return [::Google::Type::Date]
    #     Required. The start date of this date range.
    # @!attribute [rw] end_date
    #   @return [::Google::Type::Date]
    #     Required. The end date (inclusive) of this date range.
    class FixedDateRange
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Options for relative date ranges.
    module RelativeDateRange
      # Default value. This value is unused.
      RELATIVE_DATE_RANGE_UNSPECIFIED = 0

      # The date the report is run.
      TODAY = 1

      # The date a day before the date that the report is run.
      YESTERDAY = 2

      # The full week in which this report is run. Could include dates in
      # the future.
      THIS_WEEK = 3

      # From the beginning of the calendar week (Monday to Sunday) in which the
      # up to and including the day the report is run.
      THIS_WEEK_TO_DATE = 29

      # The full month in which this report is run. Could include dates in
      # the future.
      THIS_MONTH = 4

      # From the beginning of the calendar month in which the report is run, to
      # up to and including the day the report is run.
      THIS_MONTH_TO_DATE = 26

      # The full quarter in which this report is run. Could include dates
      # in the future.
      THIS_QUARTER = 5

      # From the beginning of the calendar quarter in which the report is run,
      # up to and including the day the report is run.
      THIS_QUARTER_TO_DATE = 27

      # The full year in which this report is run. Could include dates in
      # the future.
      THIS_YEAR = 6

      # From the beginning of the calendar year in which the report is run, to
      # up to and including the day the report is run.
      THIS_YEAR_TO_DATE = 28

      # The entire previous calendar week, Monday to Sunday (inclusive),
      # preceding the calendar week the report is run.
      LAST_WEEK = 7

      # The entire previous calendar month preceding the calendar month the
      # report is run.
      LAST_MONTH = 8

      # The entire previous calendar quarter preceding the calendar quarter the
      # report is run.
      LAST_QUARTER = 9

      # The entire previous calendar year preceding the calendar year the
      # report is run.
      LAST_YEAR = 10

      # The 7 days preceding the day the report is run.
      LAST_7_DAYS = 11

      # The 30 days preceding the day the report is run.
      LAST_30_DAYS = 12

      # The 60 days preceding the day the report is run.
      LAST_60_DAYS = 13

      # The 90 days preceding the day the report is run.
      LAST_90_DAYS = 14

      # The 180 days preceding the day the report is run.
      LAST_180_DAYS = 15

      # The 360 days preceding the day the report is run.
      LAST_360_DAYS = 16

      # The 365 days preceding the day the report is run.
      LAST_365_DAYS = 17

      # The entire previous 3 calendar months preceding the calendar month the
      # report is run.
      LAST_3_MONTHS = 18

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_6_MONTHS = 19

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_12_MONTHS = 20

      # From 3 years before the report is run, to the day before the report is
      # run, inclusive.
      ALL_AVAILABLE = 21

      # Only valid when used in the comparison_date_range field. The complete
      # period preceding the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange of N days, this will
      # be a period of N days where the end date is the date preceding the
      # start date of the date_range.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame preceding the date_range. In the case
      # where the date_range does not capture the full period because a report
      # is run in the middle of that period, this will still be the full
      # preceding period. For example, if date_range is THIS_WEEK, but the
      # report is run on a Wednesday, THIS_WEEK will be Monday - Wednesday, but
      # PREVIOUS_PERIOD will be Monday - Sunday.
      PREVIOUS_PERIOD = 22

      # Only valid when used in the comparison_date_range field. The period
      # starting 1 year prior to the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange, this will be a date
      # range starting 1 year prior to the date_range start date and ending 1
      # year prior to the date_range end date.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame exactly 1 year prior to the date_range.
      # In the case where the date_range does not capture the full period
      # because a report is run in the middle of that period, this will still
      # be the full period 1 year prior. For example, if date range is
      # THIS_WEEK, but the report is run on a Wednesday, THIS_WEEK will be
      # Monday - Wednesday, but SAME_PERIOD_PREVIOUS_YEAR will be Monday -
      # Sunday.
      SAME_PERIOD_PREVIOUS_YEAR = 24
    end
  end

  # Valid time period columns.
  module TimePeriodColumn
    # Default value. Report will have no time period column.
    TIME_PERIOD_COLUMN_UNSPECIFIED = 0

    # A column for each date in the report.
    TIME_PERIOD_COLUMN_DATE = 1

    # A column for each week in the report.
    TIME_PERIOD_COLUMN_WEEK = 2

    # A column for each month in the report.
    TIME_PERIOD_COLUMN_MONTH = 3

    # A column for each quarter in the report.
    TIME_PERIOD_COLUMN_QUARTER = 4
  end

  # Reporting dimensions.
  module Dimension
    # Default value. This value is unused.
    DIMENSION_UNSPECIFIED = 0

    # The domain name of the advertiser.
    ADVERTISER_DOMAIN_NAME = 242

    # The ID used in an external system for advertiser identification
    ADVERTISER_EXTERNAL_ID = 228

    # The ID of an advertiser company assigned to an order
    ADVERTISER_ID = 131

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABELS = 230

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABEL_IDS = 229

    # The name of an advertiser company assigned to an order
    ADVERTISER_NAME = 132

    # The name of the contact associated with an advertiser company
    ADVERTISER_PRIMARY_CONTACT = 227

    # Shows an ENUM value describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION = 390

    # Shows a localized string describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION_NAME = 391

    # The code of the ad unit where the ad was requested.
    AD_UNIT_CODE = 64

    # The code of the first level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_1 = 65

    # The code of the tenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_10 = 74

    # The code of the eleventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_11 = 75

    # The code of the twelfth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_12 = 76

    # The code of the thirteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_13 = 77

    # The code of the fourteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_14 = 78

    # The code of the fifteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_15 = 79

    # The code of the sixteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_16 = 80

    # The code of the second level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_2 = 66

    # The code of the third level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_3 = 67

    # The code of the fourth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_4 = 68

    # The code of the fifth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_5 = 69

    # The code of the sixth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_6 = 70

    # The code of the seventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_7 = 71

    # The code of the eighth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_8 = 72

    # The code of the ninth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_9 = 73

    # The depth of the ad unit's hierarchy
    AD_UNIT_DEPTH = 101

    # The ID of the ad unit where the ad was requested.
    AD_UNIT_ID = 25

    # The full hierarchy of ad unit IDs where the ad was requested, from
    # root to leaf, excluding the root ad unit ID.
    AD_UNIT_ID_ALL_LEVEL = 27

    # The first level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_1 = 30

    # The tenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_10 = 48

    # The eleventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_11 = 50

    # The twelfth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_12 = 52

    # The thirteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_13 = 54

    # The fourteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_14 = 56

    # The fifteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_15 = 58

    # The sixteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_16 = 60

    # The second level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_2 = 32

    # The third level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_3 = 34

    # The fourth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_4 = 36

    # The fifth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_5 = 38

    # The sixth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_6 = 40

    # The seventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_7 = 42

    # The eighth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_8 = 44

    # The ninth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_9 = 46

    # The top-level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_TOP_LEVEL = 142

    # The name of the ad unit where the ad was requested.
    AD_UNIT_NAME = 26

    # The full hierarchy of ad unit names where the ad was requested, from
    # root to leaf, excluding the root ad unit name.
    AD_UNIT_NAME_ALL_LEVEL = 29

    # The first level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_1 = 31

    # The tenth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_10 = 49

    # The eleventh level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_11 = 51

    # The twelfth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_12 = 53

    # The thirteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_13 = 55

    # The fourteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_14 = 57

    # The fifteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_15 = 59

    # The sixteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_16 = 61

    # The second level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_2 = 33

    # The third level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_3 = 35

    # The fourth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_4 = 37

    # The fifth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_5 = 39

    # The sixth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_6 = 41

    # The seventh level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_7 = 43

    # The eighth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_8 = 45

    # The ninth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_9 = 47

    # The top-level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_TOP_LEVEL = 143

    # The reward amount of the ad unit where the ad was requested.
    AD_UNIT_REWARD_AMOUNT = 63

    # The reward type of the ad unit where the ad was requested.
    AD_UNIT_REWARD_TYPE = 62

    # The status of the ad unit
    AD_UNIT_STATUS = 206

    # The name of the status of the ad unit
    AD_UNIT_STATUS_NAME = 207

    # The app version.
    APP_VERSION = 392

    # The ID used in an external system for advertiser identification
    BACKFILL_ADVERTISER_EXTERNAL_ID = 349

    # The ID of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_ID = 346

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABELS = 351

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABEL_IDS = 350

    # The name of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_NAME = 347

    # The name of the contact associated with an advertiser company
    BACKFILL_ADVERTISER_PRIMARY_CONTACT = 348

    # Enum value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE = 378

    # Localized string value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE_NAME = 379

    # Represents the click-through URL of a Backfill creative
    BACKFILL_CREATIVE_CLICK_THROUGH_URL = 376

    # The ID of a Backfill creative
    BACKFILL_CREATIVE_ID = 370

    # Backfill creative name
    BACKFILL_CREATIVE_NAME = 371

    # Third party vendor name of a Backfill creative
    BACKFILL_CREATIVE_THIRD_PARTY_VENDOR = 377

    # Enum value of Backfill creative type
    BACKFILL_CREATIVE_TYPE = 374

    # Localized string name of Backfill creative type
    BACKFILL_CREATIVE_TYPE_NAME = 375

    # Whether a Backfill line item is archived.
    BACKFILL_LINE_ITEM_ARCHIVED = 278

    # Backfill line item comanion delivery option ENUM value.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION = 258

    # Localized Backfill line item comanion delivery option name.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 259

    # The computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS = 296

    # The localized name of the computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME = 297

    # The contracted units bought for the Backfill line item.
    BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY = 280

    # The cost per unit of the Backfill line item.
    BACKFILL_LINE_ITEM_COST_PER_UNIT = 272

    # Backfill line item cost type ENUM value.
    BACKFILL_LINE_ITEM_COST_TYPE = 264

    # Localized Backfill line item cost type name.
    BACKFILL_LINE_ITEM_COST_TYPE_NAME = 265

    # Represent the end date of a Backfill creative associated with a Backfill
    # line item
    BACKFILL_LINE_ITEM_CREATIVE_END_DATE = 381

    # The creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE = 290

    # The localized name of the creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 291

    # Represent the start date of a Backfill creative associated with a
    # Backfill line item
    BACKFILL_LINE_ITEM_CREATIVE_START_DATE = 380

    # The 3 letter currency code of the Backfill line item
    BACKFILL_LINE_ITEM_CURRENCY_CODE = 288

    # The progress made for the delivery of the Backfill line item.
    BACKFILL_LINE_ITEM_DELIVERY_INDICATOR = 274

    # The delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE = 292

    # The localized name of the delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 293

    # The discount of the BackfillLineItem in whole units in the
    # BackfillLineItem's currency code, or if unspecified the Network's
    # currency code.
    BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE = 294

    # The discount of the BackfillLineItem in percentage.
    BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE = 295

    # The end date of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE = 267

    # The end date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE_TIME = 269

    # The ENUM value of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE = 302

    # The localized name of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME = 257

    # The deal ID of the Backfill line item. Set for Programmatic Direct
    # campaigns.
    BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID = 285

    # The external ID of the Backfill line item.
    BACKFILL_LINE_ITEM_EXTERNAL_ID = 273

    # The frequency cap of the Backfill line item (descriptive string).
    BACKFILL_LINE_ITEM_FREQUENCY_CAP = 303

    # Backfill line item ID.
    BACKFILL_LINE_ITEM_ID = 298

    # The application that last modified the Backfill line item.
    BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP = 289

    # The total number of clicks delivered of the lifetime of the Backfill line
    # item.
    BACKFILL_LINE_ITEM_LIFETIME_CLICKS = 283

    # The total number of impressions delivered over the lifetime of the
    # Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS = 282

    # The total number of viewable impressions delivered over the lifetime of
    # the Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 284

    # Whether or not the Backfill line item is Makegood. Makegood refers to
    # free inventory offered to buyers to compensate for mistakes or
    # under-delivery in the original campaigns.
    BACKFILL_LINE_ITEM_MAKEGOOD = 276

    # Backfill line item name.
    BACKFILL_LINE_ITEM_NAME = 299

    # The cost of booking for the Backfill line item (non-CPD).
    BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE = 286

    # Whether a Backfill line item is eligible for opitimization.
    BACKFILL_LINE_ITEM_OPTIMIZABLE = 277

    # Goal type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE = 262

    # Localized goal type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 263

    # Unit type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 260

    # Localized unit type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 261

    # The priority of this Backfill line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Backfill line item.
    BACKFILL_LINE_ITEM_PRIORITY = 266

    # ENUM value describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS = 306

    # Localized string describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME = 307

    # The start date of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE = 268

    # The start date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE_TIME = 270

    # Backfill line item type ENUM value.
    BACKFILL_LINE_ITEM_TYPE = 300

    # Localized Backfill line item type name.
    BACKFILL_LINE_ITEM_TYPE_NAME = 301

    # Whether the Backfill line item end time and end date is set to
    # effectively never end.
    BACKFILL_LINE_ITEM_UNLIMITED_END = 271

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT = 275

    # The web property code used for dynamic allocation Backfill line items.
    BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE = 287

    # The ID of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_ID = 372

    # Name of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_NAME = 373

    # Backfill order agency.
    BACKFILL_ORDER_AGENCY = 313

    # Backfill order agency ID.
    BACKFILL_ORDER_AGENCY_ID = 314

    # Backfill order booked CPC.
    BACKFILL_ORDER_BOOKED_CPC = 315

    # Backfill order booked CPM.
    BACKFILL_ORDER_BOOKED_CPM = 316

    # Backfill order delivery status ENUM value.
    BACKFILL_ORDER_DELIVERY_STATUS = 340

    # Backfill order delivery status localized name.
    BACKFILL_ORDER_DELIVERY_STATUS_NAME = 341

    # Backfill order end date.
    BACKFILL_ORDER_END_DATE = 317

    # Backfill order end date and time.
    BACKFILL_ORDER_END_DATE_TIME = 319

    # Backfill order external ID.
    BACKFILL_ORDER_EXTERNAL_ID = 320

    # Backfill order id.
    BACKFILL_ORDER_ID = 338

    # Backfill order labels.
    BACKFILL_ORDER_LABELS = 334

    # Backfill order labels IDs.
    BACKFILL_ORDER_LABEL_IDS = 335

    # Backfill order lifetime clicks.
    BACKFILL_ORDER_LIFETIME_CLICKS = 322

    # Backfill order lifetime impressions.
    BACKFILL_ORDER_LIFETIME_IMPRESSIONS = 323

    # Backfill order name.
    BACKFILL_ORDER_NAME = 339

    # Backfill order PO number.
    BACKFILL_ORDER_PO_NUMBER = 324

    # Whether the Backfill order is programmatic.
    BACKFILL_ORDER_PROGRAMMATIC = 321

    # Backfill order sales person.
    BACKFILL_ORDER_SALESPERSON = 325

    # Backfill order secondary sales people.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE = 329

    # Backfill order secondary sales people ID.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID = 328

    # Backfill order secondary traffickers.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS = 331

    # Backfill order secondary traffickers ID.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID = 330

    # Backfill order start date.
    BACKFILL_ORDER_START_DATE = 332

    # Backfill order start date and time.
    BACKFILL_ORDER_START_DATE_TIME = 333

    # Backfill order trafficker.
    BACKFILL_ORDER_TRAFFICKER = 326

    # Backfill order trafficker ID.
    BACKFILL_ORDER_TRAFFICKER_ID = 327

    # Whether the Backfill order end time and end date is set to effectively
    # never end.
    BACKFILL_ORDER_UNLIMITED_END = 318

    # The ID of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_ID = 336

    # The name of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_NAME = 337

    # The amount of information about the Publisher's page sent to the buyer
    # who purchased the impressions.
    BRANDING_TYPE = 383

    # The localized version of branding type, the amount of information about
    # the Publisher's page sent to the buyer who purchased the impressions.
    BRANDING_TYPE_NAME = 384

    # Browser category.
    BROWSER_CATEGORY = 119

    # Browser category name.
    BROWSER_CATEGORY_NAME = 120

    # The ID of the browser.
    BROWSER_ID = 235

    # The name of the browser.
    BROWSER_NAME = 236

    # Mobile carrier ID.
    CARRIER_ID = 369

    # Name of the mobile carrier.
    CARRIER_NAME = 368

    # The ID of an advertiser, classified by Google, associated with a creative
    # transacted
    CLASSIFIED_ADVERTISER_ID = 133

    # The name of an advertiser, classified by Google, associated with a
    # creative transacted
    CLASSIFIED_ADVERTISER_NAME = 134

    # ID of the brand, as classified by Google,
    CLASSIFIED_BRAND_ID = 243

    # Name of the brand, as classified by Google,
    CLASSIFIED_BRAND_NAME = 244

    # ID of the video content served.
    CONTENT_ID = 246

    # Name of the video content served.
    CONTENT_NAME = 247

    # The criteria ID of the country in which the ad served.
    COUNTRY_ID = 11

    # The name of the country in which the ad served.
    COUNTRY_NAME = 12

    # Enum value of creative billing type
    CREATIVE_BILLING_TYPE = 366

    # Localized string value of creative billing type
    CREATIVE_BILLING_TYPE_NAME = 367

    # Represents the click-through URL of a creative
    CREATIVE_CLICK_THROUGH_URL = 174

    # The ID of a creative
    CREATIVE_ID = 138

    # Creative name
    CREATIVE_NAME = 139

    # Creative technology ENUM
    CREATIVE_TECHNOLOGY = 148

    # Creative technology locallized name
    CREATIVE_TECHNOLOGY_NAME = 149

    # Third party vendor name of a creative
    CREATIVE_THIRD_PARTY_VENDOR = 361

    # Enum value of creative type
    CREATIVE_TYPE = 344

    # Localized string name of creative type
    CREATIVE_TYPE_NAME = 345

    # Breaks down reporting data by date.
    DATE = 3

    # Breaks down reporting data by day of the week. Monday is 1 and 7 is
    # Sunday.
    DAY_OF_WEEK = 4

    # Demand channel.
    DEMAND_CHANNEL = 9

    # Demand channel name.
    DEMAND_CHANNEL_NAME = 10

    # Demand subchannel.
    DEMAND_SUBCHANNEL = 22

    # Demand subchannel name.
    DEMAND_SUBCHANNEL_NAME = 23

    # The device on which an ad was served.
    DEVICE = 226

    # The device category to which an ad is being targeted.
    DEVICE_CATEGORY = 15

    # The name of the category of device (smartphone, feature phone, tablet, or
    # desktop) to which an ad is being targeted.
    DEVICE_CATEGORY_NAME = 16

    # The localized name of the device on which an ad was served.
    DEVICE_NAME = 225

    # ID of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_ID = 185

    # Name of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186

    # The ID of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_ID = 248

    # The name of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_NAME = 249

    # Breaks down reporting data by hour in one day.
    HOUR = 100

    # The interaction type of an ad.
    INTERACTION_TYPE = 223

    # The localized name of the interaction type of an ad.
    INTERACTION_TYPE_NAME = 224

    # Inventory format.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT = 17

    # Inventory format name.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT_NAME = 18

    # Inventory type.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE = 19

    # Inventory type name.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE_NAME = 20

    # Whether traffic is Adx Direct.
    IS_ADX_DIRECT = 382

    # Whether traffic is First Look.
    IS_FIRST_LOOK_DEAL = 401

    # The Custom Targeting Value ID
    KEY_VALUES_ID = 214

    # The Custom Targeting Value formatted like <key_name>=<value_name>
    KEY_VALUES_NAME = 215

    # Whether a Line item is archived.
    LINE_ITEM_ARCHIVED = 188

    # Line item comanion delivery option ENUM value.
    LINE_ITEM_COMPANION_DELIVERY_OPTION = 204

    # Localized line item comanion delivery option name.
    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205

    # The computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS = 250

    # The localized name of the computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS_NAME = 251

    # The contracted units bought for the Line item.
    LINE_ITEM_CONTRACTED_QUANTITY = 92

    # The cost per unit of the Line item.
    LINE_ITEM_COST_PER_UNIT = 85

    # Line item cost type ENUM value.
    LINE_ITEM_COST_TYPE = 212

    # Localized line item cost type name.
    LINE_ITEM_COST_TYPE_NAME = 213

    # Represent the end date of a creative associated with line item
    LINE_ITEM_CREATIVE_END_DATE = 176

    # The creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE = 189

    # The localized name of the creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190

    # Represent the start date of a creative associated with line item
    LINE_ITEM_CREATIVE_START_DATE = 175

    # The 3 letter currency code of the Line Item
    LINE_ITEM_CURRENCY_CODE = 180

    # The progress made for the delivery of the Line item.
    LINE_ITEM_DELIVERY_INDICATOR = 87

    # The delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE = 191

    # The localized name of the delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192

    # The discount of the LineItem in whole units in the LineItem's currency
    # code, or if unspecified the Network's currency code.
    LINE_ITEM_DISCOUNT_ABSOLUTE = 195

    # The discount of the LineItem in percentage.
    LINE_ITEM_DISCOUNT_PERCENTAGE = 196

    # The end date of the Line item.
    LINE_ITEM_END_DATE = 81

    # The end date and time of the Line item.
    LINE_ITEM_END_DATE_TIME = 83

    # The ENUM value of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE = 201

    # The localized name of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202

    # The deal ID of the Line item. Set for Programmatic Direct campaigns.
    LINE_ITEM_EXTERNAL_DEAL_ID = 97

    # The external ID of the Line item.
    LINE_ITEM_EXTERNAL_ID = 86

    # The frequency cap of the Line item (descriptive string).
    LINE_ITEM_FREQUENCY_CAP = 256

    # Line item ID.
    LINE_ITEM_ID = 1

    # The application that last modified the Line Item.
    LINE_ITEM_LAST_MODIFIED_BY_APP = 181

    # The total number of clicks delivered of the lifetime of the Line item.
    LINE_ITEM_LIFETIME_CLICKS = 95

    # The total number of impressions delivered over the lifetime of the
    # Line item.
    LINE_ITEM_LIFETIME_IMPRESSIONS = 94

    # The total number of viewable impressions delivered over the lifetime of
    # the Line item.
    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96

    # Whether or not the Line item is Makegood. Makegood refers to free
    # inventory offered to buyers to compensate for mistakes or under-delivery
    # in the original campaigns.
    LINE_ITEM_MAKEGOOD = 89

    # Line item Name.
    LINE_ITEM_NAME = 2

    # The cost of booking for the Line item (non-CPD).
    LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98

    # Whether a Line item is eligible for opitimization.
    LINE_ITEM_OPTIMIZABLE = 90

    # Goal type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE = 210

    # Localized goal type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211

    # The total number of impressions or clicks that are reserved for a
    # line item. For line items of type BULK or PRICE_PRIORITY, this represents
    # the number of remaining impressions reserved. If the line item has an
    # impression cap goal, this represents the number of impressions or
    # conversions that the line item will stop serving at if reached.
    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93

    # The percentage of impressions or clicks that are reserved for a
    # line item. For line items of type SPONSORSHIP, this represents the
    # percentage of available impressions reserved. For line items of type
    # NETWORK or HOUSE, this represents the percentage of remaining impressions
    # reserved.
    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396

    # Unit type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208

    # Localized unit type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209

    # The priority of this Line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Line item.
    LINE_ITEM_PRIORITY = 24

    # ENUM value describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS = 304

    # Localized string describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS_NAME = 305

    # The start date of the Line item.
    LINE_ITEM_START_DATE = 82

    # The start date and time of the Line item.
    LINE_ITEM_START_DATE_TIME = 84

    # Line item type ENUM value.
    LINE_ITEM_TYPE = 193

    # Localized line item type name.
    LINE_ITEM_TYPE_NAME = 194

    # Whether the Line item end time and end date is set to effectively never
    # end.
    LINE_ITEM_UNLIMITED_END = 187

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    LINE_ITEM_VALUE_COST_PER_UNIT = 88

    # The web property code used for dynamic allocation Line Items.
    LINE_ITEM_WEB_PROPERTY_CODE = 179

    # The ID of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_ID = 140

    # Name of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_NAME = 141

    # Whether the mobile app is free.
    MOBILE_APP_FREE = 128

    # URL of app icon for the mobile app.
    MOBILE_APP_ICON_URL = 129

    # The ID of the Mobile App.
    MOBILE_APP_ID = 123

    # The name of the mobile app.
    MOBILE_APP_NAME = 127

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS = 311

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS_NAME = 312

    # The App Store of the mobile app.
    MOBILE_APP_STORE = 125

    # The localized name of the mobile app store.
    MOBILE_APP_STORE_NAME = 245

    # Mobile inventory type.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    # Values match the Inventory type dimension available in the Overview Home
    # dashboard. Note: Video takes precedence over any other value, for
    # example, if there is an in-stream video impression on a desktop device,
    # it will be attributed to in-stream video and not desktop web.
    MOBILE_INVENTORY_TYPE = 99

    # Mobile inventory type name.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    MOBILE_INVENTORY_TYPE_NAME = 21

    # SDK version of the mobile device.
    MOBILE_SDK_VERSION_NAME = 130

    # Breaks down reporting data by month and year.
    MONTH_YEAR = 6

    # Native ad format ID.
    NATIVE_AD_FORMAT_ID = 255

    # Native ad format name.
    NATIVE_AD_FORMAT_NAME = 254

    # Native style ID.
    NATIVE_STYLE_ID = 253

    # Native style name.
    NATIVE_STYLE_NAME = 252

    # Operating system category.
    OPERATING_SYSTEM_CATEGORY = 117

    # Operating system category name.
    OPERATING_SYSTEM_CATEGORY_NAME = 118

    # ID of the operating system version.
    OPERATING_SYSTEM_VERSION_ID = 238

    # Details of the operating system, including version.
    OPERATING_SYSTEM_VERSION_NAME = 237

    # Order agency.
    ORDER_AGENCY = 150

    # Order agency ID.
    ORDER_AGENCY_ID = 151

    # Order booked CPC.
    ORDER_BOOKED_CPC = 152

    # Order booked CPM.
    ORDER_BOOKED_CPM = 153

    # Order delivery status ENUM value.
    ORDER_DELIVERY_STATUS = 231

    # Order delivery status localized name.
    ORDER_DELIVERY_STATUS_NAME = 239

    # Order end date.
    ORDER_END_DATE = 154

    # Order end date and time.
    ORDER_END_DATE_TIME = 155

    # Order external ID.
    ORDER_EXTERNAL_ID = 156

    # Order id.
    ORDER_ID = 7

    # Order labels.
    ORDER_LABELS = 170

    # Order labels IDs.
    ORDER_LABEL_IDS = 171

    # Order lifetime clicks.
    ORDER_LIFETIME_CLICKS = 158

    # Order lifetime impressions.
    ORDER_LIFETIME_IMPRESSIONS = 159

    # Order name.
    ORDER_NAME = 8

    # Order PO number.
    ORDER_PO_NUMBER = 160

    # Whether the Order is programmatic.
    ORDER_PROGRAMMATIC = 157

    # Order sales person.
    ORDER_SALESPERSON = 161

    # Order secondary sales people.
    ORDER_SECONDARY_SALESPEOPLE = 164

    # Order secondary sales people ID.
    ORDER_SECONDARY_SALESPEOPLE_ID = 165

    # Order secondary traffickers.
    ORDER_SECONDARY_TRAFFICKERS = 166

    # Order secondary traffickers ID.
    ORDER_SECONDARY_TRAFFICKERS_ID = 167

    # Order start date.
    ORDER_START_DATE = 168

    # Order start date and time.
    ORDER_START_DATE_TIME = 169

    # Order trafficker.
    ORDER_TRAFFICKER = 162

    # Order trafficker ID.
    ORDER_TRAFFICKER_ID = 163

    # Whether the Order end time and end date is set to effectively never
    # end.
    ORDER_UNLIMITED_END = 203

    # Placement ID
    PLACEMENT_ID = 113

    # The full list of placement IDs associated with the ad unit.
    PLACEMENT_ID_ALL = 144

    # Placement name
    PLACEMENT_NAME = 114

    # The full list of placement names associated with the ad unit.
    PLACEMENT_NAME_ALL = 145

    # Placement status ENUM value
    PLACEMENT_STATUS = 362

    # The full list of placement status ENUM values associated with the ad
    # unit.
    PLACEMENT_STATUS_ALL = 363

    # Localized placement status name.
    PLACEMENT_STATUS_NAME = 364

    # The full list of localized placement status names associated with the ad
    # unit.
    PLACEMENT_STATUS_NAME_ALL = 365

    # The ID of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_ID = 240

    # The name of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_NAME = 241

    # Programmatic channel.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL = 13

    # Programmatic channel name.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL_NAME = 14

    # The size of a rendered creative, It can differ with the creative's size
    # if a creative is shown in an ad slot of a different size.
    RENDERED_CREATIVE_SIZE = 343

    # Inventory Requested Ad Sizes dimension
    REQUESTED_AD_SIZES = 352

    # Request type ENUM
    REQUEST_TYPE = 146

    # Request type locallized name
    REQUEST_TYPE_NAME = 147

    # Indicates if a request was eligible for server-side unwrapping.
    SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597

    # Information about domain or subdomains.
    SITE = 387

    # The ID of the browser, device or other environment into which a line item
    # or creative was served.
    TARGETING_ID = 232

    # Information about the browser, device and other environments into which
    # a line item or creative was served.
    TARGETING_NAME = 233

    # The way in which advertisers targeted their ads.
    TARGETING_TYPE = 385

    # The localized name of the way in which advertisers targeted their ads.
    TARGETING_TYPE_NAME = 386

    # Inventory Traffic source dimension
    TRAFFIC_SOURCE = 388

    # Inventory Traffic source dimension name
    TRAFFIC_SOURCE_NAME = 389

    # Unified pricing rule ID dimension
    UNIFIED_PRICING_RULE_ID = 393

    # Unified pricing rule name dimension
    UNIFIED_PRICING_RULE_NAME = 394

    # The video placement enum as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT = 172

    # The localized name of the video placement as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT_NAME = 173

    # Breaks down reporting data by week of the year.
    WEEK = 5

    # Name of the company within a yield group
    YIELD_GROUP_BUYER_NAME = 184

    # ID of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_ID = 182

    # Name of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_NAME = 183

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10_000

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10_001

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10_002

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10_003

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10_004

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10_005

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10_006

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10_007

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10_008

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10_009

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10_010

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10_011

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10_012

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10_013

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10_014

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11_000

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11_001

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11_002

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11_003

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11_004

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11_005

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11_006

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11_007

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11_008

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11_009

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11_010

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11_011

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11_012

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11_013

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11_014

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_0_OPTION_ID = 12_000

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_1_OPTION_ID = 12_001

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_2_OPTION_ID = 12_002

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_3_OPTION_ID = 12_003

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_4_OPTION_ID = 12_004

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_5_OPTION_ID = 12_005

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_6_OPTION_ID = 12_006

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_7_OPTION_ID = 12_007

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_8_OPTION_ID = 12_008

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_9_OPTION_ID = 12_009

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_10_OPTION_ID = 12_010

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_11_OPTION_ID = 12_011

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_12_OPTION_ID = 12_012

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_13_OPTION_ID = 12_013

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_14_OPTION_ID = 12_014

    # Custom field value for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 0 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_0_VALUE = 13_000

    # Custom field value for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 1 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_1_VALUE = 13_001

    # Custom field value for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 2 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_2_VALUE = 13_002

    # Custom field value for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 3 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_3_VALUE = 13_003

    # Custom field value for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 4 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_4_VALUE = 13_004

    # Custom field value for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 5 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_5_VALUE = 13_005

    # Custom field value for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 6 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_6_VALUE = 13_006

    # Custom field value for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 7 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_7_VALUE = 13_007

    # Custom field value for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 8 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_8_VALUE = 13_008

    # Custom field value for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 9 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_9_VALUE = 13_009

    # Custom field value for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_10_VALUE = 13_010

    # Custom field value for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_11_VALUE = 13_011

    # Custom field value for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_12_VALUE = 13_012

    # Custom field value for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_13_VALUE = 13_013

    # Custom field value for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_14_VALUE = 13_014

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14_000

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14_001

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14_002

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14_003

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14_004

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14_005

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14_006

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14_007

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14_008

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14_009

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14_010

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14_011

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14_012

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14_013

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14_014

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_0_VALUE = 15_000

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_1_VALUE = 15_001

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_2_VALUE = 15_002

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_3_VALUE = 15_003

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_4_VALUE = 15_004

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_5_VALUE = 15_005

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_6_VALUE = 15_006

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_7_VALUE = 15_007

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_8_VALUE = 15_008

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_9_VALUE = 15_009

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_10_VALUE = 15_010

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_11_VALUE = 15_011

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_12_VALUE = 15_012

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_13_VALUE = 15_013

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_14_VALUE = 15_014

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16_000

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16_001

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16_002

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16_003

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16_004

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16_005

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16_006

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16_007

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16_008

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16_009

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16_010

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16_011

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16_012

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16_013

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16_014

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 0 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17_000

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 1 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17_001

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 2 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17_002

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 3 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17_003

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 4 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17_004

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 5 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17_005

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 6 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17_006

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 7 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17_007

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 8 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17_008

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 9 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17_009

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17_010

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17_011

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17_012

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17_013

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17_014

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18_000

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18_001

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18_002

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18_003

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18_004

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18_005

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18_006

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18_007

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18_008

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18_009

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18_010

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18_011

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18_012

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18_013

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18_014

    # Custom field value for Backfill order with custom field ID equal to the
    # ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19_000

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19_001

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19_002

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19_003

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19_004

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19_005

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19_006

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19_007

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19_008

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19_009

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19_010

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19_011

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19_012

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19_013

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19_014

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20_000

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20_001

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20_002

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20_003

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20_004

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20_005

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20_006

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20_007

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20_008

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20_009

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20_010

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20_011

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20_012

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20_013

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20_014

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21_000

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 1 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21_001

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 2 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21_002

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 3 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21_003

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 4 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21_004

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 5 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21_005

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 6 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21_006

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 7 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21_007

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 8 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21_008

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 9 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21_009

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21_010

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21_011

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21_012

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21_013

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21_014

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE_ID = 100_000

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE_ID = 100_001

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE_ID = 100_002

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE_ID = 100_003

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE_ID = 100_004

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE_ID = 100_005

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE_ID = 100_006

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE_ID = 100_007

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE_ID = 100_008

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE_ID = 100_009

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE = 101_000

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE = 101_001

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE = 101_002

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE = 101_003

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE = 101_004

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE = 101_005

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE = 101_006

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 7 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE = 101_007

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE = 101_008

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE = 101_009
  end

  # Reporting metrics.
  module Metric
    # Default value. This value is unused.
    METRIC_UNSPECIFIED = 0

    # Active View total average time in seconds that specific impressions are
    # reported as being viewable.
    ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 61

    # Total number of impressions that were eligible to measure viewability.
    ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 58

    # The total number of impressions that were sampled and measured by active
    # view.
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 57

    # The percentage of total impressions that were measurable by active view
    # (out of all the total impressions sampled for active view).
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 60

    # The total number of impressions viewed on the user's screen.
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 56

    # The percentage of total impressions viewed on the user's screen (out of
    # the total impressions measurable by active view).
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 59

    # Active View AdSense average time in seconds that specific impressions are
    # reported as being viewable.
    ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 73

    # Total number of impressions delivered by AdSense that were eligible to
    # measure viewability.
    ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 70

    # The number of impressions delivered by AdSense that were sampled, and
    # measurable by active view.
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 69

    # The percentage of impressions delivered by AdSense that were measurable
    # by active view (out of all AdSense impressions sampled for active view).
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 72

    # The number of impressions delivered by AdSense viewed on the user's
    # screen.
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 68

    # The percentage of impressions delivered by AdSense viewed on the user's
    # screen (out of AdSense impressions measurable by active view).
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 71

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by AdSense through line item dynamic allocation.
    ADSENSE_AVERAGE_ECPM = 26

    # Number of clicks delivered by AdSense demand channel.
    ADSENSE_CLICKS = 23

    # The ratio of impressions served by AdSense that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. The
    # AdSense CTR is calculated as: (AdSense clicks / AdSense impressions).
    ADSENSE_CTR = 24

    # Total impressions delivered by AdSense.
    ADSENSE_IMPRESSIONS = 22

    # Ratio of clicks delivered by AdSense through line item dynamic allocation
    # in relation to the total clicks delivered.
    ADSENSE_PERCENT_CLICKS = 28

    # Ratio of impressions delivered by AdSense through line item dynamic
    # allocation in relation to the total impressions delivered.
    ADSENSE_PERCENT_IMPRESSIONS = 27

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue.
    ADSENSE_PERCENT_REVENUE = 29

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    ADSENSE_PERCENT_REVENUE_WITHOUT_CPD = 30

    # The total number of times that an AdSense ad is delivered.
    ADSENSE_RESPONSES_SERVED = 41

    # Revenue generated from AdSense through line item dynamic allocation,
    # calculated in the network's currency and time zone.
    ADSENSE_REVENUE = 25

    # Active View AdExchange average time in seconds that specific impressions
    # are reported as being viewable.
    AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 79

    # Total number of impressions delivered by Ad Exchange that were eligible
    # to measure viewability.
    AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 76

    # The number of impressions delivered by Ad Exchange that were sampled, and
    # measurable by active view.
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 75

    # The percentage of impressions delivered by Ad Exchange that were
    # measurable by active view (out of all Ad Exchange impressions sampled for
    # active view).
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 78

    # The number of impressions delivered by Ad Exchange viewed on the user's
    # screen.
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 74

    # The percentage of impressions delivered by Ad Exchange viewed on the
    # user's screen (out of Ad Exchange impressions measurable by active view).
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 77

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by Ad Exchange through line item dynamic allocation.
    AD_EXCHANGE_AVERAGE_ECPM = 18

    # Number of clicks delivered by the Ad Exchange.
    AD_EXCHANGE_CLICKS = 15

    # The ratio of impressions served by the Ad Exchange that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. Ad
    # Exchange CTR is calculated as: (Ad Exchange clicks / Ad Exchange
    # impressions).
    AD_EXCHANGE_CTR = 16

    # Total impressions delivered by the Ad Exchange.
    AD_EXCHANGE_IMPRESSIONS = 14

    # Ratio of clicks delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total clicks delivered.
    AD_EXCHANGE_PERCENT_CLICKS = 20

    # Ratio of impressions delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total impressions delivered.
    AD_EXCHANGE_PERCENT_IMPRESSIONS = 19

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue.
    AD_EXCHANGE_PERCENT_REVENUE = 21

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD = 31

    # The total number of times that an Ad Exchange ad is delivered.
    AD_EXCHANGE_RESPONSES_SERVED = 42

    # Revenue generated from the Ad Exchange through line item dynamic
    # allocation, calculated in your network's currency and time zone.
    AD_EXCHANGE_REVENUE = 17

    # The total number of times that an ad request is sent to the ad server
    # including dynamic allocation.
    AD_REQUESTS = 38

    # Active View ad server average time in seconds that specific impressions
    # are reported as being viewable.
    AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 67

    # Total number of impressions delivered by the ad server that were eligible
    # to measure viewability.
    AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 64

    # The number of impressions delivered by the ad server that were sampled,
    # and measurable by active view.
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 63

    # The percentage of impressions delivered by the ad server that were
    # measurable by active view (out of all the ad server impressions sampled
    # for active view).
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 66

    # The number of impressions delivered by the ad server viewed on the user's
    # screen.
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 62

    # The percentage of impressions delivered by the ad server viewed on the
    # user's screen (out of the ad server impressions measurable by active
    # view).
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 65

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server.
    AD_SERVER_AVERAGE_ECPM = 34

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server, excluding CPD value.
    AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD = 10

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown.
    AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS = 262

    # Total clicks served by the Google Ad Manager server. It usually takes
    # about 30 minutes for new clicks to be recorded and added to the total
    # displayed in reporting.
    AD_SERVER_CLICKS = 7

    # CPD revenue earned, calculated in your network's currency, for
    # the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_CPD_REVENUE = 32

    # Ratio of impressions served by the Google Ad Manager server that resulted
    # in users clicking on an ad. The clickthrough rate (CTR) is updated
    # nightly. The ad server CTR is calculated as: (Ad server clicks / Ad
    # server impressions).
    AD_SERVER_CTR = 8

    # Total impressions delivered by the Ad Server.
    AD_SERVER_IMPRESSIONS = 6

    # Ratio of clicks delivered by the Google Ad Manager server in relation to
    # the total clicks delivered.
    AD_SERVER_PERCENT_CLICKS = 12

    # Ratio of impressions delivered by the Google Ad Manager server in
    # relation to the total impressions delivered.
    AD_SERVER_PERCENT_IMPRESSIONS = 11

    # Ratio of revenue generated by the Google Ad Manager server in relation
    # to the total revenue.
    AD_SERVER_PERCENT_REVENUE = 35

    # Ratio of revenue generated by the Google Ad Manager server (excluding
    # CPD) in relation to the total revenue.
    AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13

    # The total number of times that an ad is served by the ad server.
    AD_SERVER_RESPONSES_SERVED = 40

    # All CPM, CPC, and CPD revenue earned, calculated in your network's
    # currency, for the ads delivered by the Google Ad Manager server.
    # Sum of all booked revenue.
    AD_SERVER_REVENUE = 33

    # Revenue (excluding CPD) earned, calculated in your network's currency,
    # for the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_REVENUE_WITHOUT_CPD = 9

    # The number of tracked ads delivered by the ad server.
    AD_SERVER_TRACKED_ADS = 264

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown, before invalid traffic filtrations by
    # Ad Server.
    AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261

    # Total clicks delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_CLICKS = 259

    # Total impressions delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_IMPRESSIONS = 260

    # The number of tracked ads delivered by the ad server before invalid
    # traffic filtrations.
    AD_SERVER_UNFILTERED_TRACKED_ADS = 263

    # eCPM averaged across the Google Ad Manager server, AdSense,
    # and Ad Exchange.
    AVERAGE_ECPM = 37

    # eCPM averaged across the Google Ad Manager server (excluding CPD),
    # AdSense, and Ad Exchange.
    AVERAGE_ECPM_WITHOUT_CPD = 5

    # The number of times a user clicked on an ad.
    CLICKS = 2

    # The total number of times that the code for an ad is served by the ad
    # server including dynamic allocation.
    CODE_SERVED_COUNT = 44

    # For standard ads, your ad clickthrough rate (CTR) is the number of ad
    # clicks divided by the number of individual ad impressions expressed as a
    # fraction. Ad CTR = Clicks / Ad impressions.
    CTR = 3

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129

    # The number of auction impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131

    # The number of impressions sold by Google in partner sales.
    GOOGLE_SOLD_IMPRESSIONS = 130

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127

    # The number of reservation impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126

    # Total impressions from the Google Ad Manager server, AdSense,
    # Ad Exchange, and yield group partners.
    IMPRESSIONS = 1

    # The number of filled pod requests (filled by partner or Google) in
    # partner sales.
    PARTNER_SALES_FILLED_POD_REQUESTS = 135

    # The percent of filled requests to total ad requests in
    # partner sales.
    PARTNER_SALES_FILL_RATE = 136

    # The percent of partner filled requests to total ad requests
    # in partner sales.
    PARTNER_SALES_PARTNER_MATCH_RATE = 137

    # The number of queries eligible for partner sales.
    PARTNER_SALES_QUERIES = 132

    # The number of partner unfilled impressions in partner sales.
    # If a pod request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNFILLED_IMPRESSIONS = 133

    # The number of partner unmatched queries in partner sales.
    # If an ad request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNMATCHED_QUERIES = 134

    # The number of code served sold by partner in partner sales.
    PARTNER_SOLD_CODE_SERVED = 125

    # The number of coviewed impressions sold by partner in partner sales.
    PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124

    # The number of impressions sold by partner in partner sales.
    PARTNER_SOLD_IMPRESSIONS = 123

    # The total number of ad requests eligible for programmatic inventory,
    # including Programmatic Guaranteed, Preferred Deals, backfill, and open
    # auction.
    PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177

    # The number of programmatic responses served divided by the number of
    # programmatic eligible ad requests. Includes Ad Exchange, Open Bidding,
    # and Preferred Deals.
    PROGRAMMATIC_MATCH_RATE = 178

    # Total number of ad responses served from programmatic demand sources.
    # Includes Ad Exchange, Open Bidding, and Preferred Deals.
    #
    # Differs from AD_EXCHANGE_RESPONSES_SERVED, which doesn't include Open
    # Bidding ad requests.
    PROGRAMMATIC_RESPONSES_SERVED = 176

    # The total number of times that an ad is served by the ad server including
    # dynamic allocation.
    RESPONSES_SERVED = 39

    # Total amount of CPM, CPC, and CPD revenue based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE = 36

    # Total amount of revenue (excluding CPD) based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE_WITHOUT_CPD = 4

    # The average latency in milliseconds across all server-side unwrapping
    # callout requests. There is no special handling for error or timeout
    # responses. This reflects the entire chain of a parent callout request,
    # which may result in multiple child callouts. This metric is not sliced by
    # child callout dimensions.
    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434

    # The total number of server-side unwrapping callout requests.
    SERVER_SIDE_UNWRAPPING_CALLOUTS = 435

    # The total number of server-side unwrapping callouts that returned an
    # empty response. Timeouts are not considered empty responses.
    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436

    # The total number of server-side unwrapping callouts that returned an
    # error response. Timeouts and empty responses are not considered errors.
    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437

    # The total number of successfully unwrapped, non-empty server-side
    # wrapping callouts. Successful unwrapping does not indicate that the
    # resulting creative was served.
    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438

    # The total number of server-side unwrapping callouts that timed out before
    # returning a response.
    SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439

    # The total number of missed impressions due to the ad servers' inability
    # to find ads to serve including dynamic allocation.
    UNFILLED_IMPRESSIONS = 45

    # The total number of times that an ad is not returned by the ad server.
    UNMATCHED_AD_REQUESTS = 43

    # Number of times an Offerwall message was shown to users.
    USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121

    # The number of messages where the user gained an entitlement.
    USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122

    # The number of user interactions with a video, on average, such as pause,
    # full screen, mute, etc.
    VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92

    # The number of times a user collapses a video, either to its original size
    # or to a different size.
    VIDEO_INTERACTION_COLLAPSES = 93

    # The number of times a user expands a video.
    VIDEO_INTERACTION_EXPANDS = 95

    # The number of times ad clip played in full screen mode.
    VIDEO_INTERACTION_FULL_SCREENS = 96

    # The number of times video player was in mute state during play of ad
    # clip.
    VIDEO_INTERACTION_MUTES = 97

    # The number of times user paused ad clip.
    VIDEO_INTERACTION_PAUSES = 98

    # The number of times the user unpaused the video.
    VIDEO_INTERACTION_RESUMES = 99

    # The number of times a user rewinds the video.
    VIDEO_INTERACTION_REWINDS = 100

    # The number of times a user unmutes the video.
    VIDEO_INTERACTION_UNMUTES = 101

    # The number of times a skippable video is skipped.
    VIDEO_INTERACTION_VIDEO_SKIPS = 102

    # The number of total creative serves in video realtime reporting.
    VIDEO_REAL_TIME_CREATIVE_SERVES = 139

    # The number of errors of type 100 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_100_COUNT = 143

    # The number of errors of type 101 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_101_COUNT = 144

    # The number of errors of type 102 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_102_COUNT = 145

    # The number of errors of type 200 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_200_COUNT = 146

    # The number of errors of type 201 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_201_COUNT = 147

    # The number of errors of type 202 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_202_COUNT = 148

    # The number of errors of type 203 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_203_COUNT = 149

    # The number of errors of type 300 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_300_COUNT = 150

    # The number of errors of type 301 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_301_COUNT = 151

    # The number of errors of type 302 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_302_COUNT = 152

    # The number of errors of type 303 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_303_COUNT = 153

    # The number of errors of type 400 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_400_COUNT = 154

    # The number of errors of type 401 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_401_COUNT = 155

    # The number of errors of type 402 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_402_COUNT = 156

    # The number of errors of type 403 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_403_COUNT = 157

    # The number of errors of type 405 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_405_COUNT = 158

    # The number of errors of type 406 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_406_COUNT = 159

    # The number of errors of type 407 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_407_COUNT = 160

    # The number of errors of type 408 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_408_COUNT = 161

    # The number of errors of type 409 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_409_COUNT = 162

    # The number of errors of type 410 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_410_COUNT = 163

    # The number of errors of type 500 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_500_COUNT = 164

    # The number of errors of type 501 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_501_COUNT = 165

    # The number of errors of type 502 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_502_COUNT = 166

    # The number of errors of type 503 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_503_COUNT = 167

    # The number of errors of type 600 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_600_COUNT = 168

    # The number of errors of type 601 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_601_COUNT = 169

    # The number of errors of type 602 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_602_COUNT = 170

    # The number of errors of type 603 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_603_COUNT = 171

    # The number of errors of type 604 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_604_COUNT = 172

    # The number of errors of type 900 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_900_COUNT = 173

    # The number of errors of type 901 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_901_COUNT = 174

    # The number of total impressions in video realtime reporting.
    VIDEO_REAL_TIME_IMPRESSIONS = 138

    # The number of matched queries in video realtime reporting.
    VIDEO_REAL_TIME_MATCHED_QUERIES = 140

    # The number of all errors in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175

    # The number of total queries in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_QUERIES = 142

    # The number of unmatched queries in video realtime reporting.
    VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141

    # Number of times that the publisher specified a video ad played
    # automatically.
    VIDEO_VIEWERSHIP_AUTO_PLAYS = 103

    # Average percentage of the video watched by users.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104

    # Average time(seconds) users watched the video.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105

    # Number of times that the publisher specified a video ad was clicked to
    # play.
    VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106

    # The number of times the video played to completion.
    VIDEO_VIEWERSHIP_COMPLETES = 107

    # Percentage of times the video played to the end.
    VIDEO_VIEWERSHIP_COMPLETION_RATE = 108

    # The number of engaged views: ad is viewed to completion or for 30s,
    # whichever comes first.
    VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109

    # The number of times the video played to 25% of its length.
    VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110

    # The number of times the video reached its midpoint during play.
    VIDEO_VIEWERSHIP_MIDPOINTS = 111

    # The number of times a skip button is shown in video.
    VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112

    # The number of impressions where the video was played.
    VIDEO_VIEWERSHIP_STARTS = 113

    # The number of times the video played to 75% of its length.
    VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114

    # The number of times an error occurred, such as a VAST redirect error, a
    # video playback error, or an invalid response error.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115

    # The percentage of video error count.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94

    # Duration of the video creative.
    VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116

    # View-through rate represented as a percentage.
    VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117

    # Number of winning bids received from Open Bidding buyers, even when the
    # winning bid is placed at the end of a mediation for mobile apps chain.
    YIELD_GROUP_AUCTIONS_WON = 80

    # Number of bids received from Open Bidding buyers, regardless of whether
    # the returned bid competes in an auction.
    YIELD_GROUP_BIDS = 81

    # Number of bids received from Open Bidding buyers that competed in
    # the auction.
    YIELD_GROUP_BIDS_IN_AUCTION = 82

    # Number of times a yield partner is asked to return bid to fill
    # a yield group request.
    YIELD_GROUP_CALLOUTS = 83

    # The estimated net rate for yield groups or individual
    # yield group partners.
    YIELD_GROUP_ESTIMATED_CPM = 88

    # Total net revenue earned by a yield group, based upon the yield group
    # estimated CPM and yield group impressions recorded.
    YIELD_GROUP_ESTIMATED_REVENUE = 87

    # Number of matched yield group requests where a yield partner delivered
    # their ad to publisher inventory.
    YIELD_GROUP_IMPRESSIONS = 85

    # Yield group Mediation fill rate indicating how often a network
    # fills an ad request.
    YIELD_GROUP_MEDIATION_FILL_RATE = 89

    # Total requests where a Mediation chain was served.
    YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86

    # The number of mediation chain passback across all channels.
    YIELD_GROUP_MEDIATION_PASSBACKS = 118

    # Revenue per thousand impressions based on data collected by Ad Manager
    # from third-party ad network reports.
    YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90

    # Number of times a yield group buyer successfully returned a bid in
    # response to a yield group callout.
    YIELD_GROUP_SUCCESSFUL_RESPONSES = 84
  end

  # Possible metric value types to add.
  module MetricValueType
    # The values for the primary date_range.
    PRIMARY = 0

    # Each metrics' percent of the total for the primary date_range.
    PRIMARY_PERCENT_OF_TOTAL = 1

    # The values for the comparison_date_range.
    COMPARISON = 2

    # Each metrics' percent of the total for the comparison_date_range.
    COMPARISON_PERCENT_OF_TOTAL = 3

    # The absolute change between the primary and comparison date ranges.
    ABSOLUTE_CHANGE = 4

    # The relative change between the primary and comparison date ranges.
    RELATIVE_CHANGE = 5
  end

  # Supported report types.
  module ReportType
    # Default value. This value is unused.
    REPORT_TYPE_UNSPECIFIED = 0

    # Historical.
    HISTORICAL = 1
  end

  # The visibility of a report.
  module Visibility
    # Default value. Reports with hidden visibility will not appear in the Ad
    # Manager UI.
    HIDDEN = 0

    # Reports with draft visibility will appear in the Ad Manager UI only if
    # the user has configured the UI to show them.
    DRAFT = 1

    # Reports with saved visibility will appear in the Ad Manager UI by
    # default.
    SAVED = 2
  end

  # The source to determine the time zone for the report.
  module TimeZoneSource
    # Unspecified default value.
    TIME_ZONE_SOURCE_UNSPECIFIED = 0

    # Use the publisher's time zone in network settings.
    PUBLISHER = 1

    # Use the time zone of the ad exchange.
    # Only compatible with Ad Exchange dimensions and metrics.
    AD_EXCHANGE = 2

    # Use UTC time zone.
    # Only compatible with Revenue Verification reports.
    UTC = 3

    # Use the time zone provided in the ReportDefinition.time_zone field.
    # Has limited dimension and metric compatibility compared with PUBLISHER,
    # and reports may take longer to run since the dates are dynamically
    # calculated at request time.
    PROVIDED = 4
  end
end

#display_name::String

Returns Optional. Display name for the report.

Returns:

  • (::String)

    Optional. Display name for the report.



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
# File 'proto_docs/google/ads/admanager/v1/report_messages.rb', line 55

class Report
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a single value in a report.
  # @!attribute [rw] int_value
  #   @return [::Integer]
  #     For integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] double_value
  #   @return [::Float]
  #     For double values.
  #
  #     Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_value
  #   @return [::String]
  #     For string values.
  #
  #     Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bool_value
  #   @return [::Boolean]
  #     For boolean values.
  #
  #     Note: The following fields are mutually exclusive: `bool_value`, `int_value`, `double_value`, `string_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] int_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::IntList]
  #     For lists of integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::StringList]
  #     For lists of string values.
  #
  #     Note: The following fields are mutually exclusive: `string_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bytes_value
  #   @return [::String]
  #     For bytes values.
  #
  #     Note: The following fields are mutually exclusive: `bytes_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Value
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A list of integer values.
    # @!attribute [rw] values
    #   @return [::Array<::Integer>]
    #     The values
    class IntList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of string values.
    # @!attribute [rw] values
    #   @return [::Array<::String>]
    #     The values
    class StringList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Represents a sorting in a report.
  # @!attribute [rw] field
  #   @return [::Google::Ads::AdManager::V1::Report::Field]
  #     Required. A field (dimension or metric) to sort by.
  # @!attribute [rw] descending
  #   @return [::Boolean]
  #     Optional. The sort order. If true the sort will be descending.
  # @!attribute [rw] slice
  #   @return [::Google::Ads::AdManager::V1::Report::Slice]
  #     Optional. Use to sort on a specific slice of data.
  # @!attribute [rw] time_period_index
  #   @return [::Integer]
  #     Optional. When using time period columns, use this to sort on a specific
  #     column.
  # @!attribute [rw] metric_value_type
  #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
  #     Optional. Use to specify which metric value type to sort on. Defaults to
  #     PRIMARY.
  class Sort
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A table containing report data including dimension and metric values.
  class DataTable
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A row of report data.
    # @!attribute [rw] dimension_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     The order of the dimension values is the same as the order of the
    #     dimensions specified in the request.
    # @!attribute [rw] metric_value_groups
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::DataTable::MetricValueGroup>]
    #     The length of the metric_value_groups
    #     field will be equal to the length of the date_ranges field in the
    #     fetch response. The metric_value_groups field is
    #     ordered such that each index corresponds to the date_range at the same
    #     index. For example, given date_ranges [x, y], metric_value_groups will
    #     have a length of two. The first entry in metric_value_groups represents
    #     the metrics for date x and the second entry in metric_value_groups
    #     represents the metrics for date y.
    class Row
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Contains all metric values requested for a single date range and set of
    # column dimension values (returned in the columns field of the response).
    # The order of the metrics in each field corresponds to the order of the
    # metrics specified in the request.
    # @!attribute [rw] primary_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY MetricValueType.
    # @!attribute [rw] primary_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] comparison_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON MetricValueType.
    # @!attribute [rw] comparison_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] absolute_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the ABSOLUTE_CHANGE MetricValueType.
    # @!attribute [rw] relative_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the RELATIVE_CHANGE MetricValueType.
    # @!attribute [rw] flag_values
    #   @return [::Array<::Boolean>]
    #     If true, the flag's conditions are met. If false, the flag's
    #     conditions are not met. flag_values has the same length as
    #     flags and index i of flag_values represents the flag at index i
    #     of flags.
    class MetricValueGroup
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # A dimension or a metric in a report.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     The dimension this field represents.
  #
  #     Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] metric
  #   @return [::Google::Ads::AdManager::V1::Report::Metric]
  #     The metric this field represents.
  #
  #     Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Field
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Use to specify a slice of data.
  #
  # For example, in a report, to focus on just data from the US, specify
  # `COUNTRY_NAME` for dimension and value: `"United States"`.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     Required. The dimension to slice on.
  # @!attribute [rw] value
  #   @return [::Google::Ads::AdManager::V1::Report::Value]
  #     Required. The value of the dimension.
  class Slice
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A filter over one or more fields.
  # @!attribute [rw] field_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FieldFilter]
  #     A filter on a single field.
  #
  #     Note: The following fields are mutually exclusive: `field_filter`, `not_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] not_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter]
  #     A filter whose result is negated.
  #
  #     Note: The following fields are mutually exclusive: `not_filter`, `field_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] and_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are AND-ed.
  #
  #     Note: The following fields are mutually exclusive: `and_filter`, `field_filter`, `not_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] or_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are OR-ed.
  #
  #     Note: The following fields are mutually exclusive: `or_filter`, `field_filter`, `not_filter`, `and_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Filter
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A filter on a specific field.
    # @!attribute [rw] field
    #   @return [::Google::Ads::AdManager::V1::Report::Field]
    #     Required. The field to filter on.
    # @!attribute [rw] operation
    #   @return [::Google::Ads::AdManager::V1::Report::Filter::Operation]
    #     Required. The operation of this filter.
    # @!attribute [rw] values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Required. Values to filter to.
    # @!attribute [rw] slice
    #   @return [::Google::Ads::AdManager::V1::Report::Slice]
    #     Optional. Use to filter on a specific slice of data.
    # @!attribute [rw] time_period_index
    #   @return [::Integer]
    #     Optional. When using time period columns, use this to filter on a
    #     specific column.
    # @!attribute [rw] metric_value_type
    #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
    #     Optional. Use to specify which metric value type to filter on. Defaults
    #     to PRIMARY.
    class FieldFilter
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of filters.
    # @!attribute [rw] filters
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
    #     Required. A list of filters.
    class FilterList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Supported filter operations.
    module Operation
      # For scalar operands, checks if the operand is in the set of provided
      # filter values.
      #
      # For list operands, checks if any element in the operand is in the set
      # of provided filter values.
      #
      # Default value.
      IN = 0

      # For scalar operands, checks that the operand is not in the set of
      # provided filter values.
      #
      # For list operands, checks that none of the elements in the operand
      # is in the set of provided filter values.
      NOT_IN = 1

      # For scalar string operands, checks if the operand contains any of the
      # provided filter substrings.
      #
      # For string list operands, checks if any string in the operand contains
      # any of the provided filter substrings.
      CONTAINS = 2

      # For scalar string operands, checks that the operand contains none of
      # the provided filter substrings.
      #
      # For string list operands, checks that none of the strings in the
      # operand contain none of the provided filter substrings.
      NOT_CONTAINS = 3

      # Operand is less than the provided filter value.
      LESS_THAN = 4

      # Operand is less than or equal to provided filter value.
      LESS_THAN_EQUALS = 5

      # Operand is greater than provided filter value.
      GREATER_THAN = 6

      # Operand is greater than or equal to provided filter value.
      GREATER_THAN_EQUALS = 7

      # Operand is between provided filter values.
      BETWEEN = 8

      # Operand matches against a regex or set of regexes (one must match)
      MATCHES = 9

      # Operand negative matches against a regex or set of regexes (none must
      # match)
      NOT_MATCHES = 10
    end
  end

  # A flag for a report. Flags are used show if certain thresholds are met.
  # Result rows that match the filter will have the corresponding
  # [MetricValueGroup.flagValues][MetricValueGroup] index set to true.
  # For more information about flags see:
  # https://support.google.com/admanager/answer/15079975
  # @!attribute [rw] filters
  #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
  #     Required. Filters to apply for the flag.
  # @!attribute [rw] name
  #   @return [::String]
  #     Optional. Name of the flag.
  #     The flag names RED, YELLOW, GREEN, BLUE, PURPLE, and GREY correspond to
  #     the colored flags that appear in the UI. The UI will not display flags
  #     with other names, but they are available for use by API clients.
  class Flag
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A date range for a report.
  # @!attribute [rw] fixed
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::FixedDateRange]
  #     A fixed date range.
  #
  #     Note: The following fields are mutually exclusive: `fixed`, `relative`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] relative
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::RelativeDateRange]
  #     A relative date range.
  #
  #     Note: The following fields are mutually exclusive: `relative`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class DateRange
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A date range between two fixed dates (inclusive of end date).
    # @!attribute [rw] start_date
    #   @return [::Google::Type::Date]
    #     Required. The start date of this date range.
    # @!attribute [rw] end_date
    #   @return [::Google::Type::Date]
    #     Required. The end date (inclusive) of this date range.
    class FixedDateRange
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Options for relative date ranges.
    module RelativeDateRange
      # Default value. This value is unused.
      RELATIVE_DATE_RANGE_UNSPECIFIED = 0

      # The date the report is run.
      TODAY = 1

      # The date a day before the date that the report is run.
      YESTERDAY = 2

      # The full week in which this report is run. Could include dates in
      # the future.
      THIS_WEEK = 3

      # From the beginning of the calendar week (Monday to Sunday) in which the
      # up to and including the day the report is run.
      THIS_WEEK_TO_DATE = 29

      # The full month in which this report is run. Could include dates in
      # the future.
      THIS_MONTH = 4

      # From the beginning of the calendar month in which the report is run, to
      # up to and including the day the report is run.
      THIS_MONTH_TO_DATE = 26

      # The full quarter in which this report is run. Could include dates
      # in the future.
      THIS_QUARTER = 5

      # From the beginning of the calendar quarter in which the report is run,
      # up to and including the day the report is run.
      THIS_QUARTER_TO_DATE = 27

      # The full year in which this report is run. Could include dates in
      # the future.
      THIS_YEAR = 6

      # From the beginning of the calendar year in which the report is run, to
      # up to and including the day the report is run.
      THIS_YEAR_TO_DATE = 28

      # The entire previous calendar week, Monday to Sunday (inclusive),
      # preceding the calendar week the report is run.
      LAST_WEEK = 7

      # The entire previous calendar month preceding the calendar month the
      # report is run.
      LAST_MONTH = 8

      # The entire previous calendar quarter preceding the calendar quarter the
      # report is run.
      LAST_QUARTER = 9

      # The entire previous calendar year preceding the calendar year the
      # report is run.
      LAST_YEAR = 10

      # The 7 days preceding the day the report is run.
      LAST_7_DAYS = 11

      # The 30 days preceding the day the report is run.
      LAST_30_DAYS = 12

      # The 60 days preceding the day the report is run.
      LAST_60_DAYS = 13

      # The 90 days preceding the day the report is run.
      LAST_90_DAYS = 14

      # The 180 days preceding the day the report is run.
      LAST_180_DAYS = 15

      # The 360 days preceding the day the report is run.
      LAST_360_DAYS = 16

      # The 365 days preceding the day the report is run.
      LAST_365_DAYS = 17

      # The entire previous 3 calendar months preceding the calendar month the
      # report is run.
      LAST_3_MONTHS = 18

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_6_MONTHS = 19

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_12_MONTHS = 20

      # From 3 years before the report is run, to the day before the report is
      # run, inclusive.
      ALL_AVAILABLE = 21

      # Only valid when used in the comparison_date_range field. The complete
      # period preceding the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange of N days, this will
      # be a period of N days where the end date is the date preceding the
      # start date of the date_range.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame preceding the date_range. In the case
      # where the date_range does not capture the full period because a report
      # is run in the middle of that period, this will still be the full
      # preceding period. For example, if date_range is THIS_WEEK, but the
      # report is run on a Wednesday, THIS_WEEK will be Monday - Wednesday, but
      # PREVIOUS_PERIOD will be Monday - Sunday.
      PREVIOUS_PERIOD = 22

      # Only valid when used in the comparison_date_range field. The period
      # starting 1 year prior to the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange, this will be a date
      # range starting 1 year prior to the date_range start date and ending 1
      # year prior to the date_range end date.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame exactly 1 year prior to the date_range.
      # In the case where the date_range does not capture the full period
      # because a report is run in the middle of that period, this will still
      # be the full period 1 year prior. For example, if date range is
      # THIS_WEEK, but the report is run on a Wednesday, THIS_WEEK will be
      # Monday - Wednesday, but SAME_PERIOD_PREVIOUS_YEAR will be Monday -
      # Sunday.
      SAME_PERIOD_PREVIOUS_YEAR = 24
    end
  end

  # Valid time period columns.
  module TimePeriodColumn
    # Default value. Report will have no time period column.
    TIME_PERIOD_COLUMN_UNSPECIFIED = 0

    # A column for each date in the report.
    TIME_PERIOD_COLUMN_DATE = 1

    # A column for each week in the report.
    TIME_PERIOD_COLUMN_WEEK = 2

    # A column for each month in the report.
    TIME_PERIOD_COLUMN_MONTH = 3

    # A column for each quarter in the report.
    TIME_PERIOD_COLUMN_QUARTER = 4
  end

  # Reporting dimensions.
  module Dimension
    # Default value. This value is unused.
    DIMENSION_UNSPECIFIED = 0

    # The domain name of the advertiser.
    ADVERTISER_DOMAIN_NAME = 242

    # The ID used in an external system for advertiser identification
    ADVERTISER_EXTERNAL_ID = 228

    # The ID of an advertiser company assigned to an order
    ADVERTISER_ID = 131

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABELS = 230

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABEL_IDS = 229

    # The name of an advertiser company assigned to an order
    ADVERTISER_NAME = 132

    # The name of the contact associated with an advertiser company
    ADVERTISER_PRIMARY_CONTACT = 227

    # Shows an ENUM value describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION = 390

    # Shows a localized string describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION_NAME = 391

    # The code of the ad unit where the ad was requested.
    AD_UNIT_CODE = 64

    # The code of the first level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_1 = 65

    # The code of the tenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_10 = 74

    # The code of the eleventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_11 = 75

    # The code of the twelfth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_12 = 76

    # The code of the thirteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_13 = 77

    # The code of the fourteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_14 = 78

    # The code of the fifteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_15 = 79

    # The code of the sixteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_16 = 80

    # The code of the second level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_2 = 66

    # The code of the third level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_3 = 67

    # The code of the fourth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_4 = 68

    # The code of the fifth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_5 = 69

    # The code of the sixth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_6 = 70

    # The code of the seventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_7 = 71

    # The code of the eighth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_8 = 72

    # The code of the ninth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_9 = 73

    # The depth of the ad unit's hierarchy
    AD_UNIT_DEPTH = 101

    # The ID of the ad unit where the ad was requested.
    AD_UNIT_ID = 25

    # The full hierarchy of ad unit IDs where the ad was requested, from
    # root to leaf, excluding the root ad unit ID.
    AD_UNIT_ID_ALL_LEVEL = 27

    # The first level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_1 = 30

    # The tenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_10 = 48

    # The eleventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_11 = 50

    # The twelfth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_12 = 52

    # The thirteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_13 = 54

    # The fourteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_14 = 56

    # The fifteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_15 = 58

    # The sixteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_16 = 60

    # The second level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_2 = 32

    # The third level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_3 = 34

    # The fourth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_4 = 36

    # The fifth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_5 = 38

    # The sixth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_6 = 40

    # The seventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_7 = 42

    # The eighth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_8 = 44

    # The ninth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_9 = 46

    # The top-level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_TOP_LEVEL = 142

    # The name of the ad unit where the ad was requested.
    AD_UNIT_NAME = 26

    # The full hierarchy of ad unit names where the ad was requested, from
    # root to leaf, excluding the root ad unit name.
    AD_UNIT_NAME_ALL_LEVEL = 29

    # The first level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_1 = 31

    # The tenth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_10 = 49

    # The eleventh level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_11 = 51

    # The twelfth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_12 = 53

    # The thirteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_13 = 55

    # The fourteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_14 = 57

    # The fifteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_15 = 59

    # The sixteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_16 = 61

    # The second level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_2 = 33

    # The third level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_3 = 35

    # The fourth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_4 = 37

    # The fifth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_5 = 39

    # The sixth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_6 = 41

    # The seventh level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_7 = 43

    # The eighth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_8 = 45

    # The ninth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_9 = 47

    # The top-level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_TOP_LEVEL = 143

    # The reward amount of the ad unit where the ad was requested.
    AD_UNIT_REWARD_AMOUNT = 63

    # The reward type of the ad unit where the ad was requested.
    AD_UNIT_REWARD_TYPE = 62

    # The status of the ad unit
    AD_UNIT_STATUS = 206

    # The name of the status of the ad unit
    AD_UNIT_STATUS_NAME = 207

    # The app version.
    APP_VERSION = 392

    # The ID used in an external system for advertiser identification
    BACKFILL_ADVERTISER_EXTERNAL_ID = 349

    # The ID of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_ID = 346

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABELS = 351

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABEL_IDS = 350

    # The name of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_NAME = 347

    # The name of the contact associated with an advertiser company
    BACKFILL_ADVERTISER_PRIMARY_CONTACT = 348

    # Enum value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE = 378

    # Localized string value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE_NAME = 379

    # Represents the click-through URL of a Backfill creative
    BACKFILL_CREATIVE_CLICK_THROUGH_URL = 376

    # The ID of a Backfill creative
    BACKFILL_CREATIVE_ID = 370

    # Backfill creative name
    BACKFILL_CREATIVE_NAME = 371

    # Third party vendor name of a Backfill creative
    BACKFILL_CREATIVE_THIRD_PARTY_VENDOR = 377

    # Enum value of Backfill creative type
    BACKFILL_CREATIVE_TYPE = 374

    # Localized string name of Backfill creative type
    BACKFILL_CREATIVE_TYPE_NAME = 375

    # Whether a Backfill line item is archived.
    BACKFILL_LINE_ITEM_ARCHIVED = 278

    # Backfill line item comanion delivery option ENUM value.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION = 258

    # Localized Backfill line item comanion delivery option name.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 259

    # The computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS = 296

    # The localized name of the computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME = 297

    # The contracted units bought for the Backfill line item.
    BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY = 280

    # The cost per unit of the Backfill line item.
    BACKFILL_LINE_ITEM_COST_PER_UNIT = 272

    # Backfill line item cost type ENUM value.
    BACKFILL_LINE_ITEM_COST_TYPE = 264

    # Localized Backfill line item cost type name.
    BACKFILL_LINE_ITEM_COST_TYPE_NAME = 265

    # Represent the end date of a Backfill creative associated with a Backfill
    # line item
    BACKFILL_LINE_ITEM_CREATIVE_END_DATE = 381

    # The creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE = 290

    # The localized name of the creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 291

    # Represent the start date of a Backfill creative associated with a
    # Backfill line item
    BACKFILL_LINE_ITEM_CREATIVE_START_DATE = 380

    # The 3 letter currency code of the Backfill line item
    BACKFILL_LINE_ITEM_CURRENCY_CODE = 288

    # The progress made for the delivery of the Backfill line item.
    BACKFILL_LINE_ITEM_DELIVERY_INDICATOR = 274

    # The delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE = 292

    # The localized name of the delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 293

    # The discount of the BackfillLineItem in whole units in the
    # BackfillLineItem's currency code, or if unspecified the Network's
    # currency code.
    BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE = 294

    # The discount of the BackfillLineItem in percentage.
    BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE = 295

    # The end date of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE = 267

    # The end date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE_TIME = 269

    # The ENUM value of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE = 302

    # The localized name of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME = 257

    # The deal ID of the Backfill line item. Set for Programmatic Direct
    # campaigns.
    BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID = 285

    # The external ID of the Backfill line item.
    BACKFILL_LINE_ITEM_EXTERNAL_ID = 273

    # The frequency cap of the Backfill line item (descriptive string).
    BACKFILL_LINE_ITEM_FREQUENCY_CAP = 303

    # Backfill line item ID.
    BACKFILL_LINE_ITEM_ID = 298

    # The application that last modified the Backfill line item.
    BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP = 289

    # The total number of clicks delivered of the lifetime of the Backfill line
    # item.
    BACKFILL_LINE_ITEM_LIFETIME_CLICKS = 283

    # The total number of impressions delivered over the lifetime of the
    # Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS = 282

    # The total number of viewable impressions delivered over the lifetime of
    # the Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 284

    # Whether or not the Backfill line item is Makegood. Makegood refers to
    # free inventory offered to buyers to compensate for mistakes or
    # under-delivery in the original campaigns.
    BACKFILL_LINE_ITEM_MAKEGOOD = 276

    # Backfill line item name.
    BACKFILL_LINE_ITEM_NAME = 299

    # The cost of booking for the Backfill line item (non-CPD).
    BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE = 286

    # Whether a Backfill line item is eligible for opitimization.
    BACKFILL_LINE_ITEM_OPTIMIZABLE = 277

    # Goal type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE = 262

    # Localized goal type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 263

    # Unit type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 260

    # Localized unit type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 261

    # The priority of this Backfill line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Backfill line item.
    BACKFILL_LINE_ITEM_PRIORITY = 266

    # ENUM value describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS = 306

    # Localized string describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME = 307

    # The start date of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE = 268

    # The start date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE_TIME = 270

    # Backfill line item type ENUM value.
    BACKFILL_LINE_ITEM_TYPE = 300

    # Localized Backfill line item type name.
    BACKFILL_LINE_ITEM_TYPE_NAME = 301

    # Whether the Backfill line item end time and end date is set to
    # effectively never end.
    BACKFILL_LINE_ITEM_UNLIMITED_END = 271

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT = 275

    # The web property code used for dynamic allocation Backfill line items.
    BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE = 287

    # The ID of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_ID = 372

    # Name of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_NAME = 373

    # Backfill order agency.
    BACKFILL_ORDER_AGENCY = 313

    # Backfill order agency ID.
    BACKFILL_ORDER_AGENCY_ID = 314

    # Backfill order booked CPC.
    BACKFILL_ORDER_BOOKED_CPC = 315

    # Backfill order booked CPM.
    BACKFILL_ORDER_BOOKED_CPM = 316

    # Backfill order delivery status ENUM value.
    BACKFILL_ORDER_DELIVERY_STATUS = 340

    # Backfill order delivery status localized name.
    BACKFILL_ORDER_DELIVERY_STATUS_NAME = 341

    # Backfill order end date.
    BACKFILL_ORDER_END_DATE = 317

    # Backfill order end date and time.
    BACKFILL_ORDER_END_DATE_TIME = 319

    # Backfill order external ID.
    BACKFILL_ORDER_EXTERNAL_ID = 320

    # Backfill order id.
    BACKFILL_ORDER_ID = 338

    # Backfill order labels.
    BACKFILL_ORDER_LABELS = 334

    # Backfill order labels IDs.
    BACKFILL_ORDER_LABEL_IDS = 335

    # Backfill order lifetime clicks.
    BACKFILL_ORDER_LIFETIME_CLICKS = 322

    # Backfill order lifetime impressions.
    BACKFILL_ORDER_LIFETIME_IMPRESSIONS = 323

    # Backfill order name.
    BACKFILL_ORDER_NAME = 339

    # Backfill order PO number.
    BACKFILL_ORDER_PO_NUMBER = 324

    # Whether the Backfill order is programmatic.
    BACKFILL_ORDER_PROGRAMMATIC = 321

    # Backfill order sales person.
    BACKFILL_ORDER_SALESPERSON = 325

    # Backfill order secondary sales people.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE = 329

    # Backfill order secondary sales people ID.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID = 328

    # Backfill order secondary traffickers.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS = 331

    # Backfill order secondary traffickers ID.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID = 330

    # Backfill order start date.
    BACKFILL_ORDER_START_DATE = 332

    # Backfill order start date and time.
    BACKFILL_ORDER_START_DATE_TIME = 333

    # Backfill order trafficker.
    BACKFILL_ORDER_TRAFFICKER = 326

    # Backfill order trafficker ID.
    BACKFILL_ORDER_TRAFFICKER_ID = 327

    # Whether the Backfill order end time and end date is set to effectively
    # never end.
    BACKFILL_ORDER_UNLIMITED_END = 318

    # The ID of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_ID = 336

    # The name of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_NAME = 337

    # The amount of information about the Publisher's page sent to the buyer
    # who purchased the impressions.
    BRANDING_TYPE = 383

    # The localized version of branding type, the amount of information about
    # the Publisher's page sent to the buyer who purchased the impressions.
    BRANDING_TYPE_NAME = 384

    # Browser category.
    BROWSER_CATEGORY = 119

    # Browser category name.
    BROWSER_CATEGORY_NAME = 120

    # The ID of the browser.
    BROWSER_ID = 235

    # The name of the browser.
    BROWSER_NAME = 236

    # Mobile carrier ID.
    CARRIER_ID = 369

    # Name of the mobile carrier.
    CARRIER_NAME = 368

    # The ID of an advertiser, classified by Google, associated with a creative
    # transacted
    CLASSIFIED_ADVERTISER_ID = 133

    # The name of an advertiser, classified by Google, associated with a
    # creative transacted
    CLASSIFIED_ADVERTISER_NAME = 134

    # ID of the brand, as classified by Google,
    CLASSIFIED_BRAND_ID = 243

    # Name of the brand, as classified by Google,
    CLASSIFIED_BRAND_NAME = 244

    # ID of the video content served.
    CONTENT_ID = 246

    # Name of the video content served.
    CONTENT_NAME = 247

    # The criteria ID of the country in which the ad served.
    COUNTRY_ID = 11

    # The name of the country in which the ad served.
    COUNTRY_NAME = 12

    # Enum value of creative billing type
    CREATIVE_BILLING_TYPE = 366

    # Localized string value of creative billing type
    CREATIVE_BILLING_TYPE_NAME = 367

    # Represents the click-through URL of a creative
    CREATIVE_CLICK_THROUGH_URL = 174

    # The ID of a creative
    CREATIVE_ID = 138

    # Creative name
    CREATIVE_NAME = 139

    # Creative technology ENUM
    CREATIVE_TECHNOLOGY = 148

    # Creative technology locallized name
    CREATIVE_TECHNOLOGY_NAME = 149

    # Third party vendor name of a creative
    CREATIVE_THIRD_PARTY_VENDOR = 361

    # Enum value of creative type
    CREATIVE_TYPE = 344

    # Localized string name of creative type
    CREATIVE_TYPE_NAME = 345

    # Breaks down reporting data by date.
    DATE = 3

    # Breaks down reporting data by day of the week. Monday is 1 and 7 is
    # Sunday.
    DAY_OF_WEEK = 4

    # Demand channel.
    DEMAND_CHANNEL = 9

    # Demand channel name.
    DEMAND_CHANNEL_NAME = 10

    # Demand subchannel.
    DEMAND_SUBCHANNEL = 22

    # Demand subchannel name.
    DEMAND_SUBCHANNEL_NAME = 23

    # The device on which an ad was served.
    DEVICE = 226

    # The device category to which an ad is being targeted.
    DEVICE_CATEGORY = 15

    # The name of the category of device (smartphone, feature phone, tablet, or
    # desktop) to which an ad is being targeted.
    DEVICE_CATEGORY_NAME = 16

    # The localized name of the device on which an ad was served.
    DEVICE_NAME = 225

    # ID of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_ID = 185

    # Name of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186

    # The ID of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_ID = 248

    # The name of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_NAME = 249

    # Breaks down reporting data by hour in one day.
    HOUR = 100

    # The interaction type of an ad.
    INTERACTION_TYPE = 223

    # The localized name of the interaction type of an ad.
    INTERACTION_TYPE_NAME = 224

    # Inventory format.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT = 17

    # Inventory format name.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT_NAME = 18

    # Inventory type.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE = 19

    # Inventory type name.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE_NAME = 20

    # Whether traffic is Adx Direct.
    IS_ADX_DIRECT = 382

    # Whether traffic is First Look.
    IS_FIRST_LOOK_DEAL = 401

    # The Custom Targeting Value ID
    KEY_VALUES_ID = 214

    # The Custom Targeting Value formatted like <key_name>=<value_name>
    KEY_VALUES_NAME = 215

    # Whether a Line item is archived.
    LINE_ITEM_ARCHIVED = 188

    # Line item comanion delivery option ENUM value.
    LINE_ITEM_COMPANION_DELIVERY_OPTION = 204

    # Localized line item comanion delivery option name.
    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205

    # The computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS = 250

    # The localized name of the computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS_NAME = 251

    # The contracted units bought for the Line item.
    LINE_ITEM_CONTRACTED_QUANTITY = 92

    # The cost per unit of the Line item.
    LINE_ITEM_COST_PER_UNIT = 85

    # Line item cost type ENUM value.
    LINE_ITEM_COST_TYPE = 212

    # Localized line item cost type name.
    LINE_ITEM_COST_TYPE_NAME = 213

    # Represent the end date of a creative associated with line item
    LINE_ITEM_CREATIVE_END_DATE = 176

    # The creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE = 189

    # The localized name of the creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190

    # Represent the start date of a creative associated with line item
    LINE_ITEM_CREATIVE_START_DATE = 175

    # The 3 letter currency code of the Line Item
    LINE_ITEM_CURRENCY_CODE = 180

    # The progress made for the delivery of the Line item.
    LINE_ITEM_DELIVERY_INDICATOR = 87

    # The delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE = 191

    # The localized name of the delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192

    # The discount of the LineItem in whole units in the LineItem's currency
    # code, or if unspecified the Network's currency code.
    LINE_ITEM_DISCOUNT_ABSOLUTE = 195

    # The discount of the LineItem in percentage.
    LINE_ITEM_DISCOUNT_PERCENTAGE = 196

    # The end date of the Line item.
    LINE_ITEM_END_DATE = 81

    # The end date and time of the Line item.
    LINE_ITEM_END_DATE_TIME = 83

    # The ENUM value of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE = 201

    # The localized name of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202

    # The deal ID of the Line item. Set for Programmatic Direct campaigns.
    LINE_ITEM_EXTERNAL_DEAL_ID = 97

    # The external ID of the Line item.
    LINE_ITEM_EXTERNAL_ID = 86

    # The frequency cap of the Line item (descriptive string).
    LINE_ITEM_FREQUENCY_CAP = 256

    # Line item ID.
    LINE_ITEM_ID = 1

    # The application that last modified the Line Item.
    LINE_ITEM_LAST_MODIFIED_BY_APP = 181

    # The total number of clicks delivered of the lifetime of the Line item.
    LINE_ITEM_LIFETIME_CLICKS = 95

    # The total number of impressions delivered over the lifetime of the
    # Line item.
    LINE_ITEM_LIFETIME_IMPRESSIONS = 94

    # The total number of viewable impressions delivered over the lifetime of
    # the Line item.
    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96

    # Whether or not the Line item is Makegood. Makegood refers to free
    # inventory offered to buyers to compensate for mistakes or under-delivery
    # in the original campaigns.
    LINE_ITEM_MAKEGOOD = 89

    # Line item Name.
    LINE_ITEM_NAME = 2

    # The cost of booking for the Line item (non-CPD).
    LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98

    # Whether a Line item is eligible for opitimization.
    LINE_ITEM_OPTIMIZABLE = 90

    # Goal type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE = 210

    # Localized goal type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211

    # The total number of impressions or clicks that are reserved for a
    # line item. For line items of type BULK or PRICE_PRIORITY, this represents
    # the number of remaining impressions reserved. If the line item has an
    # impression cap goal, this represents the number of impressions or
    # conversions that the line item will stop serving at if reached.
    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93

    # The percentage of impressions or clicks that are reserved for a
    # line item. For line items of type SPONSORSHIP, this represents the
    # percentage of available impressions reserved. For line items of type
    # NETWORK or HOUSE, this represents the percentage of remaining impressions
    # reserved.
    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396

    # Unit type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208

    # Localized unit type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209

    # The priority of this Line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Line item.
    LINE_ITEM_PRIORITY = 24

    # ENUM value describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS = 304

    # Localized string describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS_NAME = 305

    # The start date of the Line item.
    LINE_ITEM_START_DATE = 82

    # The start date and time of the Line item.
    LINE_ITEM_START_DATE_TIME = 84

    # Line item type ENUM value.
    LINE_ITEM_TYPE = 193

    # Localized line item type name.
    LINE_ITEM_TYPE_NAME = 194

    # Whether the Line item end time and end date is set to effectively never
    # end.
    LINE_ITEM_UNLIMITED_END = 187

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    LINE_ITEM_VALUE_COST_PER_UNIT = 88

    # The web property code used for dynamic allocation Line Items.
    LINE_ITEM_WEB_PROPERTY_CODE = 179

    # The ID of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_ID = 140

    # Name of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_NAME = 141

    # Whether the mobile app is free.
    MOBILE_APP_FREE = 128

    # URL of app icon for the mobile app.
    MOBILE_APP_ICON_URL = 129

    # The ID of the Mobile App.
    MOBILE_APP_ID = 123

    # The name of the mobile app.
    MOBILE_APP_NAME = 127

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS = 311

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS_NAME = 312

    # The App Store of the mobile app.
    MOBILE_APP_STORE = 125

    # The localized name of the mobile app store.
    MOBILE_APP_STORE_NAME = 245

    # Mobile inventory type.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    # Values match the Inventory type dimension available in the Overview Home
    # dashboard. Note: Video takes precedence over any other value, for
    # example, if there is an in-stream video impression on a desktop device,
    # it will be attributed to in-stream video and not desktop web.
    MOBILE_INVENTORY_TYPE = 99

    # Mobile inventory type name.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    MOBILE_INVENTORY_TYPE_NAME = 21

    # SDK version of the mobile device.
    MOBILE_SDK_VERSION_NAME = 130

    # Breaks down reporting data by month and year.
    MONTH_YEAR = 6

    # Native ad format ID.
    NATIVE_AD_FORMAT_ID = 255

    # Native ad format name.
    NATIVE_AD_FORMAT_NAME = 254

    # Native style ID.
    NATIVE_STYLE_ID = 253

    # Native style name.
    NATIVE_STYLE_NAME = 252

    # Operating system category.
    OPERATING_SYSTEM_CATEGORY = 117

    # Operating system category name.
    OPERATING_SYSTEM_CATEGORY_NAME = 118

    # ID of the operating system version.
    OPERATING_SYSTEM_VERSION_ID = 238

    # Details of the operating system, including version.
    OPERATING_SYSTEM_VERSION_NAME = 237

    # Order agency.
    ORDER_AGENCY = 150

    # Order agency ID.
    ORDER_AGENCY_ID = 151

    # Order booked CPC.
    ORDER_BOOKED_CPC = 152

    # Order booked CPM.
    ORDER_BOOKED_CPM = 153

    # Order delivery status ENUM value.
    ORDER_DELIVERY_STATUS = 231

    # Order delivery status localized name.
    ORDER_DELIVERY_STATUS_NAME = 239

    # Order end date.
    ORDER_END_DATE = 154

    # Order end date and time.
    ORDER_END_DATE_TIME = 155

    # Order external ID.
    ORDER_EXTERNAL_ID = 156

    # Order id.
    ORDER_ID = 7

    # Order labels.
    ORDER_LABELS = 170

    # Order labels IDs.
    ORDER_LABEL_IDS = 171

    # Order lifetime clicks.
    ORDER_LIFETIME_CLICKS = 158

    # Order lifetime impressions.
    ORDER_LIFETIME_IMPRESSIONS = 159

    # Order name.
    ORDER_NAME = 8

    # Order PO number.
    ORDER_PO_NUMBER = 160

    # Whether the Order is programmatic.
    ORDER_PROGRAMMATIC = 157

    # Order sales person.
    ORDER_SALESPERSON = 161

    # Order secondary sales people.
    ORDER_SECONDARY_SALESPEOPLE = 164

    # Order secondary sales people ID.
    ORDER_SECONDARY_SALESPEOPLE_ID = 165

    # Order secondary traffickers.
    ORDER_SECONDARY_TRAFFICKERS = 166

    # Order secondary traffickers ID.
    ORDER_SECONDARY_TRAFFICKERS_ID = 167

    # Order start date.
    ORDER_START_DATE = 168

    # Order start date and time.
    ORDER_START_DATE_TIME = 169

    # Order trafficker.
    ORDER_TRAFFICKER = 162

    # Order trafficker ID.
    ORDER_TRAFFICKER_ID = 163

    # Whether the Order end time and end date is set to effectively never
    # end.
    ORDER_UNLIMITED_END = 203

    # Placement ID
    PLACEMENT_ID = 113

    # The full list of placement IDs associated with the ad unit.
    PLACEMENT_ID_ALL = 144

    # Placement name
    PLACEMENT_NAME = 114

    # The full list of placement names associated with the ad unit.
    PLACEMENT_NAME_ALL = 145

    # Placement status ENUM value
    PLACEMENT_STATUS = 362

    # The full list of placement status ENUM values associated with the ad
    # unit.
    PLACEMENT_STATUS_ALL = 363

    # Localized placement status name.
    PLACEMENT_STATUS_NAME = 364

    # The full list of localized placement status names associated with the ad
    # unit.
    PLACEMENT_STATUS_NAME_ALL = 365

    # The ID of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_ID = 240

    # The name of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_NAME = 241

    # Programmatic channel.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL = 13

    # Programmatic channel name.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL_NAME = 14

    # The size of a rendered creative, It can differ with the creative's size
    # if a creative is shown in an ad slot of a different size.
    RENDERED_CREATIVE_SIZE = 343

    # Inventory Requested Ad Sizes dimension
    REQUESTED_AD_SIZES = 352

    # Request type ENUM
    REQUEST_TYPE = 146

    # Request type locallized name
    REQUEST_TYPE_NAME = 147

    # Indicates if a request was eligible for server-side unwrapping.
    SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597

    # Information about domain or subdomains.
    SITE = 387

    # The ID of the browser, device or other environment into which a line item
    # or creative was served.
    TARGETING_ID = 232

    # Information about the browser, device and other environments into which
    # a line item or creative was served.
    TARGETING_NAME = 233

    # The way in which advertisers targeted their ads.
    TARGETING_TYPE = 385

    # The localized name of the way in which advertisers targeted their ads.
    TARGETING_TYPE_NAME = 386

    # Inventory Traffic source dimension
    TRAFFIC_SOURCE = 388

    # Inventory Traffic source dimension name
    TRAFFIC_SOURCE_NAME = 389

    # Unified pricing rule ID dimension
    UNIFIED_PRICING_RULE_ID = 393

    # Unified pricing rule name dimension
    UNIFIED_PRICING_RULE_NAME = 394

    # The video placement enum as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT = 172

    # The localized name of the video placement as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT_NAME = 173

    # Breaks down reporting data by week of the year.
    WEEK = 5

    # Name of the company within a yield group
    YIELD_GROUP_BUYER_NAME = 184

    # ID of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_ID = 182

    # Name of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_NAME = 183

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10_000

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10_001

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10_002

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10_003

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10_004

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10_005

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10_006

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10_007

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10_008

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10_009

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10_010

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10_011

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10_012

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10_013

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10_014

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11_000

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11_001

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11_002

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11_003

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11_004

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11_005

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11_006

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11_007

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11_008

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11_009

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11_010

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11_011

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11_012

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11_013

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11_014

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_0_OPTION_ID = 12_000

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_1_OPTION_ID = 12_001

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_2_OPTION_ID = 12_002

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_3_OPTION_ID = 12_003

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_4_OPTION_ID = 12_004

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_5_OPTION_ID = 12_005

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_6_OPTION_ID = 12_006

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_7_OPTION_ID = 12_007

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_8_OPTION_ID = 12_008

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_9_OPTION_ID = 12_009

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_10_OPTION_ID = 12_010

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_11_OPTION_ID = 12_011

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_12_OPTION_ID = 12_012

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_13_OPTION_ID = 12_013

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_14_OPTION_ID = 12_014

    # Custom field value for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 0 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_0_VALUE = 13_000

    # Custom field value for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 1 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_1_VALUE = 13_001

    # Custom field value for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 2 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_2_VALUE = 13_002

    # Custom field value for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 3 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_3_VALUE = 13_003

    # Custom field value for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 4 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_4_VALUE = 13_004

    # Custom field value for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 5 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_5_VALUE = 13_005

    # Custom field value for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 6 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_6_VALUE = 13_006

    # Custom field value for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 7 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_7_VALUE = 13_007

    # Custom field value for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 8 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_8_VALUE = 13_008

    # Custom field value for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 9 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_9_VALUE = 13_009

    # Custom field value for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_10_VALUE = 13_010

    # Custom field value for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_11_VALUE = 13_011

    # Custom field value for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_12_VALUE = 13_012

    # Custom field value for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_13_VALUE = 13_013

    # Custom field value for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_14_VALUE = 13_014

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14_000

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14_001

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14_002

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14_003

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14_004

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14_005

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14_006

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14_007

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14_008

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14_009

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14_010

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14_011

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14_012

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14_013

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14_014

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_0_VALUE = 15_000

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_1_VALUE = 15_001

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_2_VALUE = 15_002

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_3_VALUE = 15_003

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_4_VALUE = 15_004

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_5_VALUE = 15_005

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_6_VALUE = 15_006

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_7_VALUE = 15_007

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_8_VALUE = 15_008

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_9_VALUE = 15_009

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_10_VALUE = 15_010

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_11_VALUE = 15_011

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_12_VALUE = 15_012

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_13_VALUE = 15_013

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_14_VALUE = 15_014

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16_000

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16_001

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16_002

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16_003

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16_004

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16_005

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16_006

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16_007

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16_008

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16_009

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16_010

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16_011

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16_012

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16_013

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16_014

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 0 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17_000

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 1 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17_001

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 2 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17_002

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 3 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17_003

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 4 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17_004

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 5 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17_005

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 6 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17_006

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 7 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17_007

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 8 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17_008

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 9 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17_009

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17_010

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17_011

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17_012

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17_013

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17_014

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18_000

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18_001

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18_002

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18_003

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18_004

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18_005

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18_006

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18_007

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18_008

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18_009

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18_010

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18_011

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18_012

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18_013

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18_014

    # Custom field value for Backfill order with custom field ID equal to the
    # ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19_000

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19_001

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19_002

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19_003

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19_004

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19_005

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19_006

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19_007

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19_008

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19_009

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19_010

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19_011

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19_012

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19_013

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19_014

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20_000

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20_001

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20_002

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20_003

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20_004

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20_005

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20_006

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20_007

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20_008

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20_009

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20_010

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20_011

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20_012

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20_013

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20_014

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21_000

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 1 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21_001

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 2 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21_002

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 3 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21_003

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 4 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21_004

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 5 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21_005

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 6 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21_006

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 7 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21_007

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 8 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21_008

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 9 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21_009

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21_010

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21_011

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21_012

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21_013

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21_014

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE_ID = 100_000

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE_ID = 100_001

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE_ID = 100_002

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE_ID = 100_003

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE_ID = 100_004

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE_ID = 100_005

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE_ID = 100_006

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE_ID = 100_007

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE_ID = 100_008

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE_ID = 100_009

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE = 101_000

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE = 101_001

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE = 101_002

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE = 101_003

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE = 101_004

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE = 101_005

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE = 101_006

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 7 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE = 101_007

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE = 101_008

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE = 101_009
  end

  # Reporting metrics.
  module Metric
    # Default value. This value is unused.
    METRIC_UNSPECIFIED = 0

    # Active View total average time in seconds that specific impressions are
    # reported as being viewable.
    ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 61

    # Total number of impressions that were eligible to measure viewability.
    ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 58

    # The total number of impressions that were sampled and measured by active
    # view.
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 57

    # The percentage of total impressions that were measurable by active view
    # (out of all the total impressions sampled for active view).
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 60

    # The total number of impressions viewed on the user's screen.
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 56

    # The percentage of total impressions viewed on the user's screen (out of
    # the total impressions measurable by active view).
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 59

    # Active View AdSense average time in seconds that specific impressions are
    # reported as being viewable.
    ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 73

    # Total number of impressions delivered by AdSense that were eligible to
    # measure viewability.
    ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 70

    # The number of impressions delivered by AdSense that were sampled, and
    # measurable by active view.
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 69

    # The percentage of impressions delivered by AdSense that were measurable
    # by active view (out of all AdSense impressions sampled for active view).
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 72

    # The number of impressions delivered by AdSense viewed on the user's
    # screen.
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 68

    # The percentage of impressions delivered by AdSense viewed on the user's
    # screen (out of AdSense impressions measurable by active view).
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 71

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by AdSense through line item dynamic allocation.
    ADSENSE_AVERAGE_ECPM = 26

    # Number of clicks delivered by AdSense demand channel.
    ADSENSE_CLICKS = 23

    # The ratio of impressions served by AdSense that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. The
    # AdSense CTR is calculated as: (AdSense clicks / AdSense impressions).
    ADSENSE_CTR = 24

    # Total impressions delivered by AdSense.
    ADSENSE_IMPRESSIONS = 22

    # Ratio of clicks delivered by AdSense through line item dynamic allocation
    # in relation to the total clicks delivered.
    ADSENSE_PERCENT_CLICKS = 28

    # Ratio of impressions delivered by AdSense through line item dynamic
    # allocation in relation to the total impressions delivered.
    ADSENSE_PERCENT_IMPRESSIONS = 27

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue.
    ADSENSE_PERCENT_REVENUE = 29

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    ADSENSE_PERCENT_REVENUE_WITHOUT_CPD = 30

    # The total number of times that an AdSense ad is delivered.
    ADSENSE_RESPONSES_SERVED = 41

    # Revenue generated from AdSense through line item dynamic allocation,
    # calculated in the network's currency and time zone.
    ADSENSE_REVENUE = 25

    # Active View AdExchange average time in seconds that specific impressions
    # are reported as being viewable.
    AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 79

    # Total number of impressions delivered by Ad Exchange that were eligible
    # to measure viewability.
    AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 76

    # The number of impressions delivered by Ad Exchange that were sampled, and
    # measurable by active view.
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 75

    # The percentage of impressions delivered by Ad Exchange that were
    # measurable by active view (out of all Ad Exchange impressions sampled for
    # active view).
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 78

    # The number of impressions delivered by Ad Exchange viewed on the user's
    # screen.
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 74

    # The percentage of impressions delivered by Ad Exchange viewed on the
    # user's screen (out of Ad Exchange impressions measurable by active view).
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 77

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by Ad Exchange through line item dynamic allocation.
    AD_EXCHANGE_AVERAGE_ECPM = 18

    # Number of clicks delivered by the Ad Exchange.
    AD_EXCHANGE_CLICKS = 15

    # The ratio of impressions served by the Ad Exchange that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. Ad
    # Exchange CTR is calculated as: (Ad Exchange clicks / Ad Exchange
    # impressions).
    AD_EXCHANGE_CTR = 16

    # Total impressions delivered by the Ad Exchange.
    AD_EXCHANGE_IMPRESSIONS = 14

    # Ratio of clicks delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total clicks delivered.
    AD_EXCHANGE_PERCENT_CLICKS = 20

    # Ratio of impressions delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total impressions delivered.
    AD_EXCHANGE_PERCENT_IMPRESSIONS = 19

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue.
    AD_EXCHANGE_PERCENT_REVENUE = 21

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD = 31

    # The total number of times that an Ad Exchange ad is delivered.
    AD_EXCHANGE_RESPONSES_SERVED = 42

    # Revenue generated from the Ad Exchange through line item dynamic
    # allocation, calculated in your network's currency and time zone.
    AD_EXCHANGE_REVENUE = 17

    # The total number of times that an ad request is sent to the ad server
    # including dynamic allocation.
    AD_REQUESTS = 38

    # Active View ad server average time in seconds that specific impressions
    # are reported as being viewable.
    AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 67

    # Total number of impressions delivered by the ad server that were eligible
    # to measure viewability.
    AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 64

    # The number of impressions delivered by the ad server that were sampled,
    # and measurable by active view.
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 63

    # The percentage of impressions delivered by the ad server that were
    # measurable by active view (out of all the ad server impressions sampled
    # for active view).
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 66

    # The number of impressions delivered by the ad server viewed on the user's
    # screen.
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 62

    # The percentage of impressions delivered by the ad server viewed on the
    # user's screen (out of the ad server impressions measurable by active
    # view).
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 65

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server.
    AD_SERVER_AVERAGE_ECPM = 34

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server, excluding CPD value.
    AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD = 10

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown.
    AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS = 262

    # Total clicks served by the Google Ad Manager server. It usually takes
    # about 30 minutes for new clicks to be recorded and added to the total
    # displayed in reporting.
    AD_SERVER_CLICKS = 7

    # CPD revenue earned, calculated in your network's currency, for
    # the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_CPD_REVENUE = 32

    # Ratio of impressions served by the Google Ad Manager server that resulted
    # in users clicking on an ad. The clickthrough rate (CTR) is updated
    # nightly. The ad server CTR is calculated as: (Ad server clicks / Ad
    # server impressions).
    AD_SERVER_CTR = 8

    # Total impressions delivered by the Ad Server.
    AD_SERVER_IMPRESSIONS = 6

    # Ratio of clicks delivered by the Google Ad Manager server in relation to
    # the total clicks delivered.
    AD_SERVER_PERCENT_CLICKS = 12

    # Ratio of impressions delivered by the Google Ad Manager server in
    # relation to the total impressions delivered.
    AD_SERVER_PERCENT_IMPRESSIONS = 11

    # Ratio of revenue generated by the Google Ad Manager server in relation
    # to the total revenue.
    AD_SERVER_PERCENT_REVENUE = 35

    # Ratio of revenue generated by the Google Ad Manager server (excluding
    # CPD) in relation to the total revenue.
    AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13

    # The total number of times that an ad is served by the ad server.
    AD_SERVER_RESPONSES_SERVED = 40

    # All CPM, CPC, and CPD revenue earned, calculated in your network's
    # currency, for the ads delivered by the Google Ad Manager server.
    # Sum of all booked revenue.
    AD_SERVER_REVENUE = 33

    # Revenue (excluding CPD) earned, calculated in your network's currency,
    # for the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_REVENUE_WITHOUT_CPD = 9

    # The number of tracked ads delivered by the ad server.
    AD_SERVER_TRACKED_ADS = 264

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown, before invalid traffic filtrations by
    # Ad Server.
    AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261

    # Total clicks delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_CLICKS = 259

    # Total impressions delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_IMPRESSIONS = 260

    # The number of tracked ads delivered by the ad server before invalid
    # traffic filtrations.
    AD_SERVER_UNFILTERED_TRACKED_ADS = 263

    # eCPM averaged across the Google Ad Manager server, AdSense,
    # and Ad Exchange.
    AVERAGE_ECPM = 37

    # eCPM averaged across the Google Ad Manager server (excluding CPD),
    # AdSense, and Ad Exchange.
    AVERAGE_ECPM_WITHOUT_CPD = 5

    # The number of times a user clicked on an ad.
    CLICKS = 2

    # The total number of times that the code for an ad is served by the ad
    # server including dynamic allocation.
    CODE_SERVED_COUNT = 44

    # For standard ads, your ad clickthrough rate (CTR) is the number of ad
    # clicks divided by the number of individual ad impressions expressed as a
    # fraction. Ad CTR = Clicks / Ad impressions.
    CTR = 3

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129

    # The number of auction impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131

    # The number of impressions sold by Google in partner sales.
    GOOGLE_SOLD_IMPRESSIONS = 130

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127

    # The number of reservation impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126

    # Total impressions from the Google Ad Manager server, AdSense,
    # Ad Exchange, and yield group partners.
    IMPRESSIONS = 1

    # The number of filled pod requests (filled by partner or Google) in
    # partner sales.
    PARTNER_SALES_FILLED_POD_REQUESTS = 135

    # The percent of filled requests to total ad requests in
    # partner sales.
    PARTNER_SALES_FILL_RATE = 136

    # The percent of partner filled requests to total ad requests
    # in partner sales.
    PARTNER_SALES_PARTNER_MATCH_RATE = 137

    # The number of queries eligible for partner sales.
    PARTNER_SALES_QUERIES = 132

    # The number of partner unfilled impressions in partner sales.
    # If a pod request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNFILLED_IMPRESSIONS = 133

    # The number of partner unmatched queries in partner sales.
    # If an ad request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNMATCHED_QUERIES = 134

    # The number of code served sold by partner in partner sales.
    PARTNER_SOLD_CODE_SERVED = 125

    # The number of coviewed impressions sold by partner in partner sales.
    PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124

    # The number of impressions sold by partner in partner sales.
    PARTNER_SOLD_IMPRESSIONS = 123

    # The total number of ad requests eligible for programmatic inventory,
    # including Programmatic Guaranteed, Preferred Deals, backfill, and open
    # auction.
    PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177

    # The number of programmatic responses served divided by the number of
    # programmatic eligible ad requests. Includes Ad Exchange, Open Bidding,
    # and Preferred Deals.
    PROGRAMMATIC_MATCH_RATE = 178

    # Total number of ad responses served from programmatic demand sources.
    # Includes Ad Exchange, Open Bidding, and Preferred Deals.
    #
    # Differs from AD_EXCHANGE_RESPONSES_SERVED, which doesn't include Open
    # Bidding ad requests.
    PROGRAMMATIC_RESPONSES_SERVED = 176

    # The total number of times that an ad is served by the ad server including
    # dynamic allocation.
    RESPONSES_SERVED = 39

    # Total amount of CPM, CPC, and CPD revenue based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE = 36

    # Total amount of revenue (excluding CPD) based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE_WITHOUT_CPD = 4

    # The average latency in milliseconds across all server-side unwrapping
    # callout requests. There is no special handling for error or timeout
    # responses. This reflects the entire chain of a parent callout request,
    # which may result in multiple child callouts. This metric is not sliced by
    # child callout dimensions.
    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434

    # The total number of server-side unwrapping callout requests.
    SERVER_SIDE_UNWRAPPING_CALLOUTS = 435

    # The total number of server-side unwrapping callouts that returned an
    # empty response. Timeouts are not considered empty responses.
    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436

    # The total number of server-side unwrapping callouts that returned an
    # error response. Timeouts and empty responses are not considered errors.
    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437

    # The total number of successfully unwrapped, non-empty server-side
    # wrapping callouts. Successful unwrapping does not indicate that the
    # resulting creative was served.
    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438

    # The total number of server-side unwrapping callouts that timed out before
    # returning a response.
    SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439

    # The total number of missed impressions due to the ad servers' inability
    # to find ads to serve including dynamic allocation.
    UNFILLED_IMPRESSIONS = 45

    # The total number of times that an ad is not returned by the ad server.
    UNMATCHED_AD_REQUESTS = 43

    # Number of times an Offerwall message was shown to users.
    USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121

    # The number of messages where the user gained an entitlement.
    USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122

    # The number of user interactions with a video, on average, such as pause,
    # full screen, mute, etc.
    VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92

    # The number of times a user collapses a video, either to its original size
    # or to a different size.
    VIDEO_INTERACTION_COLLAPSES = 93

    # The number of times a user expands a video.
    VIDEO_INTERACTION_EXPANDS = 95

    # The number of times ad clip played in full screen mode.
    VIDEO_INTERACTION_FULL_SCREENS = 96

    # The number of times video player was in mute state during play of ad
    # clip.
    VIDEO_INTERACTION_MUTES = 97

    # The number of times user paused ad clip.
    VIDEO_INTERACTION_PAUSES = 98

    # The number of times the user unpaused the video.
    VIDEO_INTERACTION_RESUMES = 99

    # The number of times a user rewinds the video.
    VIDEO_INTERACTION_REWINDS = 100

    # The number of times a user unmutes the video.
    VIDEO_INTERACTION_UNMUTES = 101

    # The number of times a skippable video is skipped.
    VIDEO_INTERACTION_VIDEO_SKIPS = 102

    # The number of total creative serves in video realtime reporting.
    VIDEO_REAL_TIME_CREATIVE_SERVES = 139

    # The number of errors of type 100 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_100_COUNT = 143

    # The number of errors of type 101 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_101_COUNT = 144

    # The number of errors of type 102 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_102_COUNT = 145

    # The number of errors of type 200 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_200_COUNT = 146

    # The number of errors of type 201 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_201_COUNT = 147

    # The number of errors of type 202 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_202_COUNT = 148

    # The number of errors of type 203 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_203_COUNT = 149

    # The number of errors of type 300 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_300_COUNT = 150

    # The number of errors of type 301 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_301_COUNT = 151

    # The number of errors of type 302 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_302_COUNT = 152

    # The number of errors of type 303 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_303_COUNT = 153

    # The number of errors of type 400 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_400_COUNT = 154

    # The number of errors of type 401 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_401_COUNT = 155

    # The number of errors of type 402 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_402_COUNT = 156

    # The number of errors of type 403 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_403_COUNT = 157

    # The number of errors of type 405 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_405_COUNT = 158

    # The number of errors of type 406 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_406_COUNT = 159

    # The number of errors of type 407 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_407_COUNT = 160

    # The number of errors of type 408 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_408_COUNT = 161

    # The number of errors of type 409 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_409_COUNT = 162

    # The number of errors of type 410 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_410_COUNT = 163

    # The number of errors of type 500 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_500_COUNT = 164

    # The number of errors of type 501 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_501_COUNT = 165

    # The number of errors of type 502 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_502_COUNT = 166

    # The number of errors of type 503 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_503_COUNT = 167

    # The number of errors of type 600 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_600_COUNT = 168

    # The number of errors of type 601 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_601_COUNT = 169

    # The number of errors of type 602 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_602_COUNT = 170

    # The number of errors of type 603 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_603_COUNT = 171

    # The number of errors of type 604 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_604_COUNT = 172

    # The number of errors of type 900 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_900_COUNT = 173

    # The number of errors of type 901 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_901_COUNT = 174

    # The number of total impressions in video realtime reporting.
    VIDEO_REAL_TIME_IMPRESSIONS = 138

    # The number of matched queries in video realtime reporting.
    VIDEO_REAL_TIME_MATCHED_QUERIES = 140

    # The number of all errors in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175

    # The number of total queries in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_QUERIES = 142

    # The number of unmatched queries in video realtime reporting.
    VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141

    # Number of times that the publisher specified a video ad played
    # automatically.
    VIDEO_VIEWERSHIP_AUTO_PLAYS = 103

    # Average percentage of the video watched by users.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104

    # Average time(seconds) users watched the video.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105

    # Number of times that the publisher specified a video ad was clicked to
    # play.
    VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106

    # The number of times the video played to completion.
    VIDEO_VIEWERSHIP_COMPLETES = 107

    # Percentage of times the video played to the end.
    VIDEO_VIEWERSHIP_COMPLETION_RATE = 108

    # The number of engaged views: ad is viewed to completion or for 30s,
    # whichever comes first.
    VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109

    # The number of times the video played to 25% of its length.
    VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110

    # The number of times the video reached its midpoint during play.
    VIDEO_VIEWERSHIP_MIDPOINTS = 111

    # The number of times a skip button is shown in video.
    VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112

    # The number of impressions where the video was played.
    VIDEO_VIEWERSHIP_STARTS = 113

    # The number of times the video played to 75% of its length.
    VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114

    # The number of times an error occurred, such as a VAST redirect error, a
    # video playback error, or an invalid response error.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115

    # The percentage of video error count.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94

    # Duration of the video creative.
    VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116

    # View-through rate represented as a percentage.
    VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117

    # Number of winning bids received from Open Bidding buyers, even when the
    # winning bid is placed at the end of a mediation for mobile apps chain.
    YIELD_GROUP_AUCTIONS_WON = 80

    # Number of bids received from Open Bidding buyers, regardless of whether
    # the returned bid competes in an auction.
    YIELD_GROUP_BIDS = 81

    # Number of bids received from Open Bidding buyers that competed in
    # the auction.
    YIELD_GROUP_BIDS_IN_AUCTION = 82

    # Number of times a yield partner is asked to return bid to fill
    # a yield group request.
    YIELD_GROUP_CALLOUTS = 83

    # The estimated net rate for yield groups or individual
    # yield group partners.
    YIELD_GROUP_ESTIMATED_CPM = 88

    # Total net revenue earned by a yield group, based upon the yield group
    # estimated CPM and yield group impressions recorded.
    YIELD_GROUP_ESTIMATED_REVENUE = 87

    # Number of matched yield group requests where a yield partner delivered
    # their ad to publisher inventory.
    YIELD_GROUP_IMPRESSIONS = 85

    # Yield group Mediation fill rate indicating how often a network
    # fills an ad request.
    YIELD_GROUP_MEDIATION_FILL_RATE = 89

    # Total requests where a Mediation chain was served.
    YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86

    # The number of mediation chain passback across all channels.
    YIELD_GROUP_MEDIATION_PASSBACKS = 118

    # Revenue per thousand impressions based on data collected by Ad Manager
    # from third-party ad network reports.
    YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90

    # Number of times a yield group buyer successfully returned a bid in
    # response to a yield group callout.
    YIELD_GROUP_SUCCESSFUL_RESPONSES = 84
  end

  # Possible metric value types to add.
  module MetricValueType
    # The values for the primary date_range.
    PRIMARY = 0

    # Each metrics' percent of the total for the primary date_range.
    PRIMARY_PERCENT_OF_TOTAL = 1

    # The values for the comparison_date_range.
    COMPARISON = 2

    # Each metrics' percent of the total for the comparison_date_range.
    COMPARISON_PERCENT_OF_TOTAL = 3

    # The absolute change between the primary and comparison date ranges.
    ABSOLUTE_CHANGE = 4

    # The relative change between the primary and comparison date ranges.
    RELATIVE_CHANGE = 5
  end

  # Supported report types.
  module ReportType
    # Default value. This value is unused.
    REPORT_TYPE_UNSPECIFIED = 0

    # Historical.
    HISTORICAL = 1
  end

  # The visibility of a report.
  module Visibility
    # Default value. Reports with hidden visibility will not appear in the Ad
    # Manager UI.
    HIDDEN = 0

    # Reports with draft visibility will appear in the Ad Manager UI only if
    # the user has configured the UI to show them.
    DRAFT = 1

    # Reports with saved visibility will appear in the Ad Manager UI by
    # default.
    SAVED = 2
  end

  # The source to determine the time zone for the report.
  module TimeZoneSource
    # Unspecified default value.
    TIME_ZONE_SOURCE_UNSPECIFIED = 0

    # Use the publisher's time zone in network settings.
    PUBLISHER = 1

    # Use the time zone of the ad exchange.
    # Only compatible with Ad Exchange dimensions and metrics.
    AD_EXCHANGE = 2

    # Use UTC time zone.
    # Only compatible with Revenue Verification reports.
    UTC = 3

    # Use the time zone provided in the ReportDefinition.time_zone field.
    # Has limited dimension and metric compatibility compared with PUBLISHER,
    # and reports may take longer to run since the dates are dynamically
    # calculated at request time.
    PROVIDED = 4
  end
end

#locale::String (readonly)

Returns Output only. The locale of this report. Locale is set from the user's locale at the time of the request. Locale can not be modified.

Returns:

  • (::String)

    Output only. The locale of this report. Locale is set from the user's locale at the time of the request. Locale can not be modified.



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
# File 'proto_docs/google/ads/admanager/v1/report_messages.rb', line 55

class Report
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a single value in a report.
  # @!attribute [rw] int_value
  #   @return [::Integer]
  #     For integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] double_value
  #   @return [::Float]
  #     For double values.
  #
  #     Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_value
  #   @return [::String]
  #     For string values.
  #
  #     Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bool_value
  #   @return [::Boolean]
  #     For boolean values.
  #
  #     Note: The following fields are mutually exclusive: `bool_value`, `int_value`, `double_value`, `string_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] int_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::IntList]
  #     For lists of integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::StringList]
  #     For lists of string values.
  #
  #     Note: The following fields are mutually exclusive: `string_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bytes_value
  #   @return [::String]
  #     For bytes values.
  #
  #     Note: The following fields are mutually exclusive: `bytes_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Value
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A list of integer values.
    # @!attribute [rw] values
    #   @return [::Array<::Integer>]
    #     The values
    class IntList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of string values.
    # @!attribute [rw] values
    #   @return [::Array<::String>]
    #     The values
    class StringList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Represents a sorting in a report.
  # @!attribute [rw] field
  #   @return [::Google::Ads::AdManager::V1::Report::Field]
  #     Required. A field (dimension or metric) to sort by.
  # @!attribute [rw] descending
  #   @return [::Boolean]
  #     Optional. The sort order. If true the sort will be descending.
  # @!attribute [rw] slice
  #   @return [::Google::Ads::AdManager::V1::Report::Slice]
  #     Optional. Use to sort on a specific slice of data.
  # @!attribute [rw] time_period_index
  #   @return [::Integer]
  #     Optional. When using time period columns, use this to sort on a specific
  #     column.
  # @!attribute [rw] metric_value_type
  #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
  #     Optional. Use to specify which metric value type to sort on. Defaults to
  #     PRIMARY.
  class Sort
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A table containing report data including dimension and metric values.
  class DataTable
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A row of report data.
    # @!attribute [rw] dimension_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     The order of the dimension values is the same as the order of the
    #     dimensions specified in the request.
    # @!attribute [rw] metric_value_groups
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::DataTable::MetricValueGroup>]
    #     The length of the metric_value_groups
    #     field will be equal to the length of the date_ranges field in the
    #     fetch response. The metric_value_groups field is
    #     ordered such that each index corresponds to the date_range at the same
    #     index. For example, given date_ranges [x, y], metric_value_groups will
    #     have a length of two. The first entry in metric_value_groups represents
    #     the metrics for date x and the second entry in metric_value_groups
    #     represents the metrics for date y.
    class Row
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Contains all metric values requested for a single date range and set of
    # column dimension values (returned in the columns field of the response).
    # The order of the metrics in each field corresponds to the order of the
    # metrics specified in the request.
    # @!attribute [rw] primary_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY MetricValueType.
    # @!attribute [rw] primary_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] comparison_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON MetricValueType.
    # @!attribute [rw] comparison_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] absolute_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the ABSOLUTE_CHANGE MetricValueType.
    # @!attribute [rw] relative_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the RELATIVE_CHANGE MetricValueType.
    # @!attribute [rw] flag_values
    #   @return [::Array<::Boolean>]
    #     If true, the flag's conditions are met. If false, the flag's
    #     conditions are not met. flag_values has the same length as
    #     flags and index i of flag_values represents the flag at index i
    #     of flags.
    class MetricValueGroup
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # A dimension or a metric in a report.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     The dimension this field represents.
  #
  #     Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] metric
  #   @return [::Google::Ads::AdManager::V1::Report::Metric]
  #     The metric this field represents.
  #
  #     Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Field
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Use to specify a slice of data.
  #
  # For example, in a report, to focus on just data from the US, specify
  # `COUNTRY_NAME` for dimension and value: `"United States"`.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     Required. The dimension to slice on.
  # @!attribute [rw] value
  #   @return [::Google::Ads::AdManager::V1::Report::Value]
  #     Required. The value of the dimension.
  class Slice
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A filter over one or more fields.
  # @!attribute [rw] field_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FieldFilter]
  #     A filter on a single field.
  #
  #     Note: The following fields are mutually exclusive: `field_filter`, `not_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] not_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter]
  #     A filter whose result is negated.
  #
  #     Note: The following fields are mutually exclusive: `not_filter`, `field_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] and_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are AND-ed.
  #
  #     Note: The following fields are mutually exclusive: `and_filter`, `field_filter`, `not_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] or_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are OR-ed.
  #
  #     Note: The following fields are mutually exclusive: `or_filter`, `field_filter`, `not_filter`, `and_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Filter
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A filter on a specific field.
    # @!attribute [rw] field
    #   @return [::Google::Ads::AdManager::V1::Report::Field]
    #     Required. The field to filter on.
    # @!attribute [rw] operation
    #   @return [::Google::Ads::AdManager::V1::Report::Filter::Operation]
    #     Required. The operation of this filter.
    # @!attribute [rw] values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Required. Values to filter to.
    # @!attribute [rw] slice
    #   @return [::Google::Ads::AdManager::V1::Report::Slice]
    #     Optional. Use to filter on a specific slice of data.
    # @!attribute [rw] time_period_index
    #   @return [::Integer]
    #     Optional. When using time period columns, use this to filter on a
    #     specific column.
    # @!attribute [rw] metric_value_type
    #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
    #     Optional. Use to specify which metric value type to filter on. Defaults
    #     to PRIMARY.
    class FieldFilter
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of filters.
    # @!attribute [rw] filters
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
    #     Required. A list of filters.
    class FilterList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Supported filter operations.
    module Operation
      # For scalar operands, checks if the operand is in the set of provided
      # filter values.
      #
      # For list operands, checks if any element in the operand is in the set
      # of provided filter values.
      #
      # Default value.
      IN = 0

      # For scalar operands, checks that the operand is not in the set of
      # provided filter values.
      #
      # For list operands, checks that none of the elements in the operand
      # is in the set of provided filter values.
      NOT_IN = 1

      # For scalar string operands, checks if the operand contains any of the
      # provided filter substrings.
      #
      # For string list operands, checks if any string in the operand contains
      # any of the provided filter substrings.
      CONTAINS = 2

      # For scalar string operands, checks that the operand contains none of
      # the provided filter substrings.
      #
      # For string list operands, checks that none of the strings in the
      # operand contain none of the provided filter substrings.
      NOT_CONTAINS = 3

      # Operand is less than the provided filter value.
      LESS_THAN = 4

      # Operand is less than or equal to provided filter value.
      LESS_THAN_EQUALS = 5

      # Operand is greater than provided filter value.
      GREATER_THAN = 6

      # Operand is greater than or equal to provided filter value.
      GREATER_THAN_EQUALS = 7

      # Operand is between provided filter values.
      BETWEEN = 8

      # Operand matches against a regex or set of regexes (one must match)
      MATCHES = 9

      # Operand negative matches against a regex or set of regexes (none must
      # match)
      NOT_MATCHES = 10
    end
  end

  # A flag for a report. Flags are used show if certain thresholds are met.
  # Result rows that match the filter will have the corresponding
  # [MetricValueGroup.flagValues][MetricValueGroup] index set to true.
  # For more information about flags see:
  # https://support.google.com/admanager/answer/15079975
  # @!attribute [rw] filters
  #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
  #     Required. Filters to apply for the flag.
  # @!attribute [rw] name
  #   @return [::String]
  #     Optional. Name of the flag.
  #     The flag names RED, YELLOW, GREEN, BLUE, PURPLE, and GREY correspond to
  #     the colored flags that appear in the UI. The UI will not display flags
  #     with other names, but they are available for use by API clients.
  class Flag
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A date range for a report.
  # @!attribute [rw] fixed
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::FixedDateRange]
  #     A fixed date range.
  #
  #     Note: The following fields are mutually exclusive: `fixed`, `relative`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] relative
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::RelativeDateRange]
  #     A relative date range.
  #
  #     Note: The following fields are mutually exclusive: `relative`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class DateRange
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A date range between two fixed dates (inclusive of end date).
    # @!attribute [rw] start_date
    #   @return [::Google::Type::Date]
    #     Required. The start date of this date range.
    # @!attribute [rw] end_date
    #   @return [::Google::Type::Date]
    #     Required. The end date (inclusive) of this date range.
    class FixedDateRange
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Options for relative date ranges.
    module RelativeDateRange
      # Default value. This value is unused.
      RELATIVE_DATE_RANGE_UNSPECIFIED = 0

      # The date the report is run.
      TODAY = 1

      # The date a day before the date that the report is run.
      YESTERDAY = 2

      # The full week in which this report is run. Could include dates in
      # the future.
      THIS_WEEK = 3

      # From the beginning of the calendar week (Monday to Sunday) in which the
      # up to and including the day the report is run.
      THIS_WEEK_TO_DATE = 29

      # The full month in which this report is run. Could include dates in
      # the future.
      THIS_MONTH = 4

      # From the beginning of the calendar month in which the report is run, to
      # up to and including the day the report is run.
      THIS_MONTH_TO_DATE = 26

      # The full quarter in which this report is run. Could include dates
      # in the future.
      THIS_QUARTER = 5

      # From the beginning of the calendar quarter in which the report is run,
      # up to and including the day the report is run.
      THIS_QUARTER_TO_DATE = 27

      # The full year in which this report is run. Could include dates in
      # the future.
      THIS_YEAR = 6

      # From the beginning of the calendar year in which the report is run, to
      # up to and including the day the report is run.
      THIS_YEAR_TO_DATE = 28

      # The entire previous calendar week, Monday to Sunday (inclusive),
      # preceding the calendar week the report is run.
      LAST_WEEK = 7

      # The entire previous calendar month preceding the calendar month the
      # report is run.
      LAST_MONTH = 8

      # The entire previous calendar quarter preceding the calendar quarter the
      # report is run.
      LAST_QUARTER = 9

      # The entire previous calendar year preceding the calendar year the
      # report is run.
      LAST_YEAR = 10

      # The 7 days preceding the day the report is run.
      LAST_7_DAYS = 11

      # The 30 days preceding the day the report is run.
      LAST_30_DAYS = 12

      # The 60 days preceding the day the report is run.
      LAST_60_DAYS = 13

      # The 90 days preceding the day the report is run.
      LAST_90_DAYS = 14

      # The 180 days preceding the day the report is run.
      LAST_180_DAYS = 15

      # The 360 days preceding the day the report is run.
      LAST_360_DAYS = 16

      # The 365 days preceding the day the report is run.
      LAST_365_DAYS = 17

      # The entire previous 3 calendar months preceding the calendar month the
      # report is run.
      LAST_3_MONTHS = 18

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_6_MONTHS = 19

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_12_MONTHS = 20

      # From 3 years before the report is run, to the day before the report is
      # run, inclusive.
      ALL_AVAILABLE = 21

      # Only valid when used in the comparison_date_range field. The complete
      # period preceding the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange of N days, this will
      # be a period of N days where the end date is the date preceding the
      # start date of the date_range.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame preceding the date_range. In the case
      # where the date_range does not capture the full period because a report
      # is run in the middle of that period, this will still be the full
      # preceding period. For example, if date_range is THIS_WEEK, but the
      # report is run on a Wednesday, THIS_WEEK will be Monday - Wednesday, but
      # PREVIOUS_PERIOD will be Monday - Sunday.
      PREVIOUS_PERIOD = 22

      # Only valid when used in the comparison_date_range field. The period
      # starting 1 year prior to the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange, this will be a date
      # range starting 1 year prior to the date_range start date and ending 1
      # year prior to the date_range end date.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame exactly 1 year prior to the date_range.
      # In the case where the date_range does not capture the full period
      # because a report is run in the middle of that period, this will still
      # be the full period 1 year prior. For example, if date range is
      # THIS_WEEK, but the report is run on a Wednesday, THIS_WEEK will be
      # Monday - Wednesday, but SAME_PERIOD_PREVIOUS_YEAR will be Monday -
      # Sunday.
      SAME_PERIOD_PREVIOUS_YEAR = 24
    end
  end

  # Valid time period columns.
  module TimePeriodColumn
    # Default value. Report will have no time period column.
    TIME_PERIOD_COLUMN_UNSPECIFIED = 0

    # A column for each date in the report.
    TIME_PERIOD_COLUMN_DATE = 1

    # A column for each week in the report.
    TIME_PERIOD_COLUMN_WEEK = 2

    # A column for each month in the report.
    TIME_PERIOD_COLUMN_MONTH = 3

    # A column for each quarter in the report.
    TIME_PERIOD_COLUMN_QUARTER = 4
  end

  # Reporting dimensions.
  module Dimension
    # Default value. This value is unused.
    DIMENSION_UNSPECIFIED = 0

    # The domain name of the advertiser.
    ADVERTISER_DOMAIN_NAME = 242

    # The ID used in an external system for advertiser identification
    ADVERTISER_EXTERNAL_ID = 228

    # The ID of an advertiser company assigned to an order
    ADVERTISER_ID = 131

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABELS = 230

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABEL_IDS = 229

    # The name of an advertiser company assigned to an order
    ADVERTISER_NAME = 132

    # The name of the contact associated with an advertiser company
    ADVERTISER_PRIMARY_CONTACT = 227

    # Shows an ENUM value describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION = 390

    # Shows a localized string describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION_NAME = 391

    # The code of the ad unit where the ad was requested.
    AD_UNIT_CODE = 64

    # The code of the first level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_1 = 65

    # The code of the tenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_10 = 74

    # The code of the eleventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_11 = 75

    # The code of the twelfth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_12 = 76

    # The code of the thirteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_13 = 77

    # The code of the fourteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_14 = 78

    # The code of the fifteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_15 = 79

    # The code of the sixteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_16 = 80

    # The code of the second level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_2 = 66

    # The code of the third level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_3 = 67

    # The code of the fourth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_4 = 68

    # The code of the fifth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_5 = 69

    # The code of the sixth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_6 = 70

    # The code of the seventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_7 = 71

    # The code of the eighth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_8 = 72

    # The code of the ninth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_9 = 73

    # The depth of the ad unit's hierarchy
    AD_UNIT_DEPTH = 101

    # The ID of the ad unit where the ad was requested.
    AD_UNIT_ID = 25

    # The full hierarchy of ad unit IDs where the ad was requested, from
    # root to leaf, excluding the root ad unit ID.
    AD_UNIT_ID_ALL_LEVEL = 27

    # The first level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_1 = 30

    # The tenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_10 = 48

    # The eleventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_11 = 50

    # The twelfth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_12 = 52

    # The thirteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_13 = 54

    # The fourteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_14 = 56

    # The fifteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_15 = 58

    # The sixteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_16 = 60

    # The second level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_2 = 32

    # The third level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_3 = 34

    # The fourth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_4 = 36

    # The fifth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_5 = 38

    # The sixth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_6 = 40

    # The seventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_7 = 42

    # The eighth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_8 = 44

    # The ninth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_9 = 46

    # The top-level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_TOP_LEVEL = 142

    # The name of the ad unit where the ad was requested.
    AD_UNIT_NAME = 26

    # The full hierarchy of ad unit names where the ad was requested, from
    # root to leaf, excluding the root ad unit name.
    AD_UNIT_NAME_ALL_LEVEL = 29

    # The first level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_1 = 31

    # The tenth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_10 = 49

    # The eleventh level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_11 = 51

    # The twelfth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_12 = 53

    # The thirteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_13 = 55

    # The fourteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_14 = 57

    # The fifteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_15 = 59

    # The sixteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_16 = 61

    # The second level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_2 = 33

    # The third level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_3 = 35

    # The fourth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_4 = 37

    # The fifth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_5 = 39

    # The sixth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_6 = 41

    # The seventh level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_7 = 43

    # The eighth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_8 = 45

    # The ninth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_9 = 47

    # The top-level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_TOP_LEVEL = 143

    # The reward amount of the ad unit where the ad was requested.
    AD_UNIT_REWARD_AMOUNT = 63

    # The reward type of the ad unit where the ad was requested.
    AD_UNIT_REWARD_TYPE = 62

    # The status of the ad unit
    AD_UNIT_STATUS = 206

    # The name of the status of the ad unit
    AD_UNIT_STATUS_NAME = 207

    # The app version.
    APP_VERSION = 392

    # The ID used in an external system for advertiser identification
    BACKFILL_ADVERTISER_EXTERNAL_ID = 349

    # The ID of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_ID = 346

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABELS = 351

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABEL_IDS = 350

    # The name of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_NAME = 347

    # The name of the contact associated with an advertiser company
    BACKFILL_ADVERTISER_PRIMARY_CONTACT = 348

    # Enum value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE = 378

    # Localized string value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE_NAME = 379

    # Represents the click-through URL of a Backfill creative
    BACKFILL_CREATIVE_CLICK_THROUGH_URL = 376

    # The ID of a Backfill creative
    BACKFILL_CREATIVE_ID = 370

    # Backfill creative name
    BACKFILL_CREATIVE_NAME = 371

    # Third party vendor name of a Backfill creative
    BACKFILL_CREATIVE_THIRD_PARTY_VENDOR = 377

    # Enum value of Backfill creative type
    BACKFILL_CREATIVE_TYPE = 374

    # Localized string name of Backfill creative type
    BACKFILL_CREATIVE_TYPE_NAME = 375

    # Whether a Backfill line item is archived.
    BACKFILL_LINE_ITEM_ARCHIVED = 278

    # Backfill line item comanion delivery option ENUM value.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION = 258

    # Localized Backfill line item comanion delivery option name.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 259

    # The computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS = 296

    # The localized name of the computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME = 297

    # The contracted units bought for the Backfill line item.
    BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY = 280

    # The cost per unit of the Backfill line item.
    BACKFILL_LINE_ITEM_COST_PER_UNIT = 272

    # Backfill line item cost type ENUM value.
    BACKFILL_LINE_ITEM_COST_TYPE = 264

    # Localized Backfill line item cost type name.
    BACKFILL_LINE_ITEM_COST_TYPE_NAME = 265

    # Represent the end date of a Backfill creative associated with a Backfill
    # line item
    BACKFILL_LINE_ITEM_CREATIVE_END_DATE = 381

    # The creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE = 290

    # The localized name of the creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 291

    # Represent the start date of a Backfill creative associated with a
    # Backfill line item
    BACKFILL_LINE_ITEM_CREATIVE_START_DATE = 380

    # The 3 letter currency code of the Backfill line item
    BACKFILL_LINE_ITEM_CURRENCY_CODE = 288

    # The progress made for the delivery of the Backfill line item.
    BACKFILL_LINE_ITEM_DELIVERY_INDICATOR = 274

    # The delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE = 292

    # The localized name of the delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 293

    # The discount of the BackfillLineItem in whole units in the
    # BackfillLineItem's currency code, or if unspecified the Network's
    # currency code.
    BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE = 294

    # The discount of the BackfillLineItem in percentage.
    BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE = 295

    # The end date of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE = 267

    # The end date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE_TIME = 269

    # The ENUM value of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE = 302

    # The localized name of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME = 257

    # The deal ID of the Backfill line item. Set for Programmatic Direct
    # campaigns.
    BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID = 285

    # The external ID of the Backfill line item.
    BACKFILL_LINE_ITEM_EXTERNAL_ID = 273

    # The frequency cap of the Backfill line item (descriptive string).
    BACKFILL_LINE_ITEM_FREQUENCY_CAP = 303

    # Backfill line item ID.
    BACKFILL_LINE_ITEM_ID = 298

    # The application that last modified the Backfill line item.
    BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP = 289

    # The total number of clicks delivered of the lifetime of the Backfill line
    # item.
    BACKFILL_LINE_ITEM_LIFETIME_CLICKS = 283

    # The total number of impressions delivered over the lifetime of the
    # Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS = 282

    # The total number of viewable impressions delivered over the lifetime of
    # the Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 284

    # Whether or not the Backfill line item is Makegood. Makegood refers to
    # free inventory offered to buyers to compensate for mistakes or
    # under-delivery in the original campaigns.
    BACKFILL_LINE_ITEM_MAKEGOOD = 276

    # Backfill line item name.
    BACKFILL_LINE_ITEM_NAME = 299

    # The cost of booking for the Backfill line item (non-CPD).
    BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE = 286

    # Whether a Backfill line item is eligible for opitimization.
    BACKFILL_LINE_ITEM_OPTIMIZABLE = 277

    # Goal type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE = 262

    # Localized goal type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 263

    # Unit type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 260

    # Localized unit type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 261

    # The priority of this Backfill line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Backfill line item.
    BACKFILL_LINE_ITEM_PRIORITY = 266

    # ENUM value describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS = 306

    # Localized string describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME = 307

    # The start date of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE = 268

    # The start date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE_TIME = 270

    # Backfill line item type ENUM value.
    BACKFILL_LINE_ITEM_TYPE = 300

    # Localized Backfill line item type name.
    BACKFILL_LINE_ITEM_TYPE_NAME = 301

    # Whether the Backfill line item end time and end date is set to
    # effectively never end.
    BACKFILL_LINE_ITEM_UNLIMITED_END = 271

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT = 275

    # The web property code used for dynamic allocation Backfill line items.
    BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE = 287

    # The ID of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_ID = 372

    # Name of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_NAME = 373

    # Backfill order agency.
    BACKFILL_ORDER_AGENCY = 313

    # Backfill order agency ID.
    BACKFILL_ORDER_AGENCY_ID = 314

    # Backfill order booked CPC.
    BACKFILL_ORDER_BOOKED_CPC = 315

    # Backfill order booked CPM.
    BACKFILL_ORDER_BOOKED_CPM = 316

    # Backfill order delivery status ENUM value.
    BACKFILL_ORDER_DELIVERY_STATUS = 340

    # Backfill order delivery status localized name.
    BACKFILL_ORDER_DELIVERY_STATUS_NAME = 341

    # Backfill order end date.
    BACKFILL_ORDER_END_DATE = 317

    # Backfill order end date and time.
    BACKFILL_ORDER_END_DATE_TIME = 319

    # Backfill order external ID.
    BACKFILL_ORDER_EXTERNAL_ID = 320

    # Backfill order id.
    BACKFILL_ORDER_ID = 338

    # Backfill order labels.
    BACKFILL_ORDER_LABELS = 334

    # Backfill order labels IDs.
    BACKFILL_ORDER_LABEL_IDS = 335

    # Backfill order lifetime clicks.
    BACKFILL_ORDER_LIFETIME_CLICKS = 322

    # Backfill order lifetime impressions.
    BACKFILL_ORDER_LIFETIME_IMPRESSIONS = 323

    # Backfill order name.
    BACKFILL_ORDER_NAME = 339

    # Backfill order PO number.
    BACKFILL_ORDER_PO_NUMBER = 324

    # Whether the Backfill order is programmatic.
    BACKFILL_ORDER_PROGRAMMATIC = 321

    # Backfill order sales person.
    BACKFILL_ORDER_SALESPERSON = 325

    # Backfill order secondary sales people.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE = 329

    # Backfill order secondary sales people ID.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID = 328

    # Backfill order secondary traffickers.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS = 331

    # Backfill order secondary traffickers ID.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID = 330

    # Backfill order start date.
    BACKFILL_ORDER_START_DATE = 332

    # Backfill order start date and time.
    BACKFILL_ORDER_START_DATE_TIME = 333

    # Backfill order trafficker.
    BACKFILL_ORDER_TRAFFICKER = 326

    # Backfill order trafficker ID.
    BACKFILL_ORDER_TRAFFICKER_ID = 327

    # Whether the Backfill order end time and end date is set to effectively
    # never end.
    BACKFILL_ORDER_UNLIMITED_END = 318

    # The ID of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_ID = 336

    # The name of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_NAME = 337

    # The amount of information about the Publisher's page sent to the buyer
    # who purchased the impressions.
    BRANDING_TYPE = 383

    # The localized version of branding type, the amount of information about
    # the Publisher's page sent to the buyer who purchased the impressions.
    BRANDING_TYPE_NAME = 384

    # Browser category.
    BROWSER_CATEGORY = 119

    # Browser category name.
    BROWSER_CATEGORY_NAME = 120

    # The ID of the browser.
    BROWSER_ID = 235

    # The name of the browser.
    BROWSER_NAME = 236

    # Mobile carrier ID.
    CARRIER_ID = 369

    # Name of the mobile carrier.
    CARRIER_NAME = 368

    # The ID of an advertiser, classified by Google, associated with a creative
    # transacted
    CLASSIFIED_ADVERTISER_ID = 133

    # The name of an advertiser, classified by Google, associated with a
    # creative transacted
    CLASSIFIED_ADVERTISER_NAME = 134

    # ID of the brand, as classified by Google,
    CLASSIFIED_BRAND_ID = 243

    # Name of the brand, as classified by Google,
    CLASSIFIED_BRAND_NAME = 244

    # ID of the video content served.
    CONTENT_ID = 246

    # Name of the video content served.
    CONTENT_NAME = 247

    # The criteria ID of the country in which the ad served.
    COUNTRY_ID = 11

    # The name of the country in which the ad served.
    COUNTRY_NAME = 12

    # Enum value of creative billing type
    CREATIVE_BILLING_TYPE = 366

    # Localized string value of creative billing type
    CREATIVE_BILLING_TYPE_NAME = 367

    # Represents the click-through URL of a creative
    CREATIVE_CLICK_THROUGH_URL = 174

    # The ID of a creative
    CREATIVE_ID = 138

    # Creative name
    CREATIVE_NAME = 139

    # Creative technology ENUM
    CREATIVE_TECHNOLOGY = 148

    # Creative technology locallized name
    CREATIVE_TECHNOLOGY_NAME = 149

    # Third party vendor name of a creative
    CREATIVE_THIRD_PARTY_VENDOR = 361

    # Enum value of creative type
    CREATIVE_TYPE = 344

    # Localized string name of creative type
    CREATIVE_TYPE_NAME = 345

    # Breaks down reporting data by date.
    DATE = 3

    # Breaks down reporting data by day of the week. Monday is 1 and 7 is
    # Sunday.
    DAY_OF_WEEK = 4

    # Demand channel.
    DEMAND_CHANNEL = 9

    # Demand channel name.
    DEMAND_CHANNEL_NAME = 10

    # Demand subchannel.
    DEMAND_SUBCHANNEL = 22

    # Demand subchannel name.
    DEMAND_SUBCHANNEL_NAME = 23

    # The device on which an ad was served.
    DEVICE = 226

    # The device category to which an ad is being targeted.
    DEVICE_CATEGORY = 15

    # The name of the category of device (smartphone, feature phone, tablet, or
    # desktop) to which an ad is being targeted.
    DEVICE_CATEGORY_NAME = 16

    # The localized name of the device on which an ad was served.
    DEVICE_NAME = 225

    # ID of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_ID = 185

    # Name of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186

    # The ID of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_ID = 248

    # The name of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_NAME = 249

    # Breaks down reporting data by hour in one day.
    HOUR = 100

    # The interaction type of an ad.
    INTERACTION_TYPE = 223

    # The localized name of the interaction type of an ad.
    INTERACTION_TYPE_NAME = 224

    # Inventory format.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT = 17

    # Inventory format name.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT_NAME = 18

    # Inventory type.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE = 19

    # Inventory type name.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE_NAME = 20

    # Whether traffic is Adx Direct.
    IS_ADX_DIRECT = 382

    # Whether traffic is First Look.
    IS_FIRST_LOOK_DEAL = 401

    # The Custom Targeting Value ID
    KEY_VALUES_ID = 214

    # The Custom Targeting Value formatted like <key_name>=<value_name>
    KEY_VALUES_NAME = 215

    # Whether a Line item is archived.
    LINE_ITEM_ARCHIVED = 188

    # Line item comanion delivery option ENUM value.
    LINE_ITEM_COMPANION_DELIVERY_OPTION = 204

    # Localized line item comanion delivery option name.
    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205

    # The computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS = 250

    # The localized name of the computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS_NAME = 251

    # The contracted units bought for the Line item.
    LINE_ITEM_CONTRACTED_QUANTITY = 92

    # The cost per unit of the Line item.
    LINE_ITEM_COST_PER_UNIT = 85

    # Line item cost type ENUM value.
    LINE_ITEM_COST_TYPE = 212

    # Localized line item cost type name.
    LINE_ITEM_COST_TYPE_NAME = 213

    # Represent the end date of a creative associated with line item
    LINE_ITEM_CREATIVE_END_DATE = 176

    # The creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE = 189

    # The localized name of the creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190

    # Represent the start date of a creative associated with line item
    LINE_ITEM_CREATIVE_START_DATE = 175

    # The 3 letter currency code of the Line Item
    LINE_ITEM_CURRENCY_CODE = 180

    # The progress made for the delivery of the Line item.
    LINE_ITEM_DELIVERY_INDICATOR = 87

    # The delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE = 191

    # The localized name of the delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192

    # The discount of the LineItem in whole units in the LineItem's currency
    # code, or if unspecified the Network's currency code.
    LINE_ITEM_DISCOUNT_ABSOLUTE = 195

    # The discount of the LineItem in percentage.
    LINE_ITEM_DISCOUNT_PERCENTAGE = 196

    # The end date of the Line item.
    LINE_ITEM_END_DATE = 81

    # The end date and time of the Line item.
    LINE_ITEM_END_DATE_TIME = 83

    # The ENUM value of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE = 201

    # The localized name of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202

    # The deal ID of the Line item. Set for Programmatic Direct campaigns.
    LINE_ITEM_EXTERNAL_DEAL_ID = 97

    # The external ID of the Line item.
    LINE_ITEM_EXTERNAL_ID = 86

    # The frequency cap of the Line item (descriptive string).
    LINE_ITEM_FREQUENCY_CAP = 256

    # Line item ID.
    LINE_ITEM_ID = 1

    # The application that last modified the Line Item.
    LINE_ITEM_LAST_MODIFIED_BY_APP = 181

    # The total number of clicks delivered of the lifetime of the Line item.
    LINE_ITEM_LIFETIME_CLICKS = 95

    # The total number of impressions delivered over the lifetime of the
    # Line item.
    LINE_ITEM_LIFETIME_IMPRESSIONS = 94

    # The total number of viewable impressions delivered over the lifetime of
    # the Line item.
    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96

    # Whether or not the Line item is Makegood. Makegood refers to free
    # inventory offered to buyers to compensate for mistakes or under-delivery
    # in the original campaigns.
    LINE_ITEM_MAKEGOOD = 89

    # Line item Name.
    LINE_ITEM_NAME = 2

    # The cost of booking for the Line item (non-CPD).
    LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98

    # Whether a Line item is eligible for opitimization.
    LINE_ITEM_OPTIMIZABLE = 90

    # Goal type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE = 210

    # Localized goal type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211

    # The total number of impressions or clicks that are reserved for a
    # line item. For line items of type BULK or PRICE_PRIORITY, this represents
    # the number of remaining impressions reserved. If the line item has an
    # impression cap goal, this represents the number of impressions or
    # conversions that the line item will stop serving at if reached.
    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93

    # The percentage of impressions or clicks that are reserved for a
    # line item. For line items of type SPONSORSHIP, this represents the
    # percentage of available impressions reserved. For line items of type
    # NETWORK or HOUSE, this represents the percentage of remaining impressions
    # reserved.
    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396

    # Unit type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208

    # Localized unit type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209

    # The priority of this Line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Line item.
    LINE_ITEM_PRIORITY = 24

    # ENUM value describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS = 304

    # Localized string describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS_NAME = 305

    # The start date of the Line item.
    LINE_ITEM_START_DATE = 82

    # The start date and time of the Line item.
    LINE_ITEM_START_DATE_TIME = 84

    # Line item type ENUM value.
    LINE_ITEM_TYPE = 193

    # Localized line item type name.
    LINE_ITEM_TYPE_NAME = 194

    # Whether the Line item end time and end date is set to effectively never
    # end.
    LINE_ITEM_UNLIMITED_END = 187

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    LINE_ITEM_VALUE_COST_PER_UNIT = 88

    # The web property code used for dynamic allocation Line Items.
    LINE_ITEM_WEB_PROPERTY_CODE = 179

    # The ID of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_ID = 140

    # Name of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_NAME = 141

    # Whether the mobile app is free.
    MOBILE_APP_FREE = 128

    # URL of app icon for the mobile app.
    MOBILE_APP_ICON_URL = 129

    # The ID of the Mobile App.
    MOBILE_APP_ID = 123

    # The name of the mobile app.
    MOBILE_APP_NAME = 127

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS = 311

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS_NAME = 312

    # The App Store of the mobile app.
    MOBILE_APP_STORE = 125

    # The localized name of the mobile app store.
    MOBILE_APP_STORE_NAME = 245

    # Mobile inventory type.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    # Values match the Inventory type dimension available in the Overview Home
    # dashboard. Note: Video takes precedence over any other value, for
    # example, if there is an in-stream video impression on a desktop device,
    # it will be attributed to in-stream video and not desktop web.
    MOBILE_INVENTORY_TYPE = 99

    # Mobile inventory type name.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    MOBILE_INVENTORY_TYPE_NAME = 21

    # SDK version of the mobile device.
    MOBILE_SDK_VERSION_NAME = 130

    # Breaks down reporting data by month and year.
    MONTH_YEAR = 6

    # Native ad format ID.
    NATIVE_AD_FORMAT_ID = 255

    # Native ad format name.
    NATIVE_AD_FORMAT_NAME = 254

    # Native style ID.
    NATIVE_STYLE_ID = 253

    # Native style name.
    NATIVE_STYLE_NAME = 252

    # Operating system category.
    OPERATING_SYSTEM_CATEGORY = 117

    # Operating system category name.
    OPERATING_SYSTEM_CATEGORY_NAME = 118

    # ID of the operating system version.
    OPERATING_SYSTEM_VERSION_ID = 238

    # Details of the operating system, including version.
    OPERATING_SYSTEM_VERSION_NAME = 237

    # Order agency.
    ORDER_AGENCY = 150

    # Order agency ID.
    ORDER_AGENCY_ID = 151

    # Order booked CPC.
    ORDER_BOOKED_CPC = 152

    # Order booked CPM.
    ORDER_BOOKED_CPM = 153

    # Order delivery status ENUM value.
    ORDER_DELIVERY_STATUS = 231

    # Order delivery status localized name.
    ORDER_DELIVERY_STATUS_NAME = 239

    # Order end date.
    ORDER_END_DATE = 154

    # Order end date and time.
    ORDER_END_DATE_TIME = 155

    # Order external ID.
    ORDER_EXTERNAL_ID = 156

    # Order id.
    ORDER_ID = 7

    # Order labels.
    ORDER_LABELS = 170

    # Order labels IDs.
    ORDER_LABEL_IDS = 171

    # Order lifetime clicks.
    ORDER_LIFETIME_CLICKS = 158

    # Order lifetime impressions.
    ORDER_LIFETIME_IMPRESSIONS = 159

    # Order name.
    ORDER_NAME = 8

    # Order PO number.
    ORDER_PO_NUMBER = 160

    # Whether the Order is programmatic.
    ORDER_PROGRAMMATIC = 157

    # Order sales person.
    ORDER_SALESPERSON = 161

    # Order secondary sales people.
    ORDER_SECONDARY_SALESPEOPLE = 164

    # Order secondary sales people ID.
    ORDER_SECONDARY_SALESPEOPLE_ID = 165

    # Order secondary traffickers.
    ORDER_SECONDARY_TRAFFICKERS = 166

    # Order secondary traffickers ID.
    ORDER_SECONDARY_TRAFFICKERS_ID = 167

    # Order start date.
    ORDER_START_DATE = 168

    # Order start date and time.
    ORDER_START_DATE_TIME = 169

    # Order trafficker.
    ORDER_TRAFFICKER = 162

    # Order trafficker ID.
    ORDER_TRAFFICKER_ID = 163

    # Whether the Order end time and end date is set to effectively never
    # end.
    ORDER_UNLIMITED_END = 203

    # Placement ID
    PLACEMENT_ID = 113

    # The full list of placement IDs associated with the ad unit.
    PLACEMENT_ID_ALL = 144

    # Placement name
    PLACEMENT_NAME = 114

    # The full list of placement names associated with the ad unit.
    PLACEMENT_NAME_ALL = 145

    # Placement status ENUM value
    PLACEMENT_STATUS = 362

    # The full list of placement status ENUM values associated with the ad
    # unit.
    PLACEMENT_STATUS_ALL = 363

    # Localized placement status name.
    PLACEMENT_STATUS_NAME = 364

    # The full list of localized placement status names associated with the ad
    # unit.
    PLACEMENT_STATUS_NAME_ALL = 365

    # The ID of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_ID = 240

    # The name of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_NAME = 241

    # Programmatic channel.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL = 13

    # Programmatic channel name.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL_NAME = 14

    # The size of a rendered creative, It can differ with the creative's size
    # if a creative is shown in an ad slot of a different size.
    RENDERED_CREATIVE_SIZE = 343

    # Inventory Requested Ad Sizes dimension
    REQUESTED_AD_SIZES = 352

    # Request type ENUM
    REQUEST_TYPE = 146

    # Request type locallized name
    REQUEST_TYPE_NAME = 147

    # Indicates if a request was eligible for server-side unwrapping.
    SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597

    # Information about domain or subdomains.
    SITE = 387

    # The ID of the browser, device or other environment into which a line item
    # or creative was served.
    TARGETING_ID = 232

    # Information about the browser, device and other environments into which
    # a line item or creative was served.
    TARGETING_NAME = 233

    # The way in which advertisers targeted their ads.
    TARGETING_TYPE = 385

    # The localized name of the way in which advertisers targeted their ads.
    TARGETING_TYPE_NAME = 386

    # Inventory Traffic source dimension
    TRAFFIC_SOURCE = 388

    # Inventory Traffic source dimension name
    TRAFFIC_SOURCE_NAME = 389

    # Unified pricing rule ID dimension
    UNIFIED_PRICING_RULE_ID = 393

    # Unified pricing rule name dimension
    UNIFIED_PRICING_RULE_NAME = 394

    # The video placement enum as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT = 172

    # The localized name of the video placement as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT_NAME = 173

    # Breaks down reporting data by week of the year.
    WEEK = 5

    # Name of the company within a yield group
    YIELD_GROUP_BUYER_NAME = 184

    # ID of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_ID = 182

    # Name of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_NAME = 183

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10_000

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10_001

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10_002

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10_003

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10_004

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10_005

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10_006

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10_007

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10_008

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10_009

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10_010

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10_011

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10_012

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10_013

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10_014

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11_000

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11_001

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11_002

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11_003

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11_004

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11_005

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11_006

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11_007

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11_008

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11_009

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11_010

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11_011

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11_012

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11_013

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11_014

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_0_OPTION_ID = 12_000

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_1_OPTION_ID = 12_001

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_2_OPTION_ID = 12_002

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_3_OPTION_ID = 12_003

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_4_OPTION_ID = 12_004

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_5_OPTION_ID = 12_005

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_6_OPTION_ID = 12_006

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_7_OPTION_ID = 12_007

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_8_OPTION_ID = 12_008

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_9_OPTION_ID = 12_009

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_10_OPTION_ID = 12_010

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_11_OPTION_ID = 12_011

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_12_OPTION_ID = 12_012

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_13_OPTION_ID = 12_013

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_14_OPTION_ID = 12_014

    # Custom field value for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 0 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_0_VALUE = 13_000

    # Custom field value for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 1 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_1_VALUE = 13_001

    # Custom field value for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 2 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_2_VALUE = 13_002

    # Custom field value for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 3 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_3_VALUE = 13_003

    # Custom field value for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 4 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_4_VALUE = 13_004

    # Custom field value for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 5 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_5_VALUE = 13_005

    # Custom field value for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 6 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_6_VALUE = 13_006

    # Custom field value for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 7 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_7_VALUE = 13_007

    # Custom field value for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 8 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_8_VALUE = 13_008

    # Custom field value for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 9 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_9_VALUE = 13_009

    # Custom field value for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_10_VALUE = 13_010

    # Custom field value for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_11_VALUE = 13_011

    # Custom field value for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_12_VALUE = 13_012

    # Custom field value for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_13_VALUE = 13_013

    # Custom field value for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_14_VALUE = 13_014

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14_000

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14_001

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14_002

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14_003

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14_004

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14_005

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14_006

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14_007

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14_008

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14_009

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14_010

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14_011

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14_012

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14_013

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14_014

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_0_VALUE = 15_000

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_1_VALUE = 15_001

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_2_VALUE = 15_002

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_3_VALUE = 15_003

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_4_VALUE = 15_004

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_5_VALUE = 15_005

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_6_VALUE = 15_006

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_7_VALUE = 15_007

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_8_VALUE = 15_008

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_9_VALUE = 15_009

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_10_VALUE = 15_010

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_11_VALUE = 15_011

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_12_VALUE = 15_012

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_13_VALUE = 15_013

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_14_VALUE = 15_014

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16_000

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16_001

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16_002

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16_003

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16_004

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16_005

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16_006

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16_007

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16_008

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16_009

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16_010

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16_011

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16_012

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16_013

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16_014

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 0 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17_000

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 1 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17_001

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 2 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17_002

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 3 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17_003

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 4 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17_004

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 5 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17_005

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 6 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17_006

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 7 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17_007

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 8 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17_008

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 9 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17_009

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17_010

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17_011

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17_012

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17_013

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17_014

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18_000

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18_001

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18_002

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18_003

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18_004

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18_005

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18_006

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18_007

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18_008

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18_009

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18_010

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18_011

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18_012

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18_013

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18_014

    # Custom field value for Backfill order with custom field ID equal to the
    # ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19_000

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19_001

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19_002

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19_003

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19_004

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19_005

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19_006

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19_007

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19_008

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19_009

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19_010

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19_011

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19_012

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19_013

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19_014

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20_000

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20_001

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20_002

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20_003

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20_004

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20_005

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20_006

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20_007

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20_008

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20_009

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20_010

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20_011

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20_012

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20_013

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20_014

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21_000

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 1 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21_001

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 2 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21_002

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 3 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21_003

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 4 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21_004

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 5 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21_005

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 6 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21_006

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 7 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21_007

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 8 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21_008

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 9 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21_009

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21_010

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21_011

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21_012

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21_013

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21_014

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE_ID = 100_000

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE_ID = 100_001

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE_ID = 100_002

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE_ID = 100_003

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE_ID = 100_004

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE_ID = 100_005

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE_ID = 100_006

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE_ID = 100_007

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE_ID = 100_008

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE_ID = 100_009

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE = 101_000

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE = 101_001

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE = 101_002

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE = 101_003

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE = 101_004

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE = 101_005

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE = 101_006

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 7 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE = 101_007

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE = 101_008

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE = 101_009
  end

  # Reporting metrics.
  module Metric
    # Default value. This value is unused.
    METRIC_UNSPECIFIED = 0

    # Active View total average time in seconds that specific impressions are
    # reported as being viewable.
    ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 61

    # Total number of impressions that were eligible to measure viewability.
    ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 58

    # The total number of impressions that were sampled and measured by active
    # view.
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 57

    # The percentage of total impressions that were measurable by active view
    # (out of all the total impressions sampled for active view).
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 60

    # The total number of impressions viewed on the user's screen.
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 56

    # The percentage of total impressions viewed on the user's screen (out of
    # the total impressions measurable by active view).
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 59

    # Active View AdSense average time in seconds that specific impressions are
    # reported as being viewable.
    ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 73

    # Total number of impressions delivered by AdSense that were eligible to
    # measure viewability.
    ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 70

    # The number of impressions delivered by AdSense that were sampled, and
    # measurable by active view.
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 69

    # The percentage of impressions delivered by AdSense that were measurable
    # by active view (out of all AdSense impressions sampled for active view).
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 72

    # The number of impressions delivered by AdSense viewed on the user's
    # screen.
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 68

    # The percentage of impressions delivered by AdSense viewed on the user's
    # screen (out of AdSense impressions measurable by active view).
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 71

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by AdSense through line item dynamic allocation.
    ADSENSE_AVERAGE_ECPM = 26

    # Number of clicks delivered by AdSense demand channel.
    ADSENSE_CLICKS = 23

    # The ratio of impressions served by AdSense that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. The
    # AdSense CTR is calculated as: (AdSense clicks / AdSense impressions).
    ADSENSE_CTR = 24

    # Total impressions delivered by AdSense.
    ADSENSE_IMPRESSIONS = 22

    # Ratio of clicks delivered by AdSense through line item dynamic allocation
    # in relation to the total clicks delivered.
    ADSENSE_PERCENT_CLICKS = 28

    # Ratio of impressions delivered by AdSense through line item dynamic
    # allocation in relation to the total impressions delivered.
    ADSENSE_PERCENT_IMPRESSIONS = 27

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue.
    ADSENSE_PERCENT_REVENUE = 29

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    ADSENSE_PERCENT_REVENUE_WITHOUT_CPD = 30

    # The total number of times that an AdSense ad is delivered.
    ADSENSE_RESPONSES_SERVED = 41

    # Revenue generated from AdSense through line item dynamic allocation,
    # calculated in the network's currency and time zone.
    ADSENSE_REVENUE = 25

    # Active View AdExchange average time in seconds that specific impressions
    # are reported as being viewable.
    AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 79

    # Total number of impressions delivered by Ad Exchange that were eligible
    # to measure viewability.
    AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 76

    # The number of impressions delivered by Ad Exchange that were sampled, and
    # measurable by active view.
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 75

    # The percentage of impressions delivered by Ad Exchange that were
    # measurable by active view (out of all Ad Exchange impressions sampled for
    # active view).
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 78

    # The number of impressions delivered by Ad Exchange viewed on the user's
    # screen.
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 74

    # The percentage of impressions delivered by Ad Exchange viewed on the
    # user's screen (out of Ad Exchange impressions measurable by active view).
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 77

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by Ad Exchange through line item dynamic allocation.
    AD_EXCHANGE_AVERAGE_ECPM = 18

    # Number of clicks delivered by the Ad Exchange.
    AD_EXCHANGE_CLICKS = 15

    # The ratio of impressions served by the Ad Exchange that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. Ad
    # Exchange CTR is calculated as: (Ad Exchange clicks / Ad Exchange
    # impressions).
    AD_EXCHANGE_CTR = 16

    # Total impressions delivered by the Ad Exchange.
    AD_EXCHANGE_IMPRESSIONS = 14

    # Ratio of clicks delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total clicks delivered.
    AD_EXCHANGE_PERCENT_CLICKS = 20

    # Ratio of impressions delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total impressions delivered.
    AD_EXCHANGE_PERCENT_IMPRESSIONS = 19

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue.
    AD_EXCHANGE_PERCENT_REVENUE = 21

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD = 31

    # The total number of times that an Ad Exchange ad is delivered.
    AD_EXCHANGE_RESPONSES_SERVED = 42

    # Revenue generated from the Ad Exchange through line item dynamic
    # allocation, calculated in your network's currency and time zone.
    AD_EXCHANGE_REVENUE = 17

    # The total number of times that an ad request is sent to the ad server
    # including dynamic allocation.
    AD_REQUESTS = 38

    # Active View ad server average time in seconds that specific impressions
    # are reported as being viewable.
    AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 67

    # Total number of impressions delivered by the ad server that were eligible
    # to measure viewability.
    AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 64

    # The number of impressions delivered by the ad server that were sampled,
    # and measurable by active view.
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 63

    # The percentage of impressions delivered by the ad server that were
    # measurable by active view (out of all the ad server impressions sampled
    # for active view).
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 66

    # The number of impressions delivered by the ad server viewed on the user's
    # screen.
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 62

    # The percentage of impressions delivered by the ad server viewed on the
    # user's screen (out of the ad server impressions measurable by active
    # view).
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 65

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server.
    AD_SERVER_AVERAGE_ECPM = 34

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server, excluding CPD value.
    AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD = 10

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown.
    AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS = 262

    # Total clicks served by the Google Ad Manager server. It usually takes
    # about 30 minutes for new clicks to be recorded and added to the total
    # displayed in reporting.
    AD_SERVER_CLICKS = 7

    # CPD revenue earned, calculated in your network's currency, for
    # the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_CPD_REVENUE = 32

    # Ratio of impressions served by the Google Ad Manager server that resulted
    # in users clicking on an ad. The clickthrough rate (CTR) is updated
    # nightly. The ad server CTR is calculated as: (Ad server clicks / Ad
    # server impressions).
    AD_SERVER_CTR = 8

    # Total impressions delivered by the Ad Server.
    AD_SERVER_IMPRESSIONS = 6

    # Ratio of clicks delivered by the Google Ad Manager server in relation to
    # the total clicks delivered.
    AD_SERVER_PERCENT_CLICKS = 12

    # Ratio of impressions delivered by the Google Ad Manager server in
    # relation to the total impressions delivered.
    AD_SERVER_PERCENT_IMPRESSIONS = 11

    # Ratio of revenue generated by the Google Ad Manager server in relation
    # to the total revenue.
    AD_SERVER_PERCENT_REVENUE = 35

    # Ratio of revenue generated by the Google Ad Manager server (excluding
    # CPD) in relation to the total revenue.
    AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13

    # The total number of times that an ad is served by the ad server.
    AD_SERVER_RESPONSES_SERVED = 40

    # All CPM, CPC, and CPD revenue earned, calculated in your network's
    # currency, for the ads delivered by the Google Ad Manager server.
    # Sum of all booked revenue.
    AD_SERVER_REVENUE = 33

    # Revenue (excluding CPD) earned, calculated in your network's currency,
    # for the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_REVENUE_WITHOUT_CPD = 9

    # The number of tracked ads delivered by the ad server.
    AD_SERVER_TRACKED_ADS = 264

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown, before invalid traffic filtrations by
    # Ad Server.
    AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261

    # Total clicks delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_CLICKS = 259

    # Total impressions delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_IMPRESSIONS = 260

    # The number of tracked ads delivered by the ad server before invalid
    # traffic filtrations.
    AD_SERVER_UNFILTERED_TRACKED_ADS = 263

    # eCPM averaged across the Google Ad Manager server, AdSense,
    # and Ad Exchange.
    AVERAGE_ECPM = 37

    # eCPM averaged across the Google Ad Manager server (excluding CPD),
    # AdSense, and Ad Exchange.
    AVERAGE_ECPM_WITHOUT_CPD = 5

    # The number of times a user clicked on an ad.
    CLICKS = 2

    # The total number of times that the code for an ad is served by the ad
    # server including dynamic allocation.
    CODE_SERVED_COUNT = 44

    # For standard ads, your ad clickthrough rate (CTR) is the number of ad
    # clicks divided by the number of individual ad impressions expressed as a
    # fraction. Ad CTR = Clicks / Ad impressions.
    CTR = 3

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129

    # The number of auction impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131

    # The number of impressions sold by Google in partner sales.
    GOOGLE_SOLD_IMPRESSIONS = 130

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127

    # The number of reservation impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126

    # Total impressions from the Google Ad Manager server, AdSense,
    # Ad Exchange, and yield group partners.
    IMPRESSIONS = 1

    # The number of filled pod requests (filled by partner or Google) in
    # partner sales.
    PARTNER_SALES_FILLED_POD_REQUESTS = 135

    # The percent of filled requests to total ad requests in
    # partner sales.
    PARTNER_SALES_FILL_RATE = 136

    # The percent of partner filled requests to total ad requests
    # in partner sales.
    PARTNER_SALES_PARTNER_MATCH_RATE = 137

    # The number of queries eligible for partner sales.
    PARTNER_SALES_QUERIES = 132

    # The number of partner unfilled impressions in partner sales.
    # If a pod request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNFILLED_IMPRESSIONS = 133

    # The number of partner unmatched queries in partner sales.
    # If an ad request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNMATCHED_QUERIES = 134

    # The number of code served sold by partner in partner sales.
    PARTNER_SOLD_CODE_SERVED = 125

    # The number of coviewed impressions sold by partner in partner sales.
    PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124

    # The number of impressions sold by partner in partner sales.
    PARTNER_SOLD_IMPRESSIONS = 123

    # The total number of ad requests eligible for programmatic inventory,
    # including Programmatic Guaranteed, Preferred Deals, backfill, and open
    # auction.
    PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177

    # The number of programmatic responses served divided by the number of
    # programmatic eligible ad requests. Includes Ad Exchange, Open Bidding,
    # and Preferred Deals.
    PROGRAMMATIC_MATCH_RATE = 178

    # Total number of ad responses served from programmatic demand sources.
    # Includes Ad Exchange, Open Bidding, and Preferred Deals.
    #
    # Differs from AD_EXCHANGE_RESPONSES_SERVED, which doesn't include Open
    # Bidding ad requests.
    PROGRAMMATIC_RESPONSES_SERVED = 176

    # The total number of times that an ad is served by the ad server including
    # dynamic allocation.
    RESPONSES_SERVED = 39

    # Total amount of CPM, CPC, and CPD revenue based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE = 36

    # Total amount of revenue (excluding CPD) based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE_WITHOUT_CPD = 4

    # The average latency in milliseconds across all server-side unwrapping
    # callout requests. There is no special handling for error or timeout
    # responses. This reflects the entire chain of a parent callout request,
    # which may result in multiple child callouts. This metric is not sliced by
    # child callout dimensions.
    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434

    # The total number of server-side unwrapping callout requests.
    SERVER_SIDE_UNWRAPPING_CALLOUTS = 435

    # The total number of server-side unwrapping callouts that returned an
    # empty response. Timeouts are not considered empty responses.
    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436

    # The total number of server-side unwrapping callouts that returned an
    # error response. Timeouts and empty responses are not considered errors.
    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437

    # The total number of successfully unwrapped, non-empty server-side
    # wrapping callouts. Successful unwrapping does not indicate that the
    # resulting creative was served.
    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438

    # The total number of server-side unwrapping callouts that timed out before
    # returning a response.
    SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439

    # The total number of missed impressions due to the ad servers' inability
    # to find ads to serve including dynamic allocation.
    UNFILLED_IMPRESSIONS = 45

    # The total number of times that an ad is not returned by the ad server.
    UNMATCHED_AD_REQUESTS = 43

    # Number of times an Offerwall message was shown to users.
    USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121

    # The number of messages where the user gained an entitlement.
    USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122

    # The number of user interactions with a video, on average, such as pause,
    # full screen, mute, etc.
    VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92

    # The number of times a user collapses a video, either to its original size
    # or to a different size.
    VIDEO_INTERACTION_COLLAPSES = 93

    # The number of times a user expands a video.
    VIDEO_INTERACTION_EXPANDS = 95

    # The number of times ad clip played in full screen mode.
    VIDEO_INTERACTION_FULL_SCREENS = 96

    # The number of times video player was in mute state during play of ad
    # clip.
    VIDEO_INTERACTION_MUTES = 97

    # The number of times user paused ad clip.
    VIDEO_INTERACTION_PAUSES = 98

    # The number of times the user unpaused the video.
    VIDEO_INTERACTION_RESUMES = 99

    # The number of times a user rewinds the video.
    VIDEO_INTERACTION_REWINDS = 100

    # The number of times a user unmutes the video.
    VIDEO_INTERACTION_UNMUTES = 101

    # The number of times a skippable video is skipped.
    VIDEO_INTERACTION_VIDEO_SKIPS = 102

    # The number of total creative serves in video realtime reporting.
    VIDEO_REAL_TIME_CREATIVE_SERVES = 139

    # The number of errors of type 100 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_100_COUNT = 143

    # The number of errors of type 101 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_101_COUNT = 144

    # The number of errors of type 102 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_102_COUNT = 145

    # The number of errors of type 200 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_200_COUNT = 146

    # The number of errors of type 201 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_201_COUNT = 147

    # The number of errors of type 202 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_202_COUNT = 148

    # The number of errors of type 203 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_203_COUNT = 149

    # The number of errors of type 300 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_300_COUNT = 150

    # The number of errors of type 301 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_301_COUNT = 151

    # The number of errors of type 302 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_302_COUNT = 152

    # The number of errors of type 303 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_303_COUNT = 153

    # The number of errors of type 400 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_400_COUNT = 154

    # The number of errors of type 401 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_401_COUNT = 155

    # The number of errors of type 402 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_402_COUNT = 156

    # The number of errors of type 403 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_403_COUNT = 157

    # The number of errors of type 405 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_405_COUNT = 158

    # The number of errors of type 406 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_406_COUNT = 159

    # The number of errors of type 407 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_407_COUNT = 160

    # The number of errors of type 408 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_408_COUNT = 161

    # The number of errors of type 409 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_409_COUNT = 162

    # The number of errors of type 410 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_410_COUNT = 163

    # The number of errors of type 500 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_500_COUNT = 164

    # The number of errors of type 501 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_501_COUNT = 165

    # The number of errors of type 502 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_502_COUNT = 166

    # The number of errors of type 503 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_503_COUNT = 167

    # The number of errors of type 600 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_600_COUNT = 168

    # The number of errors of type 601 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_601_COUNT = 169

    # The number of errors of type 602 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_602_COUNT = 170

    # The number of errors of type 603 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_603_COUNT = 171

    # The number of errors of type 604 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_604_COUNT = 172

    # The number of errors of type 900 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_900_COUNT = 173

    # The number of errors of type 901 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_901_COUNT = 174

    # The number of total impressions in video realtime reporting.
    VIDEO_REAL_TIME_IMPRESSIONS = 138

    # The number of matched queries in video realtime reporting.
    VIDEO_REAL_TIME_MATCHED_QUERIES = 140

    # The number of all errors in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175

    # The number of total queries in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_QUERIES = 142

    # The number of unmatched queries in video realtime reporting.
    VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141

    # Number of times that the publisher specified a video ad played
    # automatically.
    VIDEO_VIEWERSHIP_AUTO_PLAYS = 103

    # Average percentage of the video watched by users.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104

    # Average time(seconds) users watched the video.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105

    # Number of times that the publisher specified a video ad was clicked to
    # play.
    VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106

    # The number of times the video played to completion.
    VIDEO_VIEWERSHIP_COMPLETES = 107

    # Percentage of times the video played to the end.
    VIDEO_VIEWERSHIP_COMPLETION_RATE = 108

    # The number of engaged views: ad is viewed to completion or for 30s,
    # whichever comes first.
    VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109

    # The number of times the video played to 25% of its length.
    VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110

    # The number of times the video reached its midpoint during play.
    VIDEO_VIEWERSHIP_MIDPOINTS = 111

    # The number of times a skip button is shown in video.
    VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112

    # The number of impressions where the video was played.
    VIDEO_VIEWERSHIP_STARTS = 113

    # The number of times the video played to 75% of its length.
    VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114

    # The number of times an error occurred, such as a VAST redirect error, a
    # video playback error, or an invalid response error.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115

    # The percentage of video error count.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94

    # Duration of the video creative.
    VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116

    # View-through rate represented as a percentage.
    VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117

    # Number of winning bids received from Open Bidding buyers, even when the
    # winning bid is placed at the end of a mediation for mobile apps chain.
    YIELD_GROUP_AUCTIONS_WON = 80

    # Number of bids received from Open Bidding buyers, regardless of whether
    # the returned bid competes in an auction.
    YIELD_GROUP_BIDS = 81

    # Number of bids received from Open Bidding buyers that competed in
    # the auction.
    YIELD_GROUP_BIDS_IN_AUCTION = 82

    # Number of times a yield partner is asked to return bid to fill
    # a yield group request.
    YIELD_GROUP_CALLOUTS = 83

    # The estimated net rate for yield groups or individual
    # yield group partners.
    YIELD_GROUP_ESTIMATED_CPM = 88

    # Total net revenue earned by a yield group, based upon the yield group
    # estimated CPM and yield group impressions recorded.
    YIELD_GROUP_ESTIMATED_REVENUE = 87

    # Number of matched yield group requests where a yield partner delivered
    # their ad to publisher inventory.
    YIELD_GROUP_IMPRESSIONS = 85

    # Yield group Mediation fill rate indicating how often a network
    # fills an ad request.
    YIELD_GROUP_MEDIATION_FILL_RATE = 89

    # Total requests where a Mediation chain was served.
    YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86

    # The number of mediation chain passback across all channels.
    YIELD_GROUP_MEDIATION_PASSBACKS = 118

    # Revenue per thousand impressions based on data collected by Ad Manager
    # from third-party ad network reports.
    YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90

    # Number of times a yield group buyer successfully returned a bid in
    # response to a yield group callout.
    YIELD_GROUP_SUCCESSFUL_RESPONSES = 84
  end

  # Possible metric value types to add.
  module MetricValueType
    # The values for the primary date_range.
    PRIMARY = 0

    # Each metrics' percent of the total for the primary date_range.
    PRIMARY_PERCENT_OF_TOTAL = 1

    # The values for the comparison_date_range.
    COMPARISON = 2

    # Each metrics' percent of the total for the comparison_date_range.
    COMPARISON_PERCENT_OF_TOTAL = 3

    # The absolute change between the primary and comparison date ranges.
    ABSOLUTE_CHANGE = 4

    # The relative change between the primary and comparison date ranges.
    RELATIVE_CHANGE = 5
  end

  # Supported report types.
  module ReportType
    # Default value. This value is unused.
    REPORT_TYPE_UNSPECIFIED = 0

    # Historical.
    HISTORICAL = 1
  end

  # The visibility of a report.
  module Visibility
    # Default value. Reports with hidden visibility will not appear in the Ad
    # Manager UI.
    HIDDEN = 0

    # Reports with draft visibility will appear in the Ad Manager UI only if
    # the user has configured the UI to show them.
    DRAFT = 1

    # Reports with saved visibility will appear in the Ad Manager UI by
    # default.
    SAVED = 2
  end

  # The source to determine the time zone for the report.
  module TimeZoneSource
    # Unspecified default value.
    TIME_ZONE_SOURCE_UNSPECIFIED = 0

    # Use the publisher's time zone in network settings.
    PUBLISHER = 1

    # Use the time zone of the ad exchange.
    # Only compatible with Ad Exchange dimensions and metrics.
    AD_EXCHANGE = 2

    # Use UTC time zone.
    # Only compatible with Revenue Verification reports.
    UTC = 3

    # Use the time zone provided in the ReportDefinition.time_zone field.
    # Has limited dimension and metric compatibility compared with PUBLISHER,
    # and reports may take longer to run since the dates are dynamically
    # calculated at request time.
    PROVIDED = 4
  end
end

#name::String

Returns Identifier. The resource name of the report. Report resource name have the form: networks/{network_code}/reports/{report_id}.

Returns:

  • (::String)

    Identifier. The resource name of the report. Report resource name have the form: networks/{network_code}/reports/{report_id}



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
# File 'proto_docs/google/ads/admanager/v1/report_messages.rb', line 55

class Report
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a single value in a report.
  # @!attribute [rw] int_value
  #   @return [::Integer]
  #     For integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] double_value
  #   @return [::Float]
  #     For double values.
  #
  #     Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_value
  #   @return [::String]
  #     For string values.
  #
  #     Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bool_value
  #   @return [::Boolean]
  #     For boolean values.
  #
  #     Note: The following fields are mutually exclusive: `bool_value`, `int_value`, `double_value`, `string_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] int_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::IntList]
  #     For lists of integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::StringList]
  #     For lists of string values.
  #
  #     Note: The following fields are mutually exclusive: `string_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bytes_value
  #   @return [::String]
  #     For bytes values.
  #
  #     Note: The following fields are mutually exclusive: `bytes_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Value
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A list of integer values.
    # @!attribute [rw] values
    #   @return [::Array<::Integer>]
    #     The values
    class IntList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of string values.
    # @!attribute [rw] values
    #   @return [::Array<::String>]
    #     The values
    class StringList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Represents a sorting in a report.
  # @!attribute [rw] field
  #   @return [::Google::Ads::AdManager::V1::Report::Field]
  #     Required. A field (dimension or metric) to sort by.
  # @!attribute [rw] descending
  #   @return [::Boolean]
  #     Optional. The sort order. If true the sort will be descending.
  # @!attribute [rw] slice
  #   @return [::Google::Ads::AdManager::V1::Report::Slice]
  #     Optional. Use to sort on a specific slice of data.
  # @!attribute [rw] time_period_index
  #   @return [::Integer]
  #     Optional. When using time period columns, use this to sort on a specific
  #     column.
  # @!attribute [rw] metric_value_type
  #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
  #     Optional. Use to specify which metric value type to sort on. Defaults to
  #     PRIMARY.
  class Sort
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A table containing report data including dimension and metric values.
  class DataTable
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A row of report data.
    # @!attribute [rw] dimension_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     The order of the dimension values is the same as the order of the
    #     dimensions specified in the request.
    # @!attribute [rw] metric_value_groups
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::DataTable::MetricValueGroup>]
    #     The length of the metric_value_groups
    #     field will be equal to the length of the date_ranges field in the
    #     fetch response. The metric_value_groups field is
    #     ordered such that each index corresponds to the date_range at the same
    #     index. For example, given date_ranges [x, y], metric_value_groups will
    #     have a length of two. The first entry in metric_value_groups represents
    #     the metrics for date x and the second entry in metric_value_groups
    #     represents the metrics for date y.
    class Row
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Contains all metric values requested for a single date range and set of
    # column dimension values (returned in the columns field of the response).
    # The order of the metrics in each field corresponds to the order of the
    # metrics specified in the request.
    # @!attribute [rw] primary_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY MetricValueType.
    # @!attribute [rw] primary_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] comparison_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON MetricValueType.
    # @!attribute [rw] comparison_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] absolute_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the ABSOLUTE_CHANGE MetricValueType.
    # @!attribute [rw] relative_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the RELATIVE_CHANGE MetricValueType.
    # @!attribute [rw] flag_values
    #   @return [::Array<::Boolean>]
    #     If true, the flag's conditions are met. If false, the flag's
    #     conditions are not met. flag_values has the same length as
    #     flags and index i of flag_values represents the flag at index i
    #     of flags.
    class MetricValueGroup
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # A dimension or a metric in a report.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     The dimension this field represents.
  #
  #     Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] metric
  #   @return [::Google::Ads::AdManager::V1::Report::Metric]
  #     The metric this field represents.
  #
  #     Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Field
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Use to specify a slice of data.
  #
  # For example, in a report, to focus on just data from the US, specify
  # `COUNTRY_NAME` for dimension and value: `"United States"`.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     Required. The dimension to slice on.
  # @!attribute [rw] value
  #   @return [::Google::Ads::AdManager::V1::Report::Value]
  #     Required. The value of the dimension.
  class Slice
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A filter over one or more fields.
  # @!attribute [rw] field_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FieldFilter]
  #     A filter on a single field.
  #
  #     Note: The following fields are mutually exclusive: `field_filter`, `not_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] not_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter]
  #     A filter whose result is negated.
  #
  #     Note: The following fields are mutually exclusive: `not_filter`, `field_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] and_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are AND-ed.
  #
  #     Note: The following fields are mutually exclusive: `and_filter`, `field_filter`, `not_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] or_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are OR-ed.
  #
  #     Note: The following fields are mutually exclusive: `or_filter`, `field_filter`, `not_filter`, `and_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Filter
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A filter on a specific field.
    # @!attribute [rw] field
    #   @return [::Google::Ads::AdManager::V1::Report::Field]
    #     Required. The field to filter on.
    # @!attribute [rw] operation
    #   @return [::Google::Ads::AdManager::V1::Report::Filter::Operation]
    #     Required. The operation of this filter.
    # @!attribute [rw] values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Required. Values to filter to.
    # @!attribute [rw] slice
    #   @return [::Google::Ads::AdManager::V1::Report::Slice]
    #     Optional. Use to filter on a specific slice of data.
    # @!attribute [rw] time_period_index
    #   @return [::Integer]
    #     Optional. When using time period columns, use this to filter on a
    #     specific column.
    # @!attribute [rw] metric_value_type
    #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
    #     Optional. Use to specify which metric value type to filter on. Defaults
    #     to PRIMARY.
    class FieldFilter
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of filters.
    # @!attribute [rw] filters
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
    #     Required. A list of filters.
    class FilterList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Supported filter operations.
    module Operation
      # For scalar operands, checks if the operand is in the set of provided
      # filter values.
      #
      # For list operands, checks if any element in the operand is in the set
      # of provided filter values.
      #
      # Default value.
      IN = 0

      # For scalar operands, checks that the operand is not in the set of
      # provided filter values.
      #
      # For list operands, checks that none of the elements in the operand
      # is in the set of provided filter values.
      NOT_IN = 1

      # For scalar string operands, checks if the operand contains any of the
      # provided filter substrings.
      #
      # For string list operands, checks if any string in the operand contains
      # any of the provided filter substrings.
      CONTAINS = 2

      # For scalar string operands, checks that the operand contains none of
      # the provided filter substrings.
      #
      # For string list operands, checks that none of the strings in the
      # operand contain none of the provided filter substrings.
      NOT_CONTAINS = 3

      # Operand is less than the provided filter value.
      LESS_THAN = 4

      # Operand is less than or equal to provided filter value.
      LESS_THAN_EQUALS = 5

      # Operand is greater than provided filter value.
      GREATER_THAN = 6

      # Operand is greater than or equal to provided filter value.
      GREATER_THAN_EQUALS = 7

      # Operand is between provided filter values.
      BETWEEN = 8

      # Operand matches against a regex or set of regexes (one must match)
      MATCHES = 9

      # Operand negative matches against a regex or set of regexes (none must
      # match)
      NOT_MATCHES = 10
    end
  end

  # A flag for a report. Flags are used show if certain thresholds are met.
  # Result rows that match the filter will have the corresponding
  # [MetricValueGroup.flagValues][MetricValueGroup] index set to true.
  # For more information about flags see:
  # https://support.google.com/admanager/answer/15079975
  # @!attribute [rw] filters
  #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
  #     Required. Filters to apply for the flag.
  # @!attribute [rw] name
  #   @return [::String]
  #     Optional. Name of the flag.
  #     The flag names RED, YELLOW, GREEN, BLUE, PURPLE, and GREY correspond to
  #     the colored flags that appear in the UI. The UI will not display flags
  #     with other names, but they are available for use by API clients.
  class Flag
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A date range for a report.
  # @!attribute [rw] fixed
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::FixedDateRange]
  #     A fixed date range.
  #
  #     Note: The following fields are mutually exclusive: `fixed`, `relative`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] relative
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::RelativeDateRange]
  #     A relative date range.
  #
  #     Note: The following fields are mutually exclusive: `relative`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class DateRange
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A date range between two fixed dates (inclusive of end date).
    # @!attribute [rw] start_date
    #   @return [::Google::Type::Date]
    #     Required. The start date of this date range.
    # @!attribute [rw] end_date
    #   @return [::Google::Type::Date]
    #     Required. The end date (inclusive) of this date range.
    class FixedDateRange
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Options for relative date ranges.
    module RelativeDateRange
      # Default value. This value is unused.
      RELATIVE_DATE_RANGE_UNSPECIFIED = 0

      # The date the report is run.
      TODAY = 1

      # The date a day before the date that the report is run.
      YESTERDAY = 2

      # The full week in which this report is run. Could include dates in
      # the future.
      THIS_WEEK = 3

      # From the beginning of the calendar week (Monday to Sunday) in which the
      # up to and including the day the report is run.
      THIS_WEEK_TO_DATE = 29

      # The full month in which this report is run. Could include dates in
      # the future.
      THIS_MONTH = 4

      # From the beginning of the calendar month in which the report is run, to
      # up to and including the day the report is run.
      THIS_MONTH_TO_DATE = 26

      # The full quarter in which this report is run. Could include dates
      # in the future.
      THIS_QUARTER = 5

      # From the beginning of the calendar quarter in which the report is run,
      # up to and including the day the report is run.
      THIS_QUARTER_TO_DATE = 27

      # The full year in which this report is run. Could include dates in
      # the future.
      THIS_YEAR = 6

      # From the beginning of the calendar year in which the report is run, to
      # up to and including the day the report is run.
      THIS_YEAR_TO_DATE = 28

      # The entire previous calendar week, Monday to Sunday (inclusive),
      # preceding the calendar week the report is run.
      LAST_WEEK = 7

      # The entire previous calendar month preceding the calendar month the
      # report is run.
      LAST_MONTH = 8

      # The entire previous calendar quarter preceding the calendar quarter the
      # report is run.
      LAST_QUARTER = 9

      # The entire previous calendar year preceding the calendar year the
      # report is run.
      LAST_YEAR = 10

      # The 7 days preceding the day the report is run.
      LAST_7_DAYS = 11

      # The 30 days preceding the day the report is run.
      LAST_30_DAYS = 12

      # The 60 days preceding the day the report is run.
      LAST_60_DAYS = 13

      # The 90 days preceding the day the report is run.
      LAST_90_DAYS = 14

      # The 180 days preceding the day the report is run.
      LAST_180_DAYS = 15

      # The 360 days preceding the day the report is run.
      LAST_360_DAYS = 16

      # The 365 days preceding the day the report is run.
      LAST_365_DAYS = 17

      # The entire previous 3 calendar months preceding the calendar month the
      # report is run.
      LAST_3_MONTHS = 18

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_6_MONTHS = 19

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_12_MONTHS = 20

      # From 3 years before the report is run, to the day before the report is
      # run, inclusive.
      ALL_AVAILABLE = 21

      # Only valid when used in the comparison_date_range field. The complete
      # period preceding the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange of N days, this will
      # be a period of N days where the end date is the date preceding the
      # start date of the date_range.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame preceding the date_range. In the case
      # where the date_range does not capture the full period because a report
      # is run in the middle of that period, this will still be the full
      # preceding period. For example, if date_range is THIS_WEEK, but the
      # report is run on a Wednesday, THIS_WEEK will be Monday - Wednesday, but
      # PREVIOUS_PERIOD will be Monday - Sunday.
      PREVIOUS_PERIOD = 22

      # Only valid when used in the comparison_date_range field. The period
      # starting 1 year prior to the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange, this will be a date
      # range starting 1 year prior to the date_range start date and ending 1
      # year prior to the date_range end date.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame exactly 1 year prior to the date_range.
      # In the case where the date_range does not capture the full period
      # because a report is run in the middle of that period, this will still
      # be the full period 1 year prior. For example, if date range is
      # THIS_WEEK, but the report is run on a Wednesday, THIS_WEEK will be
      # Monday - Wednesday, but SAME_PERIOD_PREVIOUS_YEAR will be Monday -
      # Sunday.
      SAME_PERIOD_PREVIOUS_YEAR = 24
    end
  end

  # Valid time period columns.
  module TimePeriodColumn
    # Default value. Report will have no time period column.
    TIME_PERIOD_COLUMN_UNSPECIFIED = 0

    # A column for each date in the report.
    TIME_PERIOD_COLUMN_DATE = 1

    # A column for each week in the report.
    TIME_PERIOD_COLUMN_WEEK = 2

    # A column for each month in the report.
    TIME_PERIOD_COLUMN_MONTH = 3

    # A column for each quarter in the report.
    TIME_PERIOD_COLUMN_QUARTER = 4
  end

  # Reporting dimensions.
  module Dimension
    # Default value. This value is unused.
    DIMENSION_UNSPECIFIED = 0

    # The domain name of the advertiser.
    ADVERTISER_DOMAIN_NAME = 242

    # The ID used in an external system for advertiser identification
    ADVERTISER_EXTERNAL_ID = 228

    # The ID of an advertiser company assigned to an order
    ADVERTISER_ID = 131

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABELS = 230

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABEL_IDS = 229

    # The name of an advertiser company assigned to an order
    ADVERTISER_NAME = 132

    # The name of the contact associated with an advertiser company
    ADVERTISER_PRIMARY_CONTACT = 227

    # Shows an ENUM value describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION = 390

    # Shows a localized string describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION_NAME = 391

    # The code of the ad unit where the ad was requested.
    AD_UNIT_CODE = 64

    # The code of the first level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_1 = 65

    # The code of the tenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_10 = 74

    # The code of the eleventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_11 = 75

    # The code of the twelfth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_12 = 76

    # The code of the thirteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_13 = 77

    # The code of the fourteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_14 = 78

    # The code of the fifteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_15 = 79

    # The code of the sixteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_16 = 80

    # The code of the second level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_2 = 66

    # The code of the third level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_3 = 67

    # The code of the fourth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_4 = 68

    # The code of the fifth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_5 = 69

    # The code of the sixth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_6 = 70

    # The code of the seventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_7 = 71

    # The code of the eighth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_8 = 72

    # The code of the ninth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_9 = 73

    # The depth of the ad unit's hierarchy
    AD_UNIT_DEPTH = 101

    # The ID of the ad unit where the ad was requested.
    AD_UNIT_ID = 25

    # The full hierarchy of ad unit IDs where the ad was requested, from
    # root to leaf, excluding the root ad unit ID.
    AD_UNIT_ID_ALL_LEVEL = 27

    # The first level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_1 = 30

    # The tenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_10 = 48

    # The eleventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_11 = 50

    # The twelfth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_12 = 52

    # The thirteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_13 = 54

    # The fourteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_14 = 56

    # The fifteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_15 = 58

    # The sixteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_16 = 60

    # The second level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_2 = 32

    # The third level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_3 = 34

    # The fourth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_4 = 36

    # The fifth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_5 = 38

    # The sixth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_6 = 40

    # The seventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_7 = 42

    # The eighth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_8 = 44

    # The ninth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_9 = 46

    # The top-level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_TOP_LEVEL = 142

    # The name of the ad unit where the ad was requested.
    AD_UNIT_NAME = 26

    # The full hierarchy of ad unit names where the ad was requested, from
    # root to leaf, excluding the root ad unit name.
    AD_UNIT_NAME_ALL_LEVEL = 29

    # The first level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_1 = 31

    # The tenth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_10 = 49

    # The eleventh level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_11 = 51

    # The twelfth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_12 = 53

    # The thirteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_13 = 55

    # The fourteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_14 = 57

    # The fifteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_15 = 59

    # The sixteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_16 = 61

    # The second level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_2 = 33

    # The third level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_3 = 35

    # The fourth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_4 = 37

    # The fifth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_5 = 39

    # The sixth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_6 = 41

    # The seventh level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_7 = 43

    # The eighth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_8 = 45

    # The ninth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_9 = 47

    # The top-level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_TOP_LEVEL = 143

    # The reward amount of the ad unit where the ad was requested.
    AD_UNIT_REWARD_AMOUNT = 63

    # The reward type of the ad unit where the ad was requested.
    AD_UNIT_REWARD_TYPE = 62

    # The status of the ad unit
    AD_UNIT_STATUS = 206

    # The name of the status of the ad unit
    AD_UNIT_STATUS_NAME = 207

    # The app version.
    APP_VERSION = 392

    # The ID used in an external system for advertiser identification
    BACKFILL_ADVERTISER_EXTERNAL_ID = 349

    # The ID of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_ID = 346

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABELS = 351

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABEL_IDS = 350

    # The name of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_NAME = 347

    # The name of the contact associated with an advertiser company
    BACKFILL_ADVERTISER_PRIMARY_CONTACT = 348

    # Enum value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE = 378

    # Localized string value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE_NAME = 379

    # Represents the click-through URL of a Backfill creative
    BACKFILL_CREATIVE_CLICK_THROUGH_URL = 376

    # The ID of a Backfill creative
    BACKFILL_CREATIVE_ID = 370

    # Backfill creative name
    BACKFILL_CREATIVE_NAME = 371

    # Third party vendor name of a Backfill creative
    BACKFILL_CREATIVE_THIRD_PARTY_VENDOR = 377

    # Enum value of Backfill creative type
    BACKFILL_CREATIVE_TYPE = 374

    # Localized string name of Backfill creative type
    BACKFILL_CREATIVE_TYPE_NAME = 375

    # Whether a Backfill line item is archived.
    BACKFILL_LINE_ITEM_ARCHIVED = 278

    # Backfill line item comanion delivery option ENUM value.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION = 258

    # Localized Backfill line item comanion delivery option name.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 259

    # The computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS = 296

    # The localized name of the computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME = 297

    # The contracted units bought for the Backfill line item.
    BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY = 280

    # The cost per unit of the Backfill line item.
    BACKFILL_LINE_ITEM_COST_PER_UNIT = 272

    # Backfill line item cost type ENUM value.
    BACKFILL_LINE_ITEM_COST_TYPE = 264

    # Localized Backfill line item cost type name.
    BACKFILL_LINE_ITEM_COST_TYPE_NAME = 265

    # Represent the end date of a Backfill creative associated with a Backfill
    # line item
    BACKFILL_LINE_ITEM_CREATIVE_END_DATE = 381

    # The creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE = 290

    # The localized name of the creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 291

    # Represent the start date of a Backfill creative associated with a
    # Backfill line item
    BACKFILL_LINE_ITEM_CREATIVE_START_DATE = 380

    # The 3 letter currency code of the Backfill line item
    BACKFILL_LINE_ITEM_CURRENCY_CODE = 288

    # The progress made for the delivery of the Backfill line item.
    BACKFILL_LINE_ITEM_DELIVERY_INDICATOR = 274

    # The delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE = 292

    # The localized name of the delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 293

    # The discount of the BackfillLineItem in whole units in the
    # BackfillLineItem's currency code, or if unspecified the Network's
    # currency code.
    BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE = 294

    # The discount of the BackfillLineItem in percentage.
    BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE = 295

    # The end date of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE = 267

    # The end date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE_TIME = 269

    # The ENUM value of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE = 302

    # The localized name of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME = 257

    # The deal ID of the Backfill line item. Set for Programmatic Direct
    # campaigns.
    BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID = 285

    # The external ID of the Backfill line item.
    BACKFILL_LINE_ITEM_EXTERNAL_ID = 273

    # The frequency cap of the Backfill line item (descriptive string).
    BACKFILL_LINE_ITEM_FREQUENCY_CAP = 303

    # Backfill line item ID.
    BACKFILL_LINE_ITEM_ID = 298

    # The application that last modified the Backfill line item.
    BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP = 289

    # The total number of clicks delivered of the lifetime of the Backfill line
    # item.
    BACKFILL_LINE_ITEM_LIFETIME_CLICKS = 283

    # The total number of impressions delivered over the lifetime of the
    # Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS = 282

    # The total number of viewable impressions delivered over the lifetime of
    # the Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 284

    # Whether or not the Backfill line item is Makegood. Makegood refers to
    # free inventory offered to buyers to compensate for mistakes or
    # under-delivery in the original campaigns.
    BACKFILL_LINE_ITEM_MAKEGOOD = 276

    # Backfill line item name.
    BACKFILL_LINE_ITEM_NAME = 299

    # The cost of booking for the Backfill line item (non-CPD).
    BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE = 286

    # Whether a Backfill line item is eligible for opitimization.
    BACKFILL_LINE_ITEM_OPTIMIZABLE = 277

    # Goal type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE = 262

    # Localized goal type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 263

    # Unit type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 260

    # Localized unit type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 261

    # The priority of this Backfill line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Backfill line item.
    BACKFILL_LINE_ITEM_PRIORITY = 266

    # ENUM value describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS = 306

    # Localized string describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME = 307

    # The start date of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE = 268

    # The start date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE_TIME = 270

    # Backfill line item type ENUM value.
    BACKFILL_LINE_ITEM_TYPE = 300

    # Localized Backfill line item type name.
    BACKFILL_LINE_ITEM_TYPE_NAME = 301

    # Whether the Backfill line item end time and end date is set to
    # effectively never end.
    BACKFILL_LINE_ITEM_UNLIMITED_END = 271

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT = 275

    # The web property code used for dynamic allocation Backfill line items.
    BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE = 287

    # The ID of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_ID = 372

    # Name of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_NAME = 373

    # Backfill order agency.
    BACKFILL_ORDER_AGENCY = 313

    # Backfill order agency ID.
    BACKFILL_ORDER_AGENCY_ID = 314

    # Backfill order booked CPC.
    BACKFILL_ORDER_BOOKED_CPC = 315

    # Backfill order booked CPM.
    BACKFILL_ORDER_BOOKED_CPM = 316

    # Backfill order delivery status ENUM value.
    BACKFILL_ORDER_DELIVERY_STATUS = 340

    # Backfill order delivery status localized name.
    BACKFILL_ORDER_DELIVERY_STATUS_NAME = 341

    # Backfill order end date.
    BACKFILL_ORDER_END_DATE = 317

    # Backfill order end date and time.
    BACKFILL_ORDER_END_DATE_TIME = 319

    # Backfill order external ID.
    BACKFILL_ORDER_EXTERNAL_ID = 320

    # Backfill order id.
    BACKFILL_ORDER_ID = 338

    # Backfill order labels.
    BACKFILL_ORDER_LABELS = 334

    # Backfill order labels IDs.
    BACKFILL_ORDER_LABEL_IDS = 335

    # Backfill order lifetime clicks.
    BACKFILL_ORDER_LIFETIME_CLICKS = 322

    # Backfill order lifetime impressions.
    BACKFILL_ORDER_LIFETIME_IMPRESSIONS = 323

    # Backfill order name.
    BACKFILL_ORDER_NAME = 339

    # Backfill order PO number.
    BACKFILL_ORDER_PO_NUMBER = 324

    # Whether the Backfill order is programmatic.
    BACKFILL_ORDER_PROGRAMMATIC = 321

    # Backfill order sales person.
    BACKFILL_ORDER_SALESPERSON = 325

    # Backfill order secondary sales people.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE = 329

    # Backfill order secondary sales people ID.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID = 328

    # Backfill order secondary traffickers.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS = 331

    # Backfill order secondary traffickers ID.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID = 330

    # Backfill order start date.
    BACKFILL_ORDER_START_DATE = 332

    # Backfill order start date and time.
    BACKFILL_ORDER_START_DATE_TIME = 333

    # Backfill order trafficker.
    BACKFILL_ORDER_TRAFFICKER = 326

    # Backfill order trafficker ID.
    BACKFILL_ORDER_TRAFFICKER_ID = 327

    # Whether the Backfill order end time and end date is set to effectively
    # never end.
    BACKFILL_ORDER_UNLIMITED_END = 318

    # The ID of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_ID = 336

    # The name of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_NAME = 337

    # The amount of information about the Publisher's page sent to the buyer
    # who purchased the impressions.
    BRANDING_TYPE = 383

    # The localized version of branding type, the amount of information about
    # the Publisher's page sent to the buyer who purchased the impressions.
    BRANDING_TYPE_NAME = 384

    # Browser category.
    BROWSER_CATEGORY = 119

    # Browser category name.
    BROWSER_CATEGORY_NAME = 120

    # The ID of the browser.
    BROWSER_ID = 235

    # The name of the browser.
    BROWSER_NAME = 236

    # Mobile carrier ID.
    CARRIER_ID = 369

    # Name of the mobile carrier.
    CARRIER_NAME = 368

    # The ID of an advertiser, classified by Google, associated with a creative
    # transacted
    CLASSIFIED_ADVERTISER_ID = 133

    # The name of an advertiser, classified by Google, associated with a
    # creative transacted
    CLASSIFIED_ADVERTISER_NAME = 134

    # ID of the brand, as classified by Google,
    CLASSIFIED_BRAND_ID = 243

    # Name of the brand, as classified by Google,
    CLASSIFIED_BRAND_NAME = 244

    # ID of the video content served.
    CONTENT_ID = 246

    # Name of the video content served.
    CONTENT_NAME = 247

    # The criteria ID of the country in which the ad served.
    COUNTRY_ID = 11

    # The name of the country in which the ad served.
    COUNTRY_NAME = 12

    # Enum value of creative billing type
    CREATIVE_BILLING_TYPE = 366

    # Localized string value of creative billing type
    CREATIVE_BILLING_TYPE_NAME = 367

    # Represents the click-through URL of a creative
    CREATIVE_CLICK_THROUGH_URL = 174

    # The ID of a creative
    CREATIVE_ID = 138

    # Creative name
    CREATIVE_NAME = 139

    # Creative technology ENUM
    CREATIVE_TECHNOLOGY = 148

    # Creative technology locallized name
    CREATIVE_TECHNOLOGY_NAME = 149

    # Third party vendor name of a creative
    CREATIVE_THIRD_PARTY_VENDOR = 361

    # Enum value of creative type
    CREATIVE_TYPE = 344

    # Localized string name of creative type
    CREATIVE_TYPE_NAME = 345

    # Breaks down reporting data by date.
    DATE = 3

    # Breaks down reporting data by day of the week. Monday is 1 and 7 is
    # Sunday.
    DAY_OF_WEEK = 4

    # Demand channel.
    DEMAND_CHANNEL = 9

    # Demand channel name.
    DEMAND_CHANNEL_NAME = 10

    # Demand subchannel.
    DEMAND_SUBCHANNEL = 22

    # Demand subchannel name.
    DEMAND_SUBCHANNEL_NAME = 23

    # The device on which an ad was served.
    DEVICE = 226

    # The device category to which an ad is being targeted.
    DEVICE_CATEGORY = 15

    # The name of the category of device (smartphone, feature phone, tablet, or
    # desktop) to which an ad is being targeted.
    DEVICE_CATEGORY_NAME = 16

    # The localized name of the device on which an ad was served.
    DEVICE_NAME = 225

    # ID of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_ID = 185

    # Name of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186

    # The ID of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_ID = 248

    # The name of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_NAME = 249

    # Breaks down reporting data by hour in one day.
    HOUR = 100

    # The interaction type of an ad.
    INTERACTION_TYPE = 223

    # The localized name of the interaction type of an ad.
    INTERACTION_TYPE_NAME = 224

    # Inventory format.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT = 17

    # Inventory format name.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT_NAME = 18

    # Inventory type.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE = 19

    # Inventory type name.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE_NAME = 20

    # Whether traffic is Adx Direct.
    IS_ADX_DIRECT = 382

    # Whether traffic is First Look.
    IS_FIRST_LOOK_DEAL = 401

    # The Custom Targeting Value ID
    KEY_VALUES_ID = 214

    # The Custom Targeting Value formatted like <key_name>=<value_name>
    KEY_VALUES_NAME = 215

    # Whether a Line item is archived.
    LINE_ITEM_ARCHIVED = 188

    # Line item comanion delivery option ENUM value.
    LINE_ITEM_COMPANION_DELIVERY_OPTION = 204

    # Localized line item comanion delivery option name.
    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205

    # The computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS = 250

    # The localized name of the computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS_NAME = 251

    # The contracted units bought for the Line item.
    LINE_ITEM_CONTRACTED_QUANTITY = 92

    # The cost per unit of the Line item.
    LINE_ITEM_COST_PER_UNIT = 85

    # Line item cost type ENUM value.
    LINE_ITEM_COST_TYPE = 212

    # Localized line item cost type name.
    LINE_ITEM_COST_TYPE_NAME = 213

    # Represent the end date of a creative associated with line item
    LINE_ITEM_CREATIVE_END_DATE = 176

    # The creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE = 189

    # The localized name of the creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190

    # Represent the start date of a creative associated with line item
    LINE_ITEM_CREATIVE_START_DATE = 175

    # The 3 letter currency code of the Line Item
    LINE_ITEM_CURRENCY_CODE = 180

    # The progress made for the delivery of the Line item.
    LINE_ITEM_DELIVERY_INDICATOR = 87

    # The delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE = 191

    # The localized name of the delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192

    # The discount of the LineItem in whole units in the LineItem's currency
    # code, or if unspecified the Network's currency code.
    LINE_ITEM_DISCOUNT_ABSOLUTE = 195

    # The discount of the LineItem in percentage.
    LINE_ITEM_DISCOUNT_PERCENTAGE = 196

    # The end date of the Line item.
    LINE_ITEM_END_DATE = 81

    # The end date and time of the Line item.
    LINE_ITEM_END_DATE_TIME = 83

    # The ENUM value of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE = 201

    # The localized name of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202

    # The deal ID of the Line item. Set for Programmatic Direct campaigns.
    LINE_ITEM_EXTERNAL_DEAL_ID = 97

    # The external ID of the Line item.
    LINE_ITEM_EXTERNAL_ID = 86

    # The frequency cap of the Line item (descriptive string).
    LINE_ITEM_FREQUENCY_CAP = 256

    # Line item ID.
    LINE_ITEM_ID = 1

    # The application that last modified the Line Item.
    LINE_ITEM_LAST_MODIFIED_BY_APP = 181

    # The total number of clicks delivered of the lifetime of the Line item.
    LINE_ITEM_LIFETIME_CLICKS = 95

    # The total number of impressions delivered over the lifetime of the
    # Line item.
    LINE_ITEM_LIFETIME_IMPRESSIONS = 94

    # The total number of viewable impressions delivered over the lifetime of
    # the Line item.
    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96

    # Whether or not the Line item is Makegood. Makegood refers to free
    # inventory offered to buyers to compensate for mistakes or under-delivery
    # in the original campaigns.
    LINE_ITEM_MAKEGOOD = 89

    # Line item Name.
    LINE_ITEM_NAME = 2

    # The cost of booking for the Line item (non-CPD).
    LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98

    # Whether a Line item is eligible for opitimization.
    LINE_ITEM_OPTIMIZABLE = 90

    # Goal type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE = 210

    # Localized goal type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211

    # The total number of impressions or clicks that are reserved for a
    # line item. For line items of type BULK or PRICE_PRIORITY, this represents
    # the number of remaining impressions reserved. If the line item has an
    # impression cap goal, this represents the number of impressions or
    # conversions that the line item will stop serving at if reached.
    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93

    # The percentage of impressions or clicks that are reserved for a
    # line item. For line items of type SPONSORSHIP, this represents the
    # percentage of available impressions reserved. For line items of type
    # NETWORK or HOUSE, this represents the percentage of remaining impressions
    # reserved.
    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396

    # Unit type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208

    # Localized unit type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209

    # The priority of this Line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Line item.
    LINE_ITEM_PRIORITY = 24

    # ENUM value describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS = 304

    # Localized string describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS_NAME = 305

    # The start date of the Line item.
    LINE_ITEM_START_DATE = 82

    # The start date and time of the Line item.
    LINE_ITEM_START_DATE_TIME = 84

    # Line item type ENUM value.
    LINE_ITEM_TYPE = 193

    # Localized line item type name.
    LINE_ITEM_TYPE_NAME = 194

    # Whether the Line item end time and end date is set to effectively never
    # end.
    LINE_ITEM_UNLIMITED_END = 187

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    LINE_ITEM_VALUE_COST_PER_UNIT = 88

    # The web property code used for dynamic allocation Line Items.
    LINE_ITEM_WEB_PROPERTY_CODE = 179

    # The ID of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_ID = 140

    # Name of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_NAME = 141

    # Whether the mobile app is free.
    MOBILE_APP_FREE = 128

    # URL of app icon for the mobile app.
    MOBILE_APP_ICON_URL = 129

    # The ID of the Mobile App.
    MOBILE_APP_ID = 123

    # The name of the mobile app.
    MOBILE_APP_NAME = 127

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS = 311

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS_NAME = 312

    # The App Store of the mobile app.
    MOBILE_APP_STORE = 125

    # The localized name of the mobile app store.
    MOBILE_APP_STORE_NAME = 245

    # Mobile inventory type.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    # Values match the Inventory type dimension available in the Overview Home
    # dashboard. Note: Video takes precedence over any other value, for
    # example, if there is an in-stream video impression on a desktop device,
    # it will be attributed to in-stream video and not desktop web.
    MOBILE_INVENTORY_TYPE = 99

    # Mobile inventory type name.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    MOBILE_INVENTORY_TYPE_NAME = 21

    # SDK version of the mobile device.
    MOBILE_SDK_VERSION_NAME = 130

    # Breaks down reporting data by month and year.
    MONTH_YEAR = 6

    # Native ad format ID.
    NATIVE_AD_FORMAT_ID = 255

    # Native ad format name.
    NATIVE_AD_FORMAT_NAME = 254

    # Native style ID.
    NATIVE_STYLE_ID = 253

    # Native style name.
    NATIVE_STYLE_NAME = 252

    # Operating system category.
    OPERATING_SYSTEM_CATEGORY = 117

    # Operating system category name.
    OPERATING_SYSTEM_CATEGORY_NAME = 118

    # ID of the operating system version.
    OPERATING_SYSTEM_VERSION_ID = 238

    # Details of the operating system, including version.
    OPERATING_SYSTEM_VERSION_NAME = 237

    # Order agency.
    ORDER_AGENCY = 150

    # Order agency ID.
    ORDER_AGENCY_ID = 151

    # Order booked CPC.
    ORDER_BOOKED_CPC = 152

    # Order booked CPM.
    ORDER_BOOKED_CPM = 153

    # Order delivery status ENUM value.
    ORDER_DELIVERY_STATUS = 231

    # Order delivery status localized name.
    ORDER_DELIVERY_STATUS_NAME = 239

    # Order end date.
    ORDER_END_DATE = 154

    # Order end date and time.
    ORDER_END_DATE_TIME = 155

    # Order external ID.
    ORDER_EXTERNAL_ID = 156

    # Order id.
    ORDER_ID = 7

    # Order labels.
    ORDER_LABELS = 170

    # Order labels IDs.
    ORDER_LABEL_IDS = 171

    # Order lifetime clicks.
    ORDER_LIFETIME_CLICKS = 158

    # Order lifetime impressions.
    ORDER_LIFETIME_IMPRESSIONS = 159

    # Order name.
    ORDER_NAME = 8

    # Order PO number.
    ORDER_PO_NUMBER = 160

    # Whether the Order is programmatic.
    ORDER_PROGRAMMATIC = 157

    # Order sales person.
    ORDER_SALESPERSON = 161

    # Order secondary sales people.
    ORDER_SECONDARY_SALESPEOPLE = 164

    # Order secondary sales people ID.
    ORDER_SECONDARY_SALESPEOPLE_ID = 165

    # Order secondary traffickers.
    ORDER_SECONDARY_TRAFFICKERS = 166

    # Order secondary traffickers ID.
    ORDER_SECONDARY_TRAFFICKERS_ID = 167

    # Order start date.
    ORDER_START_DATE = 168

    # Order start date and time.
    ORDER_START_DATE_TIME = 169

    # Order trafficker.
    ORDER_TRAFFICKER = 162

    # Order trafficker ID.
    ORDER_TRAFFICKER_ID = 163

    # Whether the Order end time and end date is set to effectively never
    # end.
    ORDER_UNLIMITED_END = 203

    # Placement ID
    PLACEMENT_ID = 113

    # The full list of placement IDs associated with the ad unit.
    PLACEMENT_ID_ALL = 144

    # Placement name
    PLACEMENT_NAME = 114

    # The full list of placement names associated with the ad unit.
    PLACEMENT_NAME_ALL = 145

    # Placement status ENUM value
    PLACEMENT_STATUS = 362

    # The full list of placement status ENUM values associated with the ad
    # unit.
    PLACEMENT_STATUS_ALL = 363

    # Localized placement status name.
    PLACEMENT_STATUS_NAME = 364

    # The full list of localized placement status names associated with the ad
    # unit.
    PLACEMENT_STATUS_NAME_ALL = 365

    # The ID of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_ID = 240

    # The name of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_NAME = 241

    # Programmatic channel.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL = 13

    # Programmatic channel name.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL_NAME = 14

    # The size of a rendered creative, It can differ with the creative's size
    # if a creative is shown in an ad slot of a different size.
    RENDERED_CREATIVE_SIZE = 343

    # Inventory Requested Ad Sizes dimension
    REQUESTED_AD_SIZES = 352

    # Request type ENUM
    REQUEST_TYPE = 146

    # Request type locallized name
    REQUEST_TYPE_NAME = 147

    # Indicates if a request was eligible for server-side unwrapping.
    SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597

    # Information about domain or subdomains.
    SITE = 387

    # The ID of the browser, device or other environment into which a line item
    # or creative was served.
    TARGETING_ID = 232

    # Information about the browser, device and other environments into which
    # a line item or creative was served.
    TARGETING_NAME = 233

    # The way in which advertisers targeted their ads.
    TARGETING_TYPE = 385

    # The localized name of the way in which advertisers targeted their ads.
    TARGETING_TYPE_NAME = 386

    # Inventory Traffic source dimension
    TRAFFIC_SOURCE = 388

    # Inventory Traffic source dimension name
    TRAFFIC_SOURCE_NAME = 389

    # Unified pricing rule ID dimension
    UNIFIED_PRICING_RULE_ID = 393

    # Unified pricing rule name dimension
    UNIFIED_PRICING_RULE_NAME = 394

    # The video placement enum as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT = 172

    # The localized name of the video placement as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT_NAME = 173

    # Breaks down reporting data by week of the year.
    WEEK = 5

    # Name of the company within a yield group
    YIELD_GROUP_BUYER_NAME = 184

    # ID of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_ID = 182

    # Name of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_NAME = 183

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10_000

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10_001

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10_002

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10_003

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10_004

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10_005

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10_006

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10_007

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10_008

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10_009

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10_010

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10_011

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10_012

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10_013

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10_014

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11_000

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11_001

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11_002

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11_003

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11_004

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11_005

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11_006

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11_007

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11_008

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11_009

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11_010

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11_011

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11_012

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11_013

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11_014

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_0_OPTION_ID = 12_000

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_1_OPTION_ID = 12_001

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_2_OPTION_ID = 12_002

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_3_OPTION_ID = 12_003

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_4_OPTION_ID = 12_004

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_5_OPTION_ID = 12_005

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_6_OPTION_ID = 12_006

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_7_OPTION_ID = 12_007

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_8_OPTION_ID = 12_008

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_9_OPTION_ID = 12_009

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_10_OPTION_ID = 12_010

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_11_OPTION_ID = 12_011

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_12_OPTION_ID = 12_012

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_13_OPTION_ID = 12_013

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_14_OPTION_ID = 12_014

    # Custom field value for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 0 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_0_VALUE = 13_000

    # Custom field value for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 1 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_1_VALUE = 13_001

    # Custom field value for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 2 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_2_VALUE = 13_002

    # Custom field value for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 3 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_3_VALUE = 13_003

    # Custom field value for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 4 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_4_VALUE = 13_004

    # Custom field value for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 5 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_5_VALUE = 13_005

    # Custom field value for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 6 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_6_VALUE = 13_006

    # Custom field value for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 7 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_7_VALUE = 13_007

    # Custom field value for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 8 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_8_VALUE = 13_008

    # Custom field value for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 9 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_9_VALUE = 13_009

    # Custom field value for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_10_VALUE = 13_010

    # Custom field value for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_11_VALUE = 13_011

    # Custom field value for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_12_VALUE = 13_012

    # Custom field value for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_13_VALUE = 13_013

    # Custom field value for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_14_VALUE = 13_014

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14_000

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14_001

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14_002

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14_003

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14_004

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14_005

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14_006

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14_007

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14_008

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14_009

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14_010

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14_011

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14_012

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14_013

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14_014

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_0_VALUE = 15_000

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_1_VALUE = 15_001

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_2_VALUE = 15_002

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_3_VALUE = 15_003

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_4_VALUE = 15_004

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_5_VALUE = 15_005

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_6_VALUE = 15_006

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_7_VALUE = 15_007

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_8_VALUE = 15_008

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_9_VALUE = 15_009

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_10_VALUE = 15_010

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_11_VALUE = 15_011

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_12_VALUE = 15_012

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_13_VALUE = 15_013

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_14_VALUE = 15_014

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16_000

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16_001

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16_002

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16_003

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16_004

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16_005

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16_006

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16_007

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16_008

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16_009

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16_010

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16_011

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16_012

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16_013

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16_014

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 0 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17_000

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 1 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17_001

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 2 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17_002

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 3 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17_003

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 4 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17_004

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 5 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17_005

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 6 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17_006

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 7 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17_007

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 8 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17_008

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 9 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17_009

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17_010

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17_011

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17_012

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17_013

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17_014

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18_000

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18_001

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18_002

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18_003

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18_004

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18_005

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18_006

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18_007

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18_008

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18_009

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18_010

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18_011

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18_012

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18_013

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18_014

    # Custom field value for Backfill order with custom field ID equal to the
    # ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19_000

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19_001

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19_002

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19_003

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19_004

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19_005

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19_006

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19_007

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19_008

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19_009

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19_010

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19_011

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19_012

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19_013

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19_014

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20_000

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20_001

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20_002

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20_003

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20_004

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20_005

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20_006

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20_007

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20_008

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20_009

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20_010

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20_011

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20_012

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20_013

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20_014

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21_000

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 1 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21_001

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 2 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21_002

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 3 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21_003

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 4 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21_004

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 5 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21_005

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 6 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21_006

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 7 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21_007

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 8 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21_008

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 9 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21_009

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21_010

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21_011

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21_012

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21_013

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21_014

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE_ID = 100_000

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE_ID = 100_001

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE_ID = 100_002

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE_ID = 100_003

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE_ID = 100_004

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE_ID = 100_005

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE_ID = 100_006

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE_ID = 100_007

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE_ID = 100_008

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE_ID = 100_009

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE = 101_000

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE = 101_001

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE = 101_002

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE = 101_003

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE = 101_004

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE = 101_005

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE = 101_006

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 7 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE = 101_007

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE = 101_008

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE = 101_009
  end

  # Reporting metrics.
  module Metric
    # Default value. This value is unused.
    METRIC_UNSPECIFIED = 0

    # Active View total average time in seconds that specific impressions are
    # reported as being viewable.
    ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 61

    # Total number of impressions that were eligible to measure viewability.
    ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 58

    # The total number of impressions that were sampled and measured by active
    # view.
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 57

    # The percentage of total impressions that were measurable by active view
    # (out of all the total impressions sampled for active view).
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 60

    # The total number of impressions viewed on the user's screen.
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 56

    # The percentage of total impressions viewed on the user's screen (out of
    # the total impressions measurable by active view).
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 59

    # Active View AdSense average time in seconds that specific impressions are
    # reported as being viewable.
    ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 73

    # Total number of impressions delivered by AdSense that were eligible to
    # measure viewability.
    ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 70

    # The number of impressions delivered by AdSense that were sampled, and
    # measurable by active view.
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 69

    # The percentage of impressions delivered by AdSense that were measurable
    # by active view (out of all AdSense impressions sampled for active view).
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 72

    # The number of impressions delivered by AdSense viewed on the user's
    # screen.
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 68

    # The percentage of impressions delivered by AdSense viewed on the user's
    # screen (out of AdSense impressions measurable by active view).
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 71

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by AdSense through line item dynamic allocation.
    ADSENSE_AVERAGE_ECPM = 26

    # Number of clicks delivered by AdSense demand channel.
    ADSENSE_CLICKS = 23

    # The ratio of impressions served by AdSense that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. The
    # AdSense CTR is calculated as: (AdSense clicks / AdSense impressions).
    ADSENSE_CTR = 24

    # Total impressions delivered by AdSense.
    ADSENSE_IMPRESSIONS = 22

    # Ratio of clicks delivered by AdSense through line item dynamic allocation
    # in relation to the total clicks delivered.
    ADSENSE_PERCENT_CLICKS = 28

    # Ratio of impressions delivered by AdSense through line item dynamic
    # allocation in relation to the total impressions delivered.
    ADSENSE_PERCENT_IMPRESSIONS = 27

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue.
    ADSENSE_PERCENT_REVENUE = 29

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    ADSENSE_PERCENT_REVENUE_WITHOUT_CPD = 30

    # The total number of times that an AdSense ad is delivered.
    ADSENSE_RESPONSES_SERVED = 41

    # Revenue generated from AdSense through line item dynamic allocation,
    # calculated in the network's currency and time zone.
    ADSENSE_REVENUE = 25

    # Active View AdExchange average time in seconds that specific impressions
    # are reported as being viewable.
    AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 79

    # Total number of impressions delivered by Ad Exchange that were eligible
    # to measure viewability.
    AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 76

    # The number of impressions delivered by Ad Exchange that were sampled, and
    # measurable by active view.
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 75

    # The percentage of impressions delivered by Ad Exchange that were
    # measurable by active view (out of all Ad Exchange impressions sampled for
    # active view).
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 78

    # The number of impressions delivered by Ad Exchange viewed on the user's
    # screen.
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 74

    # The percentage of impressions delivered by Ad Exchange viewed on the
    # user's screen (out of Ad Exchange impressions measurable by active view).
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 77

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by Ad Exchange through line item dynamic allocation.
    AD_EXCHANGE_AVERAGE_ECPM = 18

    # Number of clicks delivered by the Ad Exchange.
    AD_EXCHANGE_CLICKS = 15

    # The ratio of impressions served by the Ad Exchange that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. Ad
    # Exchange CTR is calculated as: (Ad Exchange clicks / Ad Exchange
    # impressions).
    AD_EXCHANGE_CTR = 16

    # Total impressions delivered by the Ad Exchange.
    AD_EXCHANGE_IMPRESSIONS = 14

    # Ratio of clicks delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total clicks delivered.
    AD_EXCHANGE_PERCENT_CLICKS = 20

    # Ratio of impressions delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total impressions delivered.
    AD_EXCHANGE_PERCENT_IMPRESSIONS = 19

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue.
    AD_EXCHANGE_PERCENT_REVENUE = 21

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD = 31

    # The total number of times that an Ad Exchange ad is delivered.
    AD_EXCHANGE_RESPONSES_SERVED = 42

    # Revenue generated from the Ad Exchange through line item dynamic
    # allocation, calculated in your network's currency and time zone.
    AD_EXCHANGE_REVENUE = 17

    # The total number of times that an ad request is sent to the ad server
    # including dynamic allocation.
    AD_REQUESTS = 38

    # Active View ad server average time in seconds that specific impressions
    # are reported as being viewable.
    AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 67

    # Total number of impressions delivered by the ad server that were eligible
    # to measure viewability.
    AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 64

    # The number of impressions delivered by the ad server that were sampled,
    # and measurable by active view.
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 63

    # The percentage of impressions delivered by the ad server that were
    # measurable by active view (out of all the ad server impressions sampled
    # for active view).
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 66

    # The number of impressions delivered by the ad server viewed on the user's
    # screen.
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 62

    # The percentage of impressions delivered by the ad server viewed on the
    # user's screen (out of the ad server impressions measurable by active
    # view).
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 65

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server.
    AD_SERVER_AVERAGE_ECPM = 34

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server, excluding CPD value.
    AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD = 10

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown.
    AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS = 262

    # Total clicks served by the Google Ad Manager server. It usually takes
    # about 30 minutes for new clicks to be recorded and added to the total
    # displayed in reporting.
    AD_SERVER_CLICKS = 7

    # CPD revenue earned, calculated in your network's currency, for
    # the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_CPD_REVENUE = 32

    # Ratio of impressions served by the Google Ad Manager server that resulted
    # in users clicking on an ad. The clickthrough rate (CTR) is updated
    # nightly. The ad server CTR is calculated as: (Ad server clicks / Ad
    # server impressions).
    AD_SERVER_CTR = 8

    # Total impressions delivered by the Ad Server.
    AD_SERVER_IMPRESSIONS = 6

    # Ratio of clicks delivered by the Google Ad Manager server in relation to
    # the total clicks delivered.
    AD_SERVER_PERCENT_CLICKS = 12

    # Ratio of impressions delivered by the Google Ad Manager server in
    # relation to the total impressions delivered.
    AD_SERVER_PERCENT_IMPRESSIONS = 11

    # Ratio of revenue generated by the Google Ad Manager server in relation
    # to the total revenue.
    AD_SERVER_PERCENT_REVENUE = 35

    # Ratio of revenue generated by the Google Ad Manager server (excluding
    # CPD) in relation to the total revenue.
    AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13

    # The total number of times that an ad is served by the ad server.
    AD_SERVER_RESPONSES_SERVED = 40

    # All CPM, CPC, and CPD revenue earned, calculated in your network's
    # currency, for the ads delivered by the Google Ad Manager server.
    # Sum of all booked revenue.
    AD_SERVER_REVENUE = 33

    # Revenue (excluding CPD) earned, calculated in your network's currency,
    # for the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_REVENUE_WITHOUT_CPD = 9

    # The number of tracked ads delivered by the ad server.
    AD_SERVER_TRACKED_ADS = 264

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown, before invalid traffic filtrations by
    # Ad Server.
    AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261

    # Total clicks delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_CLICKS = 259

    # Total impressions delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_IMPRESSIONS = 260

    # The number of tracked ads delivered by the ad server before invalid
    # traffic filtrations.
    AD_SERVER_UNFILTERED_TRACKED_ADS = 263

    # eCPM averaged across the Google Ad Manager server, AdSense,
    # and Ad Exchange.
    AVERAGE_ECPM = 37

    # eCPM averaged across the Google Ad Manager server (excluding CPD),
    # AdSense, and Ad Exchange.
    AVERAGE_ECPM_WITHOUT_CPD = 5

    # The number of times a user clicked on an ad.
    CLICKS = 2

    # The total number of times that the code for an ad is served by the ad
    # server including dynamic allocation.
    CODE_SERVED_COUNT = 44

    # For standard ads, your ad clickthrough rate (CTR) is the number of ad
    # clicks divided by the number of individual ad impressions expressed as a
    # fraction. Ad CTR = Clicks / Ad impressions.
    CTR = 3

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129

    # The number of auction impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131

    # The number of impressions sold by Google in partner sales.
    GOOGLE_SOLD_IMPRESSIONS = 130

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127

    # The number of reservation impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126

    # Total impressions from the Google Ad Manager server, AdSense,
    # Ad Exchange, and yield group partners.
    IMPRESSIONS = 1

    # The number of filled pod requests (filled by partner or Google) in
    # partner sales.
    PARTNER_SALES_FILLED_POD_REQUESTS = 135

    # The percent of filled requests to total ad requests in
    # partner sales.
    PARTNER_SALES_FILL_RATE = 136

    # The percent of partner filled requests to total ad requests
    # in partner sales.
    PARTNER_SALES_PARTNER_MATCH_RATE = 137

    # The number of queries eligible for partner sales.
    PARTNER_SALES_QUERIES = 132

    # The number of partner unfilled impressions in partner sales.
    # If a pod request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNFILLED_IMPRESSIONS = 133

    # The number of partner unmatched queries in partner sales.
    # If an ad request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNMATCHED_QUERIES = 134

    # The number of code served sold by partner in partner sales.
    PARTNER_SOLD_CODE_SERVED = 125

    # The number of coviewed impressions sold by partner in partner sales.
    PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124

    # The number of impressions sold by partner in partner sales.
    PARTNER_SOLD_IMPRESSIONS = 123

    # The total number of ad requests eligible for programmatic inventory,
    # including Programmatic Guaranteed, Preferred Deals, backfill, and open
    # auction.
    PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177

    # The number of programmatic responses served divided by the number of
    # programmatic eligible ad requests. Includes Ad Exchange, Open Bidding,
    # and Preferred Deals.
    PROGRAMMATIC_MATCH_RATE = 178

    # Total number of ad responses served from programmatic demand sources.
    # Includes Ad Exchange, Open Bidding, and Preferred Deals.
    #
    # Differs from AD_EXCHANGE_RESPONSES_SERVED, which doesn't include Open
    # Bidding ad requests.
    PROGRAMMATIC_RESPONSES_SERVED = 176

    # The total number of times that an ad is served by the ad server including
    # dynamic allocation.
    RESPONSES_SERVED = 39

    # Total amount of CPM, CPC, and CPD revenue based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE = 36

    # Total amount of revenue (excluding CPD) based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE_WITHOUT_CPD = 4

    # The average latency in milliseconds across all server-side unwrapping
    # callout requests. There is no special handling for error or timeout
    # responses. This reflects the entire chain of a parent callout request,
    # which may result in multiple child callouts. This metric is not sliced by
    # child callout dimensions.
    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434

    # The total number of server-side unwrapping callout requests.
    SERVER_SIDE_UNWRAPPING_CALLOUTS = 435

    # The total number of server-side unwrapping callouts that returned an
    # empty response. Timeouts are not considered empty responses.
    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436

    # The total number of server-side unwrapping callouts that returned an
    # error response. Timeouts and empty responses are not considered errors.
    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437

    # The total number of successfully unwrapped, non-empty server-side
    # wrapping callouts. Successful unwrapping does not indicate that the
    # resulting creative was served.
    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438

    # The total number of server-side unwrapping callouts that timed out before
    # returning a response.
    SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439

    # The total number of missed impressions due to the ad servers' inability
    # to find ads to serve including dynamic allocation.
    UNFILLED_IMPRESSIONS = 45

    # The total number of times that an ad is not returned by the ad server.
    UNMATCHED_AD_REQUESTS = 43

    # Number of times an Offerwall message was shown to users.
    USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121

    # The number of messages where the user gained an entitlement.
    USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122

    # The number of user interactions with a video, on average, such as pause,
    # full screen, mute, etc.
    VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92

    # The number of times a user collapses a video, either to its original size
    # or to a different size.
    VIDEO_INTERACTION_COLLAPSES = 93

    # The number of times a user expands a video.
    VIDEO_INTERACTION_EXPANDS = 95

    # The number of times ad clip played in full screen mode.
    VIDEO_INTERACTION_FULL_SCREENS = 96

    # The number of times video player was in mute state during play of ad
    # clip.
    VIDEO_INTERACTION_MUTES = 97

    # The number of times user paused ad clip.
    VIDEO_INTERACTION_PAUSES = 98

    # The number of times the user unpaused the video.
    VIDEO_INTERACTION_RESUMES = 99

    # The number of times a user rewinds the video.
    VIDEO_INTERACTION_REWINDS = 100

    # The number of times a user unmutes the video.
    VIDEO_INTERACTION_UNMUTES = 101

    # The number of times a skippable video is skipped.
    VIDEO_INTERACTION_VIDEO_SKIPS = 102

    # The number of total creative serves in video realtime reporting.
    VIDEO_REAL_TIME_CREATIVE_SERVES = 139

    # The number of errors of type 100 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_100_COUNT = 143

    # The number of errors of type 101 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_101_COUNT = 144

    # The number of errors of type 102 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_102_COUNT = 145

    # The number of errors of type 200 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_200_COUNT = 146

    # The number of errors of type 201 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_201_COUNT = 147

    # The number of errors of type 202 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_202_COUNT = 148

    # The number of errors of type 203 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_203_COUNT = 149

    # The number of errors of type 300 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_300_COUNT = 150

    # The number of errors of type 301 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_301_COUNT = 151

    # The number of errors of type 302 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_302_COUNT = 152

    # The number of errors of type 303 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_303_COUNT = 153

    # The number of errors of type 400 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_400_COUNT = 154

    # The number of errors of type 401 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_401_COUNT = 155

    # The number of errors of type 402 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_402_COUNT = 156

    # The number of errors of type 403 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_403_COUNT = 157

    # The number of errors of type 405 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_405_COUNT = 158

    # The number of errors of type 406 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_406_COUNT = 159

    # The number of errors of type 407 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_407_COUNT = 160

    # The number of errors of type 408 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_408_COUNT = 161

    # The number of errors of type 409 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_409_COUNT = 162

    # The number of errors of type 410 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_410_COUNT = 163

    # The number of errors of type 500 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_500_COUNT = 164

    # The number of errors of type 501 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_501_COUNT = 165

    # The number of errors of type 502 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_502_COUNT = 166

    # The number of errors of type 503 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_503_COUNT = 167

    # The number of errors of type 600 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_600_COUNT = 168

    # The number of errors of type 601 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_601_COUNT = 169

    # The number of errors of type 602 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_602_COUNT = 170

    # The number of errors of type 603 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_603_COUNT = 171

    # The number of errors of type 604 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_604_COUNT = 172

    # The number of errors of type 900 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_900_COUNT = 173

    # The number of errors of type 901 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_901_COUNT = 174

    # The number of total impressions in video realtime reporting.
    VIDEO_REAL_TIME_IMPRESSIONS = 138

    # The number of matched queries in video realtime reporting.
    VIDEO_REAL_TIME_MATCHED_QUERIES = 140

    # The number of all errors in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175

    # The number of total queries in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_QUERIES = 142

    # The number of unmatched queries in video realtime reporting.
    VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141

    # Number of times that the publisher specified a video ad played
    # automatically.
    VIDEO_VIEWERSHIP_AUTO_PLAYS = 103

    # Average percentage of the video watched by users.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104

    # Average time(seconds) users watched the video.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105

    # Number of times that the publisher specified a video ad was clicked to
    # play.
    VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106

    # The number of times the video played to completion.
    VIDEO_VIEWERSHIP_COMPLETES = 107

    # Percentage of times the video played to the end.
    VIDEO_VIEWERSHIP_COMPLETION_RATE = 108

    # The number of engaged views: ad is viewed to completion or for 30s,
    # whichever comes first.
    VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109

    # The number of times the video played to 25% of its length.
    VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110

    # The number of times the video reached its midpoint during play.
    VIDEO_VIEWERSHIP_MIDPOINTS = 111

    # The number of times a skip button is shown in video.
    VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112

    # The number of impressions where the video was played.
    VIDEO_VIEWERSHIP_STARTS = 113

    # The number of times the video played to 75% of its length.
    VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114

    # The number of times an error occurred, such as a VAST redirect error, a
    # video playback error, or an invalid response error.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115

    # The percentage of video error count.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94

    # Duration of the video creative.
    VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116

    # View-through rate represented as a percentage.
    VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117

    # Number of winning bids received from Open Bidding buyers, even when the
    # winning bid is placed at the end of a mediation for mobile apps chain.
    YIELD_GROUP_AUCTIONS_WON = 80

    # Number of bids received from Open Bidding buyers, regardless of whether
    # the returned bid competes in an auction.
    YIELD_GROUP_BIDS = 81

    # Number of bids received from Open Bidding buyers that competed in
    # the auction.
    YIELD_GROUP_BIDS_IN_AUCTION = 82

    # Number of times a yield partner is asked to return bid to fill
    # a yield group request.
    YIELD_GROUP_CALLOUTS = 83

    # The estimated net rate for yield groups or individual
    # yield group partners.
    YIELD_GROUP_ESTIMATED_CPM = 88

    # Total net revenue earned by a yield group, based upon the yield group
    # estimated CPM and yield group impressions recorded.
    YIELD_GROUP_ESTIMATED_REVENUE = 87

    # Number of matched yield group requests where a yield partner delivered
    # their ad to publisher inventory.
    YIELD_GROUP_IMPRESSIONS = 85

    # Yield group Mediation fill rate indicating how often a network
    # fills an ad request.
    YIELD_GROUP_MEDIATION_FILL_RATE = 89

    # Total requests where a Mediation chain was served.
    YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86

    # The number of mediation chain passback across all channels.
    YIELD_GROUP_MEDIATION_PASSBACKS = 118

    # Revenue per thousand impressions based on data collected by Ad Manager
    # from third-party ad network reports.
    YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90

    # Number of times a yield group buyer successfully returned a bid in
    # response to a yield group callout.
    YIELD_GROUP_SUCCESSFUL_RESPONSES = 84
  end

  # Possible metric value types to add.
  module MetricValueType
    # The values for the primary date_range.
    PRIMARY = 0

    # Each metrics' percent of the total for the primary date_range.
    PRIMARY_PERCENT_OF_TOTAL = 1

    # The values for the comparison_date_range.
    COMPARISON = 2

    # Each metrics' percent of the total for the comparison_date_range.
    COMPARISON_PERCENT_OF_TOTAL = 3

    # The absolute change between the primary and comparison date ranges.
    ABSOLUTE_CHANGE = 4

    # The relative change between the primary and comparison date ranges.
    RELATIVE_CHANGE = 5
  end

  # Supported report types.
  module ReportType
    # Default value. This value is unused.
    REPORT_TYPE_UNSPECIFIED = 0

    # Historical.
    HISTORICAL = 1
  end

  # The visibility of a report.
  module Visibility
    # Default value. Reports with hidden visibility will not appear in the Ad
    # Manager UI.
    HIDDEN = 0

    # Reports with draft visibility will appear in the Ad Manager UI only if
    # the user has configured the UI to show them.
    DRAFT = 1

    # Reports with saved visibility will appear in the Ad Manager UI by
    # default.
    SAVED = 2
  end

  # The source to determine the time zone for the report.
  module TimeZoneSource
    # Unspecified default value.
    TIME_ZONE_SOURCE_UNSPECIFIED = 0

    # Use the publisher's time zone in network settings.
    PUBLISHER = 1

    # Use the time zone of the ad exchange.
    # Only compatible with Ad Exchange dimensions and metrics.
    AD_EXCHANGE = 2

    # Use UTC time zone.
    # Only compatible with Revenue Verification reports.
    UTC = 3

    # Use the time zone provided in the ReportDefinition.time_zone field.
    # Has limited dimension and metric compatibility compared with PUBLISHER,
    # and reports may take longer to run since the dates are dynamically
    # calculated at request time.
    PROVIDED = 4
  end
end

#report_definition::Google::Ads::AdManager::V1::ReportDefinition

Returns Required. The report definition of the report.

Returns:



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
# File 'proto_docs/google/ads/admanager/v1/report_messages.rb', line 55

class Report
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a single value in a report.
  # @!attribute [rw] int_value
  #   @return [::Integer]
  #     For integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] double_value
  #   @return [::Float]
  #     For double values.
  #
  #     Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_value
  #   @return [::String]
  #     For string values.
  #
  #     Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bool_value
  #   @return [::Boolean]
  #     For boolean values.
  #
  #     Note: The following fields are mutually exclusive: `bool_value`, `int_value`, `double_value`, `string_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] int_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::IntList]
  #     For lists of integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::StringList]
  #     For lists of string values.
  #
  #     Note: The following fields are mutually exclusive: `string_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bytes_value
  #   @return [::String]
  #     For bytes values.
  #
  #     Note: The following fields are mutually exclusive: `bytes_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Value
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A list of integer values.
    # @!attribute [rw] values
    #   @return [::Array<::Integer>]
    #     The values
    class IntList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of string values.
    # @!attribute [rw] values
    #   @return [::Array<::String>]
    #     The values
    class StringList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Represents a sorting in a report.
  # @!attribute [rw] field
  #   @return [::Google::Ads::AdManager::V1::Report::Field]
  #     Required. A field (dimension or metric) to sort by.
  # @!attribute [rw] descending
  #   @return [::Boolean]
  #     Optional. The sort order. If true the sort will be descending.
  # @!attribute [rw] slice
  #   @return [::Google::Ads::AdManager::V1::Report::Slice]
  #     Optional. Use to sort on a specific slice of data.
  # @!attribute [rw] time_period_index
  #   @return [::Integer]
  #     Optional. When using time period columns, use this to sort on a specific
  #     column.
  # @!attribute [rw] metric_value_type
  #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
  #     Optional. Use to specify which metric value type to sort on. Defaults to
  #     PRIMARY.
  class Sort
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A table containing report data including dimension and metric values.
  class DataTable
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A row of report data.
    # @!attribute [rw] dimension_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     The order of the dimension values is the same as the order of the
    #     dimensions specified in the request.
    # @!attribute [rw] metric_value_groups
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::DataTable::MetricValueGroup>]
    #     The length of the metric_value_groups
    #     field will be equal to the length of the date_ranges field in the
    #     fetch response. The metric_value_groups field is
    #     ordered such that each index corresponds to the date_range at the same
    #     index. For example, given date_ranges [x, y], metric_value_groups will
    #     have a length of two. The first entry in metric_value_groups represents
    #     the metrics for date x and the second entry in metric_value_groups
    #     represents the metrics for date y.
    class Row
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Contains all metric values requested for a single date range and set of
    # column dimension values (returned in the columns field of the response).
    # The order of the metrics in each field corresponds to the order of the
    # metrics specified in the request.
    # @!attribute [rw] primary_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY MetricValueType.
    # @!attribute [rw] primary_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] comparison_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON MetricValueType.
    # @!attribute [rw] comparison_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] absolute_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the ABSOLUTE_CHANGE MetricValueType.
    # @!attribute [rw] relative_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the RELATIVE_CHANGE MetricValueType.
    # @!attribute [rw] flag_values
    #   @return [::Array<::Boolean>]
    #     If true, the flag's conditions are met. If false, the flag's
    #     conditions are not met. flag_values has the same length as
    #     flags and index i of flag_values represents the flag at index i
    #     of flags.
    class MetricValueGroup
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # A dimension or a metric in a report.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     The dimension this field represents.
  #
  #     Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] metric
  #   @return [::Google::Ads::AdManager::V1::Report::Metric]
  #     The metric this field represents.
  #
  #     Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Field
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Use to specify a slice of data.
  #
  # For example, in a report, to focus on just data from the US, specify
  # `COUNTRY_NAME` for dimension and value: `"United States"`.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     Required. The dimension to slice on.
  # @!attribute [rw] value
  #   @return [::Google::Ads::AdManager::V1::Report::Value]
  #     Required. The value of the dimension.
  class Slice
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A filter over one or more fields.
  # @!attribute [rw] field_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FieldFilter]
  #     A filter on a single field.
  #
  #     Note: The following fields are mutually exclusive: `field_filter`, `not_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] not_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter]
  #     A filter whose result is negated.
  #
  #     Note: The following fields are mutually exclusive: `not_filter`, `field_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] and_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are AND-ed.
  #
  #     Note: The following fields are mutually exclusive: `and_filter`, `field_filter`, `not_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] or_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are OR-ed.
  #
  #     Note: The following fields are mutually exclusive: `or_filter`, `field_filter`, `not_filter`, `and_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Filter
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A filter on a specific field.
    # @!attribute [rw] field
    #   @return [::Google::Ads::AdManager::V1::Report::Field]
    #     Required. The field to filter on.
    # @!attribute [rw] operation
    #   @return [::Google::Ads::AdManager::V1::Report::Filter::Operation]
    #     Required. The operation of this filter.
    # @!attribute [rw] values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Required. Values to filter to.
    # @!attribute [rw] slice
    #   @return [::Google::Ads::AdManager::V1::Report::Slice]
    #     Optional. Use to filter on a specific slice of data.
    # @!attribute [rw] time_period_index
    #   @return [::Integer]
    #     Optional. When using time period columns, use this to filter on a
    #     specific column.
    # @!attribute [rw] metric_value_type
    #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
    #     Optional. Use to specify which metric value type to filter on. Defaults
    #     to PRIMARY.
    class FieldFilter
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of filters.
    # @!attribute [rw] filters
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
    #     Required. A list of filters.
    class FilterList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Supported filter operations.
    module Operation
      # For scalar operands, checks if the operand is in the set of provided
      # filter values.
      #
      # For list operands, checks if any element in the operand is in the set
      # of provided filter values.
      #
      # Default value.
      IN = 0

      # For scalar operands, checks that the operand is not in the set of
      # provided filter values.
      #
      # For list operands, checks that none of the elements in the operand
      # is in the set of provided filter values.
      NOT_IN = 1

      # For scalar string operands, checks if the operand contains any of the
      # provided filter substrings.
      #
      # For string list operands, checks if any string in the operand contains
      # any of the provided filter substrings.
      CONTAINS = 2

      # For scalar string operands, checks that the operand contains none of
      # the provided filter substrings.
      #
      # For string list operands, checks that none of the strings in the
      # operand contain none of the provided filter substrings.
      NOT_CONTAINS = 3

      # Operand is less than the provided filter value.
      LESS_THAN = 4

      # Operand is less than or equal to provided filter value.
      LESS_THAN_EQUALS = 5

      # Operand is greater than provided filter value.
      GREATER_THAN = 6

      # Operand is greater than or equal to provided filter value.
      GREATER_THAN_EQUALS = 7

      # Operand is between provided filter values.
      BETWEEN = 8

      # Operand matches against a regex or set of regexes (one must match)
      MATCHES = 9

      # Operand negative matches against a regex or set of regexes (none must
      # match)
      NOT_MATCHES = 10
    end
  end

  # A flag for a report. Flags are used show if certain thresholds are met.
  # Result rows that match the filter will have the corresponding
  # [MetricValueGroup.flagValues][MetricValueGroup] index set to true.
  # For more information about flags see:
  # https://support.google.com/admanager/answer/15079975
  # @!attribute [rw] filters
  #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
  #     Required. Filters to apply for the flag.
  # @!attribute [rw] name
  #   @return [::String]
  #     Optional. Name of the flag.
  #     The flag names RED, YELLOW, GREEN, BLUE, PURPLE, and GREY correspond to
  #     the colored flags that appear in the UI. The UI will not display flags
  #     with other names, but they are available for use by API clients.
  class Flag
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A date range for a report.
  # @!attribute [rw] fixed
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::FixedDateRange]
  #     A fixed date range.
  #
  #     Note: The following fields are mutually exclusive: `fixed`, `relative`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] relative
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::RelativeDateRange]
  #     A relative date range.
  #
  #     Note: The following fields are mutually exclusive: `relative`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class DateRange
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A date range between two fixed dates (inclusive of end date).
    # @!attribute [rw] start_date
    #   @return [::Google::Type::Date]
    #     Required. The start date of this date range.
    # @!attribute [rw] end_date
    #   @return [::Google::Type::Date]
    #     Required. The end date (inclusive) of this date range.
    class FixedDateRange
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Options for relative date ranges.
    module RelativeDateRange
      # Default value. This value is unused.
      RELATIVE_DATE_RANGE_UNSPECIFIED = 0

      # The date the report is run.
      TODAY = 1

      # The date a day before the date that the report is run.
      YESTERDAY = 2

      # The full week in which this report is run. Could include dates in
      # the future.
      THIS_WEEK = 3

      # From the beginning of the calendar week (Monday to Sunday) in which the
      # up to and including the day the report is run.
      THIS_WEEK_TO_DATE = 29

      # The full month in which this report is run. Could include dates in
      # the future.
      THIS_MONTH = 4

      # From the beginning of the calendar month in which the report is run, to
      # up to and including the day the report is run.
      THIS_MONTH_TO_DATE = 26

      # The full quarter in which this report is run. Could include dates
      # in the future.
      THIS_QUARTER = 5

      # From the beginning of the calendar quarter in which the report is run,
      # up to and including the day the report is run.
      THIS_QUARTER_TO_DATE = 27

      # The full year in which this report is run. Could include dates in
      # the future.
      THIS_YEAR = 6

      # From the beginning of the calendar year in which the report is run, to
      # up to and including the day the report is run.
      THIS_YEAR_TO_DATE = 28

      # The entire previous calendar week, Monday to Sunday (inclusive),
      # preceding the calendar week the report is run.
      LAST_WEEK = 7

      # The entire previous calendar month preceding the calendar month the
      # report is run.
      LAST_MONTH = 8

      # The entire previous calendar quarter preceding the calendar quarter the
      # report is run.
      LAST_QUARTER = 9

      # The entire previous calendar year preceding the calendar year the
      # report is run.
      LAST_YEAR = 10

      # The 7 days preceding the day the report is run.
      LAST_7_DAYS = 11

      # The 30 days preceding the day the report is run.
      LAST_30_DAYS = 12

      # The 60 days preceding the day the report is run.
      LAST_60_DAYS = 13

      # The 90 days preceding the day the report is run.
      LAST_90_DAYS = 14

      # The 180 days preceding the day the report is run.
      LAST_180_DAYS = 15

      # The 360 days preceding the day the report is run.
      LAST_360_DAYS = 16

      # The 365 days preceding the day the report is run.
      LAST_365_DAYS = 17

      # The entire previous 3 calendar months preceding the calendar month the
      # report is run.
      LAST_3_MONTHS = 18

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_6_MONTHS = 19

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_12_MONTHS = 20

      # From 3 years before the report is run, to the day before the report is
      # run, inclusive.
      ALL_AVAILABLE = 21

      # Only valid when used in the comparison_date_range field. The complete
      # period preceding the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange of N days, this will
      # be a period of N days where the end date is the date preceding the
      # start date of the date_range.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame preceding the date_range. In the case
      # where the date_range does not capture the full period because a report
      # is run in the middle of that period, this will still be the full
      # preceding period. For example, if date_range is THIS_WEEK, but the
      # report is run on a Wednesday, THIS_WEEK will be Monday - Wednesday, but
      # PREVIOUS_PERIOD will be Monday - Sunday.
      PREVIOUS_PERIOD = 22

      # Only valid when used in the comparison_date_range field. The period
      # starting 1 year prior to the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange, this will be a date
      # range starting 1 year prior to the date_range start date and ending 1
      # year prior to the date_range end date.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame exactly 1 year prior to the date_range.
      # In the case where the date_range does not capture the full period
      # because a report is run in the middle of that period, this will still
      # be the full period 1 year prior. For example, if date range is
      # THIS_WEEK, but the report is run on a Wednesday, THIS_WEEK will be
      # Monday - Wednesday, but SAME_PERIOD_PREVIOUS_YEAR will be Monday -
      # Sunday.
      SAME_PERIOD_PREVIOUS_YEAR = 24
    end
  end

  # Valid time period columns.
  module TimePeriodColumn
    # Default value. Report will have no time period column.
    TIME_PERIOD_COLUMN_UNSPECIFIED = 0

    # A column for each date in the report.
    TIME_PERIOD_COLUMN_DATE = 1

    # A column for each week in the report.
    TIME_PERIOD_COLUMN_WEEK = 2

    # A column for each month in the report.
    TIME_PERIOD_COLUMN_MONTH = 3

    # A column for each quarter in the report.
    TIME_PERIOD_COLUMN_QUARTER = 4
  end

  # Reporting dimensions.
  module Dimension
    # Default value. This value is unused.
    DIMENSION_UNSPECIFIED = 0

    # The domain name of the advertiser.
    ADVERTISER_DOMAIN_NAME = 242

    # The ID used in an external system for advertiser identification
    ADVERTISER_EXTERNAL_ID = 228

    # The ID of an advertiser company assigned to an order
    ADVERTISER_ID = 131

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABELS = 230

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABEL_IDS = 229

    # The name of an advertiser company assigned to an order
    ADVERTISER_NAME = 132

    # The name of the contact associated with an advertiser company
    ADVERTISER_PRIMARY_CONTACT = 227

    # Shows an ENUM value describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION = 390

    # Shows a localized string describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION_NAME = 391

    # The code of the ad unit where the ad was requested.
    AD_UNIT_CODE = 64

    # The code of the first level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_1 = 65

    # The code of the tenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_10 = 74

    # The code of the eleventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_11 = 75

    # The code of the twelfth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_12 = 76

    # The code of the thirteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_13 = 77

    # The code of the fourteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_14 = 78

    # The code of the fifteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_15 = 79

    # The code of the sixteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_16 = 80

    # The code of the second level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_2 = 66

    # The code of the third level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_3 = 67

    # The code of the fourth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_4 = 68

    # The code of the fifth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_5 = 69

    # The code of the sixth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_6 = 70

    # The code of the seventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_7 = 71

    # The code of the eighth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_8 = 72

    # The code of the ninth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_9 = 73

    # The depth of the ad unit's hierarchy
    AD_UNIT_DEPTH = 101

    # The ID of the ad unit where the ad was requested.
    AD_UNIT_ID = 25

    # The full hierarchy of ad unit IDs where the ad was requested, from
    # root to leaf, excluding the root ad unit ID.
    AD_UNIT_ID_ALL_LEVEL = 27

    # The first level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_1 = 30

    # The tenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_10 = 48

    # The eleventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_11 = 50

    # The twelfth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_12 = 52

    # The thirteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_13 = 54

    # The fourteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_14 = 56

    # The fifteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_15 = 58

    # The sixteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_16 = 60

    # The second level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_2 = 32

    # The third level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_3 = 34

    # The fourth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_4 = 36

    # The fifth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_5 = 38

    # The sixth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_6 = 40

    # The seventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_7 = 42

    # The eighth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_8 = 44

    # The ninth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_9 = 46

    # The top-level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_TOP_LEVEL = 142

    # The name of the ad unit where the ad was requested.
    AD_UNIT_NAME = 26

    # The full hierarchy of ad unit names where the ad was requested, from
    # root to leaf, excluding the root ad unit name.
    AD_UNIT_NAME_ALL_LEVEL = 29

    # The first level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_1 = 31

    # The tenth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_10 = 49

    # The eleventh level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_11 = 51

    # The twelfth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_12 = 53

    # The thirteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_13 = 55

    # The fourteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_14 = 57

    # The fifteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_15 = 59

    # The sixteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_16 = 61

    # The second level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_2 = 33

    # The third level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_3 = 35

    # The fourth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_4 = 37

    # The fifth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_5 = 39

    # The sixth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_6 = 41

    # The seventh level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_7 = 43

    # The eighth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_8 = 45

    # The ninth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_9 = 47

    # The top-level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_TOP_LEVEL = 143

    # The reward amount of the ad unit where the ad was requested.
    AD_UNIT_REWARD_AMOUNT = 63

    # The reward type of the ad unit where the ad was requested.
    AD_UNIT_REWARD_TYPE = 62

    # The status of the ad unit
    AD_UNIT_STATUS = 206

    # The name of the status of the ad unit
    AD_UNIT_STATUS_NAME = 207

    # The app version.
    APP_VERSION = 392

    # The ID used in an external system for advertiser identification
    BACKFILL_ADVERTISER_EXTERNAL_ID = 349

    # The ID of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_ID = 346

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABELS = 351

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABEL_IDS = 350

    # The name of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_NAME = 347

    # The name of the contact associated with an advertiser company
    BACKFILL_ADVERTISER_PRIMARY_CONTACT = 348

    # Enum value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE = 378

    # Localized string value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE_NAME = 379

    # Represents the click-through URL of a Backfill creative
    BACKFILL_CREATIVE_CLICK_THROUGH_URL = 376

    # The ID of a Backfill creative
    BACKFILL_CREATIVE_ID = 370

    # Backfill creative name
    BACKFILL_CREATIVE_NAME = 371

    # Third party vendor name of a Backfill creative
    BACKFILL_CREATIVE_THIRD_PARTY_VENDOR = 377

    # Enum value of Backfill creative type
    BACKFILL_CREATIVE_TYPE = 374

    # Localized string name of Backfill creative type
    BACKFILL_CREATIVE_TYPE_NAME = 375

    # Whether a Backfill line item is archived.
    BACKFILL_LINE_ITEM_ARCHIVED = 278

    # Backfill line item comanion delivery option ENUM value.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION = 258

    # Localized Backfill line item comanion delivery option name.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 259

    # The computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS = 296

    # The localized name of the computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME = 297

    # The contracted units bought for the Backfill line item.
    BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY = 280

    # The cost per unit of the Backfill line item.
    BACKFILL_LINE_ITEM_COST_PER_UNIT = 272

    # Backfill line item cost type ENUM value.
    BACKFILL_LINE_ITEM_COST_TYPE = 264

    # Localized Backfill line item cost type name.
    BACKFILL_LINE_ITEM_COST_TYPE_NAME = 265

    # Represent the end date of a Backfill creative associated with a Backfill
    # line item
    BACKFILL_LINE_ITEM_CREATIVE_END_DATE = 381

    # The creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE = 290

    # The localized name of the creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 291

    # Represent the start date of a Backfill creative associated with a
    # Backfill line item
    BACKFILL_LINE_ITEM_CREATIVE_START_DATE = 380

    # The 3 letter currency code of the Backfill line item
    BACKFILL_LINE_ITEM_CURRENCY_CODE = 288

    # The progress made for the delivery of the Backfill line item.
    BACKFILL_LINE_ITEM_DELIVERY_INDICATOR = 274

    # The delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE = 292

    # The localized name of the delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 293

    # The discount of the BackfillLineItem in whole units in the
    # BackfillLineItem's currency code, or if unspecified the Network's
    # currency code.
    BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE = 294

    # The discount of the BackfillLineItem in percentage.
    BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE = 295

    # The end date of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE = 267

    # The end date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE_TIME = 269

    # The ENUM value of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE = 302

    # The localized name of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME = 257

    # The deal ID of the Backfill line item. Set for Programmatic Direct
    # campaigns.
    BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID = 285

    # The external ID of the Backfill line item.
    BACKFILL_LINE_ITEM_EXTERNAL_ID = 273

    # The frequency cap of the Backfill line item (descriptive string).
    BACKFILL_LINE_ITEM_FREQUENCY_CAP = 303

    # Backfill line item ID.
    BACKFILL_LINE_ITEM_ID = 298

    # The application that last modified the Backfill line item.
    BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP = 289

    # The total number of clicks delivered of the lifetime of the Backfill line
    # item.
    BACKFILL_LINE_ITEM_LIFETIME_CLICKS = 283

    # The total number of impressions delivered over the lifetime of the
    # Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS = 282

    # The total number of viewable impressions delivered over the lifetime of
    # the Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 284

    # Whether or not the Backfill line item is Makegood. Makegood refers to
    # free inventory offered to buyers to compensate for mistakes or
    # under-delivery in the original campaigns.
    BACKFILL_LINE_ITEM_MAKEGOOD = 276

    # Backfill line item name.
    BACKFILL_LINE_ITEM_NAME = 299

    # The cost of booking for the Backfill line item (non-CPD).
    BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE = 286

    # Whether a Backfill line item is eligible for opitimization.
    BACKFILL_LINE_ITEM_OPTIMIZABLE = 277

    # Goal type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE = 262

    # Localized goal type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 263

    # Unit type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 260

    # Localized unit type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 261

    # The priority of this Backfill line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Backfill line item.
    BACKFILL_LINE_ITEM_PRIORITY = 266

    # ENUM value describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS = 306

    # Localized string describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME = 307

    # The start date of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE = 268

    # The start date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE_TIME = 270

    # Backfill line item type ENUM value.
    BACKFILL_LINE_ITEM_TYPE = 300

    # Localized Backfill line item type name.
    BACKFILL_LINE_ITEM_TYPE_NAME = 301

    # Whether the Backfill line item end time and end date is set to
    # effectively never end.
    BACKFILL_LINE_ITEM_UNLIMITED_END = 271

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT = 275

    # The web property code used for dynamic allocation Backfill line items.
    BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE = 287

    # The ID of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_ID = 372

    # Name of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_NAME = 373

    # Backfill order agency.
    BACKFILL_ORDER_AGENCY = 313

    # Backfill order agency ID.
    BACKFILL_ORDER_AGENCY_ID = 314

    # Backfill order booked CPC.
    BACKFILL_ORDER_BOOKED_CPC = 315

    # Backfill order booked CPM.
    BACKFILL_ORDER_BOOKED_CPM = 316

    # Backfill order delivery status ENUM value.
    BACKFILL_ORDER_DELIVERY_STATUS = 340

    # Backfill order delivery status localized name.
    BACKFILL_ORDER_DELIVERY_STATUS_NAME = 341

    # Backfill order end date.
    BACKFILL_ORDER_END_DATE = 317

    # Backfill order end date and time.
    BACKFILL_ORDER_END_DATE_TIME = 319

    # Backfill order external ID.
    BACKFILL_ORDER_EXTERNAL_ID = 320

    # Backfill order id.
    BACKFILL_ORDER_ID = 338

    # Backfill order labels.
    BACKFILL_ORDER_LABELS = 334

    # Backfill order labels IDs.
    BACKFILL_ORDER_LABEL_IDS = 335

    # Backfill order lifetime clicks.
    BACKFILL_ORDER_LIFETIME_CLICKS = 322

    # Backfill order lifetime impressions.
    BACKFILL_ORDER_LIFETIME_IMPRESSIONS = 323

    # Backfill order name.
    BACKFILL_ORDER_NAME = 339

    # Backfill order PO number.
    BACKFILL_ORDER_PO_NUMBER = 324

    # Whether the Backfill order is programmatic.
    BACKFILL_ORDER_PROGRAMMATIC = 321

    # Backfill order sales person.
    BACKFILL_ORDER_SALESPERSON = 325

    # Backfill order secondary sales people.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE = 329

    # Backfill order secondary sales people ID.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID = 328

    # Backfill order secondary traffickers.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS = 331

    # Backfill order secondary traffickers ID.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID = 330

    # Backfill order start date.
    BACKFILL_ORDER_START_DATE = 332

    # Backfill order start date and time.
    BACKFILL_ORDER_START_DATE_TIME = 333

    # Backfill order trafficker.
    BACKFILL_ORDER_TRAFFICKER = 326

    # Backfill order trafficker ID.
    BACKFILL_ORDER_TRAFFICKER_ID = 327

    # Whether the Backfill order end time and end date is set to effectively
    # never end.
    BACKFILL_ORDER_UNLIMITED_END = 318

    # The ID of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_ID = 336

    # The name of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_NAME = 337

    # The amount of information about the Publisher's page sent to the buyer
    # who purchased the impressions.
    BRANDING_TYPE = 383

    # The localized version of branding type, the amount of information about
    # the Publisher's page sent to the buyer who purchased the impressions.
    BRANDING_TYPE_NAME = 384

    # Browser category.
    BROWSER_CATEGORY = 119

    # Browser category name.
    BROWSER_CATEGORY_NAME = 120

    # The ID of the browser.
    BROWSER_ID = 235

    # The name of the browser.
    BROWSER_NAME = 236

    # Mobile carrier ID.
    CARRIER_ID = 369

    # Name of the mobile carrier.
    CARRIER_NAME = 368

    # The ID of an advertiser, classified by Google, associated with a creative
    # transacted
    CLASSIFIED_ADVERTISER_ID = 133

    # The name of an advertiser, classified by Google, associated with a
    # creative transacted
    CLASSIFIED_ADVERTISER_NAME = 134

    # ID of the brand, as classified by Google,
    CLASSIFIED_BRAND_ID = 243

    # Name of the brand, as classified by Google,
    CLASSIFIED_BRAND_NAME = 244

    # ID of the video content served.
    CONTENT_ID = 246

    # Name of the video content served.
    CONTENT_NAME = 247

    # The criteria ID of the country in which the ad served.
    COUNTRY_ID = 11

    # The name of the country in which the ad served.
    COUNTRY_NAME = 12

    # Enum value of creative billing type
    CREATIVE_BILLING_TYPE = 366

    # Localized string value of creative billing type
    CREATIVE_BILLING_TYPE_NAME = 367

    # Represents the click-through URL of a creative
    CREATIVE_CLICK_THROUGH_URL = 174

    # The ID of a creative
    CREATIVE_ID = 138

    # Creative name
    CREATIVE_NAME = 139

    # Creative technology ENUM
    CREATIVE_TECHNOLOGY = 148

    # Creative technology locallized name
    CREATIVE_TECHNOLOGY_NAME = 149

    # Third party vendor name of a creative
    CREATIVE_THIRD_PARTY_VENDOR = 361

    # Enum value of creative type
    CREATIVE_TYPE = 344

    # Localized string name of creative type
    CREATIVE_TYPE_NAME = 345

    # Breaks down reporting data by date.
    DATE = 3

    # Breaks down reporting data by day of the week. Monday is 1 and 7 is
    # Sunday.
    DAY_OF_WEEK = 4

    # Demand channel.
    DEMAND_CHANNEL = 9

    # Demand channel name.
    DEMAND_CHANNEL_NAME = 10

    # Demand subchannel.
    DEMAND_SUBCHANNEL = 22

    # Demand subchannel name.
    DEMAND_SUBCHANNEL_NAME = 23

    # The device on which an ad was served.
    DEVICE = 226

    # The device category to which an ad is being targeted.
    DEVICE_CATEGORY = 15

    # The name of the category of device (smartphone, feature phone, tablet, or
    # desktop) to which an ad is being targeted.
    DEVICE_CATEGORY_NAME = 16

    # The localized name of the device on which an ad was served.
    DEVICE_NAME = 225

    # ID of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_ID = 185

    # Name of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186

    # The ID of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_ID = 248

    # The name of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_NAME = 249

    # Breaks down reporting data by hour in one day.
    HOUR = 100

    # The interaction type of an ad.
    INTERACTION_TYPE = 223

    # The localized name of the interaction type of an ad.
    INTERACTION_TYPE_NAME = 224

    # Inventory format.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT = 17

    # Inventory format name.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT_NAME = 18

    # Inventory type.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE = 19

    # Inventory type name.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE_NAME = 20

    # Whether traffic is Adx Direct.
    IS_ADX_DIRECT = 382

    # Whether traffic is First Look.
    IS_FIRST_LOOK_DEAL = 401

    # The Custom Targeting Value ID
    KEY_VALUES_ID = 214

    # The Custom Targeting Value formatted like <key_name>=<value_name>
    KEY_VALUES_NAME = 215

    # Whether a Line item is archived.
    LINE_ITEM_ARCHIVED = 188

    # Line item comanion delivery option ENUM value.
    LINE_ITEM_COMPANION_DELIVERY_OPTION = 204

    # Localized line item comanion delivery option name.
    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205

    # The computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS = 250

    # The localized name of the computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS_NAME = 251

    # The contracted units bought for the Line item.
    LINE_ITEM_CONTRACTED_QUANTITY = 92

    # The cost per unit of the Line item.
    LINE_ITEM_COST_PER_UNIT = 85

    # Line item cost type ENUM value.
    LINE_ITEM_COST_TYPE = 212

    # Localized line item cost type name.
    LINE_ITEM_COST_TYPE_NAME = 213

    # Represent the end date of a creative associated with line item
    LINE_ITEM_CREATIVE_END_DATE = 176

    # The creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE = 189

    # The localized name of the creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190

    # Represent the start date of a creative associated with line item
    LINE_ITEM_CREATIVE_START_DATE = 175

    # The 3 letter currency code of the Line Item
    LINE_ITEM_CURRENCY_CODE = 180

    # The progress made for the delivery of the Line item.
    LINE_ITEM_DELIVERY_INDICATOR = 87

    # The delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE = 191

    # The localized name of the delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192

    # The discount of the LineItem in whole units in the LineItem's currency
    # code, or if unspecified the Network's currency code.
    LINE_ITEM_DISCOUNT_ABSOLUTE = 195

    # The discount of the LineItem in percentage.
    LINE_ITEM_DISCOUNT_PERCENTAGE = 196

    # The end date of the Line item.
    LINE_ITEM_END_DATE = 81

    # The end date and time of the Line item.
    LINE_ITEM_END_DATE_TIME = 83

    # The ENUM value of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE = 201

    # The localized name of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202

    # The deal ID of the Line item. Set for Programmatic Direct campaigns.
    LINE_ITEM_EXTERNAL_DEAL_ID = 97

    # The external ID of the Line item.
    LINE_ITEM_EXTERNAL_ID = 86

    # The frequency cap of the Line item (descriptive string).
    LINE_ITEM_FREQUENCY_CAP = 256

    # Line item ID.
    LINE_ITEM_ID = 1

    # The application that last modified the Line Item.
    LINE_ITEM_LAST_MODIFIED_BY_APP = 181

    # The total number of clicks delivered of the lifetime of the Line item.
    LINE_ITEM_LIFETIME_CLICKS = 95

    # The total number of impressions delivered over the lifetime of the
    # Line item.
    LINE_ITEM_LIFETIME_IMPRESSIONS = 94

    # The total number of viewable impressions delivered over the lifetime of
    # the Line item.
    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96

    # Whether or not the Line item is Makegood. Makegood refers to free
    # inventory offered to buyers to compensate for mistakes or under-delivery
    # in the original campaigns.
    LINE_ITEM_MAKEGOOD = 89

    # Line item Name.
    LINE_ITEM_NAME = 2

    # The cost of booking for the Line item (non-CPD).
    LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98

    # Whether a Line item is eligible for opitimization.
    LINE_ITEM_OPTIMIZABLE = 90

    # Goal type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE = 210

    # Localized goal type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211

    # The total number of impressions or clicks that are reserved for a
    # line item. For line items of type BULK or PRICE_PRIORITY, this represents
    # the number of remaining impressions reserved. If the line item has an
    # impression cap goal, this represents the number of impressions or
    # conversions that the line item will stop serving at if reached.
    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93

    # The percentage of impressions or clicks that are reserved for a
    # line item. For line items of type SPONSORSHIP, this represents the
    # percentage of available impressions reserved. For line items of type
    # NETWORK or HOUSE, this represents the percentage of remaining impressions
    # reserved.
    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396

    # Unit type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208

    # Localized unit type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209

    # The priority of this Line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Line item.
    LINE_ITEM_PRIORITY = 24

    # ENUM value describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS = 304

    # Localized string describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS_NAME = 305

    # The start date of the Line item.
    LINE_ITEM_START_DATE = 82

    # The start date and time of the Line item.
    LINE_ITEM_START_DATE_TIME = 84

    # Line item type ENUM value.
    LINE_ITEM_TYPE = 193

    # Localized line item type name.
    LINE_ITEM_TYPE_NAME = 194

    # Whether the Line item end time and end date is set to effectively never
    # end.
    LINE_ITEM_UNLIMITED_END = 187

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    LINE_ITEM_VALUE_COST_PER_UNIT = 88

    # The web property code used for dynamic allocation Line Items.
    LINE_ITEM_WEB_PROPERTY_CODE = 179

    # The ID of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_ID = 140

    # Name of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_NAME = 141

    # Whether the mobile app is free.
    MOBILE_APP_FREE = 128

    # URL of app icon for the mobile app.
    MOBILE_APP_ICON_URL = 129

    # The ID of the Mobile App.
    MOBILE_APP_ID = 123

    # The name of the mobile app.
    MOBILE_APP_NAME = 127

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS = 311

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS_NAME = 312

    # The App Store of the mobile app.
    MOBILE_APP_STORE = 125

    # The localized name of the mobile app store.
    MOBILE_APP_STORE_NAME = 245

    # Mobile inventory type.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    # Values match the Inventory type dimension available in the Overview Home
    # dashboard. Note: Video takes precedence over any other value, for
    # example, if there is an in-stream video impression on a desktop device,
    # it will be attributed to in-stream video and not desktop web.
    MOBILE_INVENTORY_TYPE = 99

    # Mobile inventory type name.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    MOBILE_INVENTORY_TYPE_NAME = 21

    # SDK version of the mobile device.
    MOBILE_SDK_VERSION_NAME = 130

    # Breaks down reporting data by month and year.
    MONTH_YEAR = 6

    # Native ad format ID.
    NATIVE_AD_FORMAT_ID = 255

    # Native ad format name.
    NATIVE_AD_FORMAT_NAME = 254

    # Native style ID.
    NATIVE_STYLE_ID = 253

    # Native style name.
    NATIVE_STYLE_NAME = 252

    # Operating system category.
    OPERATING_SYSTEM_CATEGORY = 117

    # Operating system category name.
    OPERATING_SYSTEM_CATEGORY_NAME = 118

    # ID of the operating system version.
    OPERATING_SYSTEM_VERSION_ID = 238

    # Details of the operating system, including version.
    OPERATING_SYSTEM_VERSION_NAME = 237

    # Order agency.
    ORDER_AGENCY = 150

    # Order agency ID.
    ORDER_AGENCY_ID = 151

    # Order booked CPC.
    ORDER_BOOKED_CPC = 152

    # Order booked CPM.
    ORDER_BOOKED_CPM = 153

    # Order delivery status ENUM value.
    ORDER_DELIVERY_STATUS = 231

    # Order delivery status localized name.
    ORDER_DELIVERY_STATUS_NAME = 239

    # Order end date.
    ORDER_END_DATE = 154

    # Order end date and time.
    ORDER_END_DATE_TIME = 155

    # Order external ID.
    ORDER_EXTERNAL_ID = 156

    # Order id.
    ORDER_ID = 7

    # Order labels.
    ORDER_LABELS = 170

    # Order labels IDs.
    ORDER_LABEL_IDS = 171

    # Order lifetime clicks.
    ORDER_LIFETIME_CLICKS = 158

    # Order lifetime impressions.
    ORDER_LIFETIME_IMPRESSIONS = 159

    # Order name.
    ORDER_NAME = 8

    # Order PO number.
    ORDER_PO_NUMBER = 160

    # Whether the Order is programmatic.
    ORDER_PROGRAMMATIC = 157

    # Order sales person.
    ORDER_SALESPERSON = 161

    # Order secondary sales people.
    ORDER_SECONDARY_SALESPEOPLE = 164

    # Order secondary sales people ID.
    ORDER_SECONDARY_SALESPEOPLE_ID = 165

    # Order secondary traffickers.
    ORDER_SECONDARY_TRAFFICKERS = 166

    # Order secondary traffickers ID.
    ORDER_SECONDARY_TRAFFICKERS_ID = 167

    # Order start date.
    ORDER_START_DATE = 168

    # Order start date and time.
    ORDER_START_DATE_TIME = 169

    # Order trafficker.
    ORDER_TRAFFICKER = 162

    # Order trafficker ID.
    ORDER_TRAFFICKER_ID = 163

    # Whether the Order end time and end date is set to effectively never
    # end.
    ORDER_UNLIMITED_END = 203

    # Placement ID
    PLACEMENT_ID = 113

    # The full list of placement IDs associated with the ad unit.
    PLACEMENT_ID_ALL = 144

    # Placement name
    PLACEMENT_NAME = 114

    # The full list of placement names associated with the ad unit.
    PLACEMENT_NAME_ALL = 145

    # Placement status ENUM value
    PLACEMENT_STATUS = 362

    # The full list of placement status ENUM values associated with the ad
    # unit.
    PLACEMENT_STATUS_ALL = 363

    # Localized placement status name.
    PLACEMENT_STATUS_NAME = 364

    # The full list of localized placement status names associated with the ad
    # unit.
    PLACEMENT_STATUS_NAME_ALL = 365

    # The ID of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_ID = 240

    # The name of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_NAME = 241

    # Programmatic channel.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL = 13

    # Programmatic channel name.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL_NAME = 14

    # The size of a rendered creative, It can differ with the creative's size
    # if a creative is shown in an ad slot of a different size.
    RENDERED_CREATIVE_SIZE = 343

    # Inventory Requested Ad Sizes dimension
    REQUESTED_AD_SIZES = 352

    # Request type ENUM
    REQUEST_TYPE = 146

    # Request type locallized name
    REQUEST_TYPE_NAME = 147

    # Indicates if a request was eligible for server-side unwrapping.
    SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597

    # Information about domain or subdomains.
    SITE = 387

    # The ID of the browser, device or other environment into which a line item
    # or creative was served.
    TARGETING_ID = 232

    # Information about the browser, device and other environments into which
    # a line item or creative was served.
    TARGETING_NAME = 233

    # The way in which advertisers targeted their ads.
    TARGETING_TYPE = 385

    # The localized name of the way in which advertisers targeted their ads.
    TARGETING_TYPE_NAME = 386

    # Inventory Traffic source dimension
    TRAFFIC_SOURCE = 388

    # Inventory Traffic source dimension name
    TRAFFIC_SOURCE_NAME = 389

    # Unified pricing rule ID dimension
    UNIFIED_PRICING_RULE_ID = 393

    # Unified pricing rule name dimension
    UNIFIED_PRICING_RULE_NAME = 394

    # The video placement enum as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT = 172

    # The localized name of the video placement as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT_NAME = 173

    # Breaks down reporting data by week of the year.
    WEEK = 5

    # Name of the company within a yield group
    YIELD_GROUP_BUYER_NAME = 184

    # ID of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_ID = 182

    # Name of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_NAME = 183

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10_000

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10_001

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10_002

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10_003

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10_004

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10_005

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10_006

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10_007

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10_008

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10_009

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10_010

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10_011

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10_012

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10_013

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10_014

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11_000

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11_001

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11_002

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11_003

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11_004

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11_005

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11_006

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11_007

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11_008

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11_009

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11_010

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11_011

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11_012

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11_013

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11_014

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_0_OPTION_ID = 12_000

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_1_OPTION_ID = 12_001

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_2_OPTION_ID = 12_002

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_3_OPTION_ID = 12_003

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_4_OPTION_ID = 12_004

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_5_OPTION_ID = 12_005

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_6_OPTION_ID = 12_006

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_7_OPTION_ID = 12_007

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_8_OPTION_ID = 12_008

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_9_OPTION_ID = 12_009

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_10_OPTION_ID = 12_010

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_11_OPTION_ID = 12_011

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_12_OPTION_ID = 12_012

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_13_OPTION_ID = 12_013

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_14_OPTION_ID = 12_014

    # Custom field value for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 0 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_0_VALUE = 13_000

    # Custom field value for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 1 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_1_VALUE = 13_001

    # Custom field value for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 2 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_2_VALUE = 13_002

    # Custom field value for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 3 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_3_VALUE = 13_003

    # Custom field value for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 4 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_4_VALUE = 13_004

    # Custom field value for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 5 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_5_VALUE = 13_005

    # Custom field value for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 6 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_6_VALUE = 13_006

    # Custom field value for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 7 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_7_VALUE = 13_007

    # Custom field value for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 8 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_8_VALUE = 13_008

    # Custom field value for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 9 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_9_VALUE = 13_009

    # Custom field value for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_10_VALUE = 13_010

    # Custom field value for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_11_VALUE = 13_011

    # Custom field value for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_12_VALUE = 13_012

    # Custom field value for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_13_VALUE = 13_013

    # Custom field value for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_14_VALUE = 13_014

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14_000

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14_001

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14_002

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14_003

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14_004

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14_005

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14_006

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14_007

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14_008

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14_009

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14_010

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14_011

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14_012

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14_013

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14_014

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_0_VALUE = 15_000

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_1_VALUE = 15_001

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_2_VALUE = 15_002

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_3_VALUE = 15_003

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_4_VALUE = 15_004

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_5_VALUE = 15_005

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_6_VALUE = 15_006

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_7_VALUE = 15_007

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_8_VALUE = 15_008

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_9_VALUE = 15_009

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_10_VALUE = 15_010

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_11_VALUE = 15_011

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_12_VALUE = 15_012

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_13_VALUE = 15_013

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_14_VALUE = 15_014

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16_000

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16_001

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16_002

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16_003

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16_004

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16_005

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16_006

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16_007

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16_008

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16_009

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16_010

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16_011

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16_012

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16_013

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16_014

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 0 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17_000

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 1 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17_001

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 2 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17_002

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 3 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17_003

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 4 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17_004

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 5 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17_005

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 6 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17_006

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 7 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17_007

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 8 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17_008

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 9 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17_009

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17_010

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17_011

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17_012

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17_013

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17_014

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18_000

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18_001

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18_002

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18_003

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18_004

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18_005

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18_006

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18_007

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18_008

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18_009

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18_010

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18_011

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18_012

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18_013

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18_014

    # Custom field value for Backfill order with custom field ID equal to the
    # ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19_000

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19_001

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19_002

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19_003

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19_004

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19_005

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19_006

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19_007

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19_008

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19_009

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19_010

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19_011

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19_012

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19_013

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19_014

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20_000

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20_001

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20_002

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20_003

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20_004

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20_005

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20_006

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20_007

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20_008

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20_009

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20_010

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20_011

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20_012

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20_013

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20_014

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21_000

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 1 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21_001

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 2 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21_002

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 3 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21_003

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 4 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21_004

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 5 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21_005

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 6 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21_006

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 7 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21_007

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 8 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21_008

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 9 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21_009

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21_010

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21_011

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21_012

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21_013

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21_014

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE_ID = 100_000

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE_ID = 100_001

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE_ID = 100_002

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE_ID = 100_003

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE_ID = 100_004

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE_ID = 100_005

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE_ID = 100_006

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE_ID = 100_007

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE_ID = 100_008

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE_ID = 100_009

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE = 101_000

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE = 101_001

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE = 101_002

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE = 101_003

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE = 101_004

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE = 101_005

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE = 101_006

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 7 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE = 101_007

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE = 101_008

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE = 101_009
  end

  # Reporting metrics.
  module Metric
    # Default value. This value is unused.
    METRIC_UNSPECIFIED = 0

    # Active View total average time in seconds that specific impressions are
    # reported as being viewable.
    ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 61

    # Total number of impressions that were eligible to measure viewability.
    ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 58

    # The total number of impressions that were sampled and measured by active
    # view.
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 57

    # The percentage of total impressions that were measurable by active view
    # (out of all the total impressions sampled for active view).
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 60

    # The total number of impressions viewed on the user's screen.
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 56

    # The percentage of total impressions viewed on the user's screen (out of
    # the total impressions measurable by active view).
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 59

    # Active View AdSense average time in seconds that specific impressions are
    # reported as being viewable.
    ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 73

    # Total number of impressions delivered by AdSense that were eligible to
    # measure viewability.
    ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 70

    # The number of impressions delivered by AdSense that were sampled, and
    # measurable by active view.
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 69

    # The percentage of impressions delivered by AdSense that were measurable
    # by active view (out of all AdSense impressions sampled for active view).
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 72

    # The number of impressions delivered by AdSense viewed on the user's
    # screen.
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 68

    # The percentage of impressions delivered by AdSense viewed on the user's
    # screen (out of AdSense impressions measurable by active view).
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 71

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by AdSense through line item dynamic allocation.
    ADSENSE_AVERAGE_ECPM = 26

    # Number of clicks delivered by AdSense demand channel.
    ADSENSE_CLICKS = 23

    # The ratio of impressions served by AdSense that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. The
    # AdSense CTR is calculated as: (AdSense clicks / AdSense impressions).
    ADSENSE_CTR = 24

    # Total impressions delivered by AdSense.
    ADSENSE_IMPRESSIONS = 22

    # Ratio of clicks delivered by AdSense through line item dynamic allocation
    # in relation to the total clicks delivered.
    ADSENSE_PERCENT_CLICKS = 28

    # Ratio of impressions delivered by AdSense through line item dynamic
    # allocation in relation to the total impressions delivered.
    ADSENSE_PERCENT_IMPRESSIONS = 27

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue.
    ADSENSE_PERCENT_REVENUE = 29

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    ADSENSE_PERCENT_REVENUE_WITHOUT_CPD = 30

    # The total number of times that an AdSense ad is delivered.
    ADSENSE_RESPONSES_SERVED = 41

    # Revenue generated from AdSense through line item dynamic allocation,
    # calculated in the network's currency and time zone.
    ADSENSE_REVENUE = 25

    # Active View AdExchange average time in seconds that specific impressions
    # are reported as being viewable.
    AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 79

    # Total number of impressions delivered by Ad Exchange that were eligible
    # to measure viewability.
    AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 76

    # The number of impressions delivered by Ad Exchange that were sampled, and
    # measurable by active view.
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 75

    # The percentage of impressions delivered by Ad Exchange that were
    # measurable by active view (out of all Ad Exchange impressions sampled for
    # active view).
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 78

    # The number of impressions delivered by Ad Exchange viewed on the user's
    # screen.
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 74

    # The percentage of impressions delivered by Ad Exchange viewed on the
    # user's screen (out of Ad Exchange impressions measurable by active view).
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 77

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by Ad Exchange through line item dynamic allocation.
    AD_EXCHANGE_AVERAGE_ECPM = 18

    # Number of clicks delivered by the Ad Exchange.
    AD_EXCHANGE_CLICKS = 15

    # The ratio of impressions served by the Ad Exchange that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. Ad
    # Exchange CTR is calculated as: (Ad Exchange clicks / Ad Exchange
    # impressions).
    AD_EXCHANGE_CTR = 16

    # Total impressions delivered by the Ad Exchange.
    AD_EXCHANGE_IMPRESSIONS = 14

    # Ratio of clicks delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total clicks delivered.
    AD_EXCHANGE_PERCENT_CLICKS = 20

    # Ratio of impressions delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total impressions delivered.
    AD_EXCHANGE_PERCENT_IMPRESSIONS = 19

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue.
    AD_EXCHANGE_PERCENT_REVENUE = 21

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD = 31

    # The total number of times that an Ad Exchange ad is delivered.
    AD_EXCHANGE_RESPONSES_SERVED = 42

    # Revenue generated from the Ad Exchange through line item dynamic
    # allocation, calculated in your network's currency and time zone.
    AD_EXCHANGE_REVENUE = 17

    # The total number of times that an ad request is sent to the ad server
    # including dynamic allocation.
    AD_REQUESTS = 38

    # Active View ad server average time in seconds that specific impressions
    # are reported as being viewable.
    AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 67

    # Total number of impressions delivered by the ad server that were eligible
    # to measure viewability.
    AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 64

    # The number of impressions delivered by the ad server that were sampled,
    # and measurable by active view.
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 63

    # The percentage of impressions delivered by the ad server that were
    # measurable by active view (out of all the ad server impressions sampled
    # for active view).
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 66

    # The number of impressions delivered by the ad server viewed on the user's
    # screen.
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 62

    # The percentage of impressions delivered by the ad server viewed on the
    # user's screen (out of the ad server impressions measurable by active
    # view).
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 65

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server.
    AD_SERVER_AVERAGE_ECPM = 34

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server, excluding CPD value.
    AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD = 10

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown.
    AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS = 262

    # Total clicks served by the Google Ad Manager server. It usually takes
    # about 30 minutes for new clicks to be recorded and added to the total
    # displayed in reporting.
    AD_SERVER_CLICKS = 7

    # CPD revenue earned, calculated in your network's currency, for
    # the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_CPD_REVENUE = 32

    # Ratio of impressions served by the Google Ad Manager server that resulted
    # in users clicking on an ad. The clickthrough rate (CTR) is updated
    # nightly. The ad server CTR is calculated as: (Ad server clicks / Ad
    # server impressions).
    AD_SERVER_CTR = 8

    # Total impressions delivered by the Ad Server.
    AD_SERVER_IMPRESSIONS = 6

    # Ratio of clicks delivered by the Google Ad Manager server in relation to
    # the total clicks delivered.
    AD_SERVER_PERCENT_CLICKS = 12

    # Ratio of impressions delivered by the Google Ad Manager server in
    # relation to the total impressions delivered.
    AD_SERVER_PERCENT_IMPRESSIONS = 11

    # Ratio of revenue generated by the Google Ad Manager server in relation
    # to the total revenue.
    AD_SERVER_PERCENT_REVENUE = 35

    # Ratio of revenue generated by the Google Ad Manager server (excluding
    # CPD) in relation to the total revenue.
    AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13

    # The total number of times that an ad is served by the ad server.
    AD_SERVER_RESPONSES_SERVED = 40

    # All CPM, CPC, and CPD revenue earned, calculated in your network's
    # currency, for the ads delivered by the Google Ad Manager server.
    # Sum of all booked revenue.
    AD_SERVER_REVENUE = 33

    # Revenue (excluding CPD) earned, calculated in your network's currency,
    # for the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_REVENUE_WITHOUT_CPD = 9

    # The number of tracked ads delivered by the ad server.
    AD_SERVER_TRACKED_ADS = 264

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown, before invalid traffic filtrations by
    # Ad Server.
    AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261

    # Total clicks delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_CLICKS = 259

    # Total impressions delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_IMPRESSIONS = 260

    # The number of tracked ads delivered by the ad server before invalid
    # traffic filtrations.
    AD_SERVER_UNFILTERED_TRACKED_ADS = 263

    # eCPM averaged across the Google Ad Manager server, AdSense,
    # and Ad Exchange.
    AVERAGE_ECPM = 37

    # eCPM averaged across the Google Ad Manager server (excluding CPD),
    # AdSense, and Ad Exchange.
    AVERAGE_ECPM_WITHOUT_CPD = 5

    # The number of times a user clicked on an ad.
    CLICKS = 2

    # The total number of times that the code for an ad is served by the ad
    # server including dynamic allocation.
    CODE_SERVED_COUNT = 44

    # For standard ads, your ad clickthrough rate (CTR) is the number of ad
    # clicks divided by the number of individual ad impressions expressed as a
    # fraction. Ad CTR = Clicks / Ad impressions.
    CTR = 3

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129

    # The number of auction impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131

    # The number of impressions sold by Google in partner sales.
    GOOGLE_SOLD_IMPRESSIONS = 130

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127

    # The number of reservation impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126

    # Total impressions from the Google Ad Manager server, AdSense,
    # Ad Exchange, and yield group partners.
    IMPRESSIONS = 1

    # The number of filled pod requests (filled by partner or Google) in
    # partner sales.
    PARTNER_SALES_FILLED_POD_REQUESTS = 135

    # The percent of filled requests to total ad requests in
    # partner sales.
    PARTNER_SALES_FILL_RATE = 136

    # The percent of partner filled requests to total ad requests
    # in partner sales.
    PARTNER_SALES_PARTNER_MATCH_RATE = 137

    # The number of queries eligible for partner sales.
    PARTNER_SALES_QUERIES = 132

    # The number of partner unfilled impressions in partner sales.
    # If a pod request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNFILLED_IMPRESSIONS = 133

    # The number of partner unmatched queries in partner sales.
    # If an ad request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNMATCHED_QUERIES = 134

    # The number of code served sold by partner in partner sales.
    PARTNER_SOLD_CODE_SERVED = 125

    # The number of coviewed impressions sold by partner in partner sales.
    PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124

    # The number of impressions sold by partner in partner sales.
    PARTNER_SOLD_IMPRESSIONS = 123

    # The total number of ad requests eligible for programmatic inventory,
    # including Programmatic Guaranteed, Preferred Deals, backfill, and open
    # auction.
    PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177

    # The number of programmatic responses served divided by the number of
    # programmatic eligible ad requests. Includes Ad Exchange, Open Bidding,
    # and Preferred Deals.
    PROGRAMMATIC_MATCH_RATE = 178

    # Total number of ad responses served from programmatic demand sources.
    # Includes Ad Exchange, Open Bidding, and Preferred Deals.
    #
    # Differs from AD_EXCHANGE_RESPONSES_SERVED, which doesn't include Open
    # Bidding ad requests.
    PROGRAMMATIC_RESPONSES_SERVED = 176

    # The total number of times that an ad is served by the ad server including
    # dynamic allocation.
    RESPONSES_SERVED = 39

    # Total amount of CPM, CPC, and CPD revenue based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE = 36

    # Total amount of revenue (excluding CPD) based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE_WITHOUT_CPD = 4

    # The average latency in milliseconds across all server-side unwrapping
    # callout requests. There is no special handling for error or timeout
    # responses. This reflects the entire chain of a parent callout request,
    # which may result in multiple child callouts. This metric is not sliced by
    # child callout dimensions.
    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434

    # The total number of server-side unwrapping callout requests.
    SERVER_SIDE_UNWRAPPING_CALLOUTS = 435

    # The total number of server-side unwrapping callouts that returned an
    # empty response. Timeouts are not considered empty responses.
    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436

    # The total number of server-side unwrapping callouts that returned an
    # error response. Timeouts and empty responses are not considered errors.
    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437

    # The total number of successfully unwrapped, non-empty server-side
    # wrapping callouts. Successful unwrapping does not indicate that the
    # resulting creative was served.
    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438

    # The total number of server-side unwrapping callouts that timed out before
    # returning a response.
    SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439

    # The total number of missed impressions due to the ad servers' inability
    # to find ads to serve including dynamic allocation.
    UNFILLED_IMPRESSIONS = 45

    # The total number of times that an ad is not returned by the ad server.
    UNMATCHED_AD_REQUESTS = 43

    # Number of times an Offerwall message was shown to users.
    USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121

    # The number of messages where the user gained an entitlement.
    USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122

    # The number of user interactions with a video, on average, such as pause,
    # full screen, mute, etc.
    VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92

    # The number of times a user collapses a video, either to its original size
    # or to a different size.
    VIDEO_INTERACTION_COLLAPSES = 93

    # The number of times a user expands a video.
    VIDEO_INTERACTION_EXPANDS = 95

    # The number of times ad clip played in full screen mode.
    VIDEO_INTERACTION_FULL_SCREENS = 96

    # The number of times video player was in mute state during play of ad
    # clip.
    VIDEO_INTERACTION_MUTES = 97

    # The number of times user paused ad clip.
    VIDEO_INTERACTION_PAUSES = 98

    # The number of times the user unpaused the video.
    VIDEO_INTERACTION_RESUMES = 99

    # The number of times a user rewinds the video.
    VIDEO_INTERACTION_REWINDS = 100

    # The number of times a user unmutes the video.
    VIDEO_INTERACTION_UNMUTES = 101

    # The number of times a skippable video is skipped.
    VIDEO_INTERACTION_VIDEO_SKIPS = 102

    # The number of total creative serves in video realtime reporting.
    VIDEO_REAL_TIME_CREATIVE_SERVES = 139

    # The number of errors of type 100 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_100_COUNT = 143

    # The number of errors of type 101 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_101_COUNT = 144

    # The number of errors of type 102 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_102_COUNT = 145

    # The number of errors of type 200 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_200_COUNT = 146

    # The number of errors of type 201 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_201_COUNT = 147

    # The number of errors of type 202 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_202_COUNT = 148

    # The number of errors of type 203 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_203_COUNT = 149

    # The number of errors of type 300 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_300_COUNT = 150

    # The number of errors of type 301 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_301_COUNT = 151

    # The number of errors of type 302 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_302_COUNT = 152

    # The number of errors of type 303 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_303_COUNT = 153

    # The number of errors of type 400 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_400_COUNT = 154

    # The number of errors of type 401 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_401_COUNT = 155

    # The number of errors of type 402 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_402_COUNT = 156

    # The number of errors of type 403 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_403_COUNT = 157

    # The number of errors of type 405 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_405_COUNT = 158

    # The number of errors of type 406 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_406_COUNT = 159

    # The number of errors of type 407 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_407_COUNT = 160

    # The number of errors of type 408 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_408_COUNT = 161

    # The number of errors of type 409 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_409_COUNT = 162

    # The number of errors of type 410 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_410_COUNT = 163

    # The number of errors of type 500 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_500_COUNT = 164

    # The number of errors of type 501 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_501_COUNT = 165

    # The number of errors of type 502 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_502_COUNT = 166

    # The number of errors of type 503 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_503_COUNT = 167

    # The number of errors of type 600 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_600_COUNT = 168

    # The number of errors of type 601 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_601_COUNT = 169

    # The number of errors of type 602 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_602_COUNT = 170

    # The number of errors of type 603 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_603_COUNT = 171

    # The number of errors of type 604 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_604_COUNT = 172

    # The number of errors of type 900 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_900_COUNT = 173

    # The number of errors of type 901 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_901_COUNT = 174

    # The number of total impressions in video realtime reporting.
    VIDEO_REAL_TIME_IMPRESSIONS = 138

    # The number of matched queries in video realtime reporting.
    VIDEO_REAL_TIME_MATCHED_QUERIES = 140

    # The number of all errors in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175

    # The number of total queries in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_QUERIES = 142

    # The number of unmatched queries in video realtime reporting.
    VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141

    # Number of times that the publisher specified a video ad played
    # automatically.
    VIDEO_VIEWERSHIP_AUTO_PLAYS = 103

    # Average percentage of the video watched by users.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104

    # Average time(seconds) users watched the video.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105

    # Number of times that the publisher specified a video ad was clicked to
    # play.
    VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106

    # The number of times the video played to completion.
    VIDEO_VIEWERSHIP_COMPLETES = 107

    # Percentage of times the video played to the end.
    VIDEO_VIEWERSHIP_COMPLETION_RATE = 108

    # The number of engaged views: ad is viewed to completion or for 30s,
    # whichever comes first.
    VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109

    # The number of times the video played to 25% of its length.
    VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110

    # The number of times the video reached its midpoint during play.
    VIDEO_VIEWERSHIP_MIDPOINTS = 111

    # The number of times a skip button is shown in video.
    VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112

    # The number of impressions where the video was played.
    VIDEO_VIEWERSHIP_STARTS = 113

    # The number of times the video played to 75% of its length.
    VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114

    # The number of times an error occurred, such as a VAST redirect error, a
    # video playback error, or an invalid response error.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115

    # The percentage of video error count.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94

    # Duration of the video creative.
    VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116

    # View-through rate represented as a percentage.
    VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117

    # Number of winning bids received from Open Bidding buyers, even when the
    # winning bid is placed at the end of a mediation for mobile apps chain.
    YIELD_GROUP_AUCTIONS_WON = 80

    # Number of bids received from Open Bidding buyers, regardless of whether
    # the returned bid competes in an auction.
    YIELD_GROUP_BIDS = 81

    # Number of bids received from Open Bidding buyers that competed in
    # the auction.
    YIELD_GROUP_BIDS_IN_AUCTION = 82

    # Number of times a yield partner is asked to return bid to fill
    # a yield group request.
    YIELD_GROUP_CALLOUTS = 83

    # The estimated net rate for yield groups or individual
    # yield group partners.
    YIELD_GROUP_ESTIMATED_CPM = 88

    # Total net revenue earned by a yield group, based upon the yield group
    # estimated CPM and yield group impressions recorded.
    YIELD_GROUP_ESTIMATED_REVENUE = 87

    # Number of matched yield group requests where a yield partner delivered
    # their ad to publisher inventory.
    YIELD_GROUP_IMPRESSIONS = 85

    # Yield group Mediation fill rate indicating how often a network
    # fills an ad request.
    YIELD_GROUP_MEDIATION_FILL_RATE = 89

    # Total requests where a Mediation chain was served.
    YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86

    # The number of mediation chain passback across all channels.
    YIELD_GROUP_MEDIATION_PASSBACKS = 118

    # Revenue per thousand impressions based on data collected by Ad Manager
    # from third-party ad network reports.
    YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90

    # Number of times a yield group buyer successfully returned a bid in
    # response to a yield group callout.
    YIELD_GROUP_SUCCESSFUL_RESPONSES = 84
  end

  # Possible metric value types to add.
  module MetricValueType
    # The values for the primary date_range.
    PRIMARY = 0

    # Each metrics' percent of the total for the primary date_range.
    PRIMARY_PERCENT_OF_TOTAL = 1

    # The values for the comparison_date_range.
    COMPARISON = 2

    # Each metrics' percent of the total for the comparison_date_range.
    COMPARISON_PERCENT_OF_TOTAL = 3

    # The absolute change between the primary and comparison date ranges.
    ABSOLUTE_CHANGE = 4

    # The relative change between the primary and comparison date ranges.
    RELATIVE_CHANGE = 5
  end

  # Supported report types.
  module ReportType
    # Default value. This value is unused.
    REPORT_TYPE_UNSPECIFIED = 0

    # Historical.
    HISTORICAL = 1
  end

  # The visibility of a report.
  module Visibility
    # Default value. Reports with hidden visibility will not appear in the Ad
    # Manager UI.
    HIDDEN = 0

    # Reports with draft visibility will appear in the Ad Manager UI only if
    # the user has configured the UI to show them.
    DRAFT = 1

    # Reports with saved visibility will appear in the Ad Manager UI by
    # default.
    SAVED = 2
  end

  # The source to determine the time zone for the report.
  module TimeZoneSource
    # Unspecified default value.
    TIME_ZONE_SOURCE_UNSPECIFIED = 0

    # Use the publisher's time zone in network settings.
    PUBLISHER = 1

    # Use the time zone of the ad exchange.
    # Only compatible with Ad Exchange dimensions and metrics.
    AD_EXCHANGE = 2

    # Use UTC time zone.
    # Only compatible with Revenue Verification reports.
    UTC = 3

    # Use the time zone provided in the ReportDefinition.time_zone field.
    # Has limited dimension and metric compatibility compared with PUBLISHER,
    # and reports may take longer to run since the dates are dynamically
    # calculated at request time.
    PROVIDED = 4
  end
end

#report_id::Integer (readonly)

Returns Output only. Report ID.

Returns:

  • (::Integer)

    Output only. Report ID.



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
# File 'proto_docs/google/ads/admanager/v1/report_messages.rb', line 55

class Report
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a single value in a report.
  # @!attribute [rw] int_value
  #   @return [::Integer]
  #     For integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] double_value
  #   @return [::Float]
  #     For double values.
  #
  #     Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_value
  #   @return [::String]
  #     For string values.
  #
  #     Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bool_value
  #   @return [::Boolean]
  #     For boolean values.
  #
  #     Note: The following fields are mutually exclusive: `bool_value`, `int_value`, `double_value`, `string_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] int_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::IntList]
  #     For lists of integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::StringList]
  #     For lists of string values.
  #
  #     Note: The following fields are mutually exclusive: `string_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bytes_value
  #   @return [::String]
  #     For bytes values.
  #
  #     Note: The following fields are mutually exclusive: `bytes_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Value
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A list of integer values.
    # @!attribute [rw] values
    #   @return [::Array<::Integer>]
    #     The values
    class IntList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of string values.
    # @!attribute [rw] values
    #   @return [::Array<::String>]
    #     The values
    class StringList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Represents a sorting in a report.
  # @!attribute [rw] field
  #   @return [::Google::Ads::AdManager::V1::Report::Field]
  #     Required. A field (dimension or metric) to sort by.
  # @!attribute [rw] descending
  #   @return [::Boolean]
  #     Optional. The sort order. If true the sort will be descending.
  # @!attribute [rw] slice
  #   @return [::Google::Ads::AdManager::V1::Report::Slice]
  #     Optional. Use to sort on a specific slice of data.
  # @!attribute [rw] time_period_index
  #   @return [::Integer]
  #     Optional. When using time period columns, use this to sort on a specific
  #     column.
  # @!attribute [rw] metric_value_type
  #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
  #     Optional. Use to specify which metric value type to sort on. Defaults to
  #     PRIMARY.
  class Sort
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A table containing report data including dimension and metric values.
  class DataTable
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A row of report data.
    # @!attribute [rw] dimension_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     The order of the dimension values is the same as the order of the
    #     dimensions specified in the request.
    # @!attribute [rw] metric_value_groups
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::DataTable::MetricValueGroup>]
    #     The length of the metric_value_groups
    #     field will be equal to the length of the date_ranges field in the
    #     fetch response. The metric_value_groups field is
    #     ordered such that each index corresponds to the date_range at the same
    #     index. For example, given date_ranges [x, y], metric_value_groups will
    #     have a length of two. The first entry in metric_value_groups represents
    #     the metrics for date x and the second entry in metric_value_groups
    #     represents the metrics for date y.
    class Row
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Contains all metric values requested for a single date range and set of
    # column dimension values (returned in the columns field of the response).
    # The order of the metrics in each field corresponds to the order of the
    # metrics specified in the request.
    # @!attribute [rw] primary_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY MetricValueType.
    # @!attribute [rw] primary_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] comparison_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON MetricValueType.
    # @!attribute [rw] comparison_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] absolute_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the ABSOLUTE_CHANGE MetricValueType.
    # @!attribute [rw] relative_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the RELATIVE_CHANGE MetricValueType.
    # @!attribute [rw] flag_values
    #   @return [::Array<::Boolean>]
    #     If true, the flag's conditions are met. If false, the flag's
    #     conditions are not met. flag_values has the same length as
    #     flags and index i of flag_values represents the flag at index i
    #     of flags.
    class MetricValueGroup
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # A dimension or a metric in a report.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     The dimension this field represents.
  #
  #     Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] metric
  #   @return [::Google::Ads::AdManager::V1::Report::Metric]
  #     The metric this field represents.
  #
  #     Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Field
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Use to specify a slice of data.
  #
  # For example, in a report, to focus on just data from the US, specify
  # `COUNTRY_NAME` for dimension and value: `"United States"`.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     Required. The dimension to slice on.
  # @!attribute [rw] value
  #   @return [::Google::Ads::AdManager::V1::Report::Value]
  #     Required. The value of the dimension.
  class Slice
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A filter over one or more fields.
  # @!attribute [rw] field_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FieldFilter]
  #     A filter on a single field.
  #
  #     Note: The following fields are mutually exclusive: `field_filter`, `not_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] not_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter]
  #     A filter whose result is negated.
  #
  #     Note: The following fields are mutually exclusive: `not_filter`, `field_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] and_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are AND-ed.
  #
  #     Note: The following fields are mutually exclusive: `and_filter`, `field_filter`, `not_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] or_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are OR-ed.
  #
  #     Note: The following fields are mutually exclusive: `or_filter`, `field_filter`, `not_filter`, `and_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Filter
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A filter on a specific field.
    # @!attribute [rw] field
    #   @return [::Google::Ads::AdManager::V1::Report::Field]
    #     Required. The field to filter on.
    # @!attribute [rw] operation
    #   @return [::Google::Ads::AdManager::V1::Report::Filter::Operation]
    #     Required. The operation of this filter.
    # @!attribute [rw] values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Required. Values to filter to.
    # @!attribute [rw] slice
    #   @return [::Google::Ads::AdManager::V1::Report::Slice]
    #     Optional. Use to filter on a specific slice of data.
    # @!attribute [rw] time_period_index
    #   @return [::Integer]
    #     Optional. When using time period columns, use this to filter on a
    #     specific column.
    # @!attribute [rw] metric_value_type
    #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
    #     Optional. Use to specify which metric value type to filter on. Defaults
    #     to PRIMARY.
    class FieldFilter
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of filters.
    # @!attribute [rw] filters
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
    #     Required. A list of filters.
    class FilterList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Supported filter operations.
    module Operation
      # For scalar operands, checks if the operand is in the set of provided
      # filter values.
      #
      # For list operands, checks if any element in the operand is in the set
      # of provided filter values.
      #
      # Default value.
      IN = 0

      # For scalar operands, checks that the operand is not in the set of
      # provided filter values.
      #
      # For list operands, checks that none of the elements in the operand
      # is in the set of provided filter values.
      NOT_IN = 1

      # For scalar string operands, checks if the operand contains any of the
      # provided filter substrings.
      #
      # For string list operands, checks if any string in the operand contains
      # any of the provided filter substrings.
      CONTAINS = 2

      # For scalar string operands, checks that the operand contains none of
      # the provided filter substrings.
      #
      # For string list operands, checks that none of the strings in the
      # operand contain none of the provided filter substrings.
      NOT_CONTAINS = 3

      # Operand is less than the provided filter value.
      LESS_THAN = 4

      # Operand is less than or equal to provided filter value.
      LESS_THAN_EQUALS = 5

      # Operand is greater than provided filter value.
      GREATER_THAN = 6

      # Operand is greater than or equal to provided filter value.
      GREATER_THAN_EQUALS = 7

      # Operand is between provided filter values.
      BETWEEN = 8

      # Operand matches against a regex or set of regexes (one must match)
      MATCHES = 9

      # Operand negative matches against a regex or set of regexes (none must
      # match)
      NOT_MATCHES = 10
    end
  end

  # A flag for a report. Flags are used show if certain thresholds are met.
  # Result rows that match the filter will have the corresponding
  # [MetricValueGroup.flagValues][MetricValueGroup] index set to true.
  # For more information about flags see:
  # https://support.google.com/admanager/answer/15079975
  # @!attribute [rw] filters
  #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
  #     Required. Filters to apply for the flag.
  # @!attribute [rw] name
  #   @return [::String]
  #     Optional. Name of the flag.
  #     The flag names RED, YELLOW, GREEN, BLUE, PURPLE, and GREY correspond to
  #     the colored flags that appear in the UI. The UI will not display flags
  #     with other names, but they are available for use by API clients.
  class Flag
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A date range for a report.
  # @!attribute [rw] fixed
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::FixedDateRange]
  #     A fixed date range.
  #
  #     Note: The following fields are mutually exclusive: `fixed`, `relative`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] relative
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::RelativeDateRange]
  #     A relative date range.
  #
  #     Note: The following fields are mutually exclusive: `relative`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class DateRange
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A date range between two fixed dates (inclusive of end date).
    # @!attribute [rw] start_date
    #   @return [::Google::Type::Date]
    #     Required. The start date of this date range.
    # @!attribute [rw] end_date
    #   @return [::Google::Type::Date]
    #     Required. The end date (inclusive) of this date range.
    class FixedDateRange
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Options for relative date ranges.
    module RelativeDateRange
      # Default value. This value is unused.
      RELATIVE_DATE_RANGE_UNSPECIFIED = 0

      # The date the report is run.
      TODAY = 1

      # The date a day before the date that the report is run.
      YESTERDAY = 2

      # The full week in which this report is run. Could include dates in
      # the future.
      THIS_WEEK = 3

      # From the beginning of the calendar week (Monday to Sunday) in which the
      # up to and including the day the report is run.
      THIS_WEEK_TO_DATE = 29

      # The full month in which this report is run. Could include dates in
      # the future.
      THIS_MONTH = 4

      # From the beginning of the calendar month in which the report is run, to
      # up to and including the day the report is run.
      THIS_MONTH_TO_DATE = 26

      # The full quarter in which this report is run. Could include dates
      # in the future.
      THIS_QUARTER = 5

      # From the beginning of the calendar quarter in which the report is run,
      # up to and including the day the report is run.
      THIS_QUARTER_TO_DATE = 27

      # The full year in which this report is run. Could include dates in
      # the future.
      THIS_YEAR = 6

      # From the beginning of the calendar year in which the report is run, to
      # up to and including the day the report is run.
      THIS_YEAR_TO_DATE = 28

      # The entire previous calendar week, Monday to Sunday (inclusive),
      # preceding the calendar week the report is run.
      LAST_WEEK = 7

      # The entire previous calendar month preceding the calendar month the
      # report is run.
      LAST_MONTH = 8

      # The entire previous calendar quarter preceding the calendar quarter the
      # report is run.
      LAST_QUARTER = 9

      # The entire previous calendar year preceding the calendar year the
      # report is run.
      LAST_YEAR = 10

      # The 7 days preceding the day the report is run.
      LAST_7_DAYS = 11

      # The 30 days preceding the day the report is run.
      LAST_30_DAYS = 12

      # The 60 days preceding the day the report is run.
      LAST_60_DAYS = 13

      # The 90 days preceding the day the report is run.
      LAST_90_DAYS = 14

      # The 180 days preceding the day the report is run.
      LAST_180_DAYS = 15

      # The 360 days preceding the day the report is run.
      LAST_360_DAYS = 16

      # The 365 days preceding the day the report is run.
      LAST_365_DAYS = 17

      # The entire previous 3 calendar months preceding the calendar month the
      # report is run.
      LAST_3_MONTHS = 18

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_6_MONTHS = 19

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_12_MONTHS = 20

      # From 3 years before the report is run, to the day before the report is
      # run, inclusive.
      ALL_AVAILABLE = 21

      # Only valid when used in the comparison_date_range field. The complete
      # period preceding the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange of N days, this will
      # be a period of N days where the end date is the date preceding the
      # start date of the date_range.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame preceding the date_range. In the case
      # where the date_range does not capture the full period because a report
      # is run in the middle of that period, this will still be the full
      # preceding period. For example, if date_range is THIS_WEEK, but the
      # report is run on a Wednesday, THIS_WEEK will be Monday - Wednesday, but
      # PREVIOUS_PERIOD will be Monday - Sunday.
      PREVIOUS_PERIOD = 22

      # Only valid when used in the comparison_date_range field. The period
      # starting 1 year prior to the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange, this will be a date
      # range starting 1 year prior to the date_range start date and ending 1
      # year prior to the date_range end date.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame exactly 1 year prior to the date_range.
      # In the case where the date_range does not capture the full period
      # because a report is run in the middle of that period, this will still
      # be the full period 1 year prior. For example, if date range is
      # THIS_WEEK, but the report is run on a Wednesday, THIS_WEEK will be
      # Monday - Wednesday, but SAME_PERIOD_PREVIOUS_YEAR will be Monday -
      # Sunday.
      SAME_PERIOD_PREVIOUS_YEAR = 24
    end
  end

  # Valid time period columns.
  module TimePeriodColumn
    # Default value. Report will have no time period column.
    TIME_PERIOD_COLUMN_UNSPECIFIED = 0

    # A column for each date in the report.
    TIME_PERIOD_COLUMN_DATE = 1

    # A column for each week in the report.
    TIME_PERIOD_COLUMN_WEEK = 2

    # A column for each month in the report.
    TIME_PERIOD_COLUMN_MONTH = 3

    # A column for each quarter in the report.
    TIME_PERIOD_COLUMN_QUARTER = 4
  end

  # Reporting dimensions.
  module Dimension
    # Default value. This value is unused.
    DIMENSION_UNSPECIFIED = 0

    # The domain name of the advertiser.
    ADVERTISER_DOMAIN_NAME = 242

    # The ID used in an external system for advertiser identification
    ADVERTISER_EXTERNAL_ID = 228

    # The ID of an advertiser company assigned to an order
    ADVERTISER_ID = 131

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABELS = 230

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABEL_IDS = 229

    # The name of an advertiser company assigned to an order
    ADVERTISER_NAME = 132

    # The name of the contact associated with an advertiser company
    ADVERTISER_PRIMARY_CONTACT = 227

    # Shows an ENUM value describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION = 390

    # Shows a localized string describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION_NAME = 391

    # The code of the ad unit where the ad was requested.
    AD_UNIT_CODE = 64

    # The code of the first level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_1 = 65

    # The code of the tenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_10 = 74

    # The code of the eleventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_11 = 75

    # The code of the twelfth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_12 = 76

    # The code of the thirteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_13 = 77

    # The code of the fourteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_14 = 78

    # The code of the fifteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_15 = 79

    # The code of the sixteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_16 = 80

    # The code of the second level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_2 = 66

    # The code of the third level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_3 = 67

    # The code of the fourth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_4 = 68

    # The code of the fifth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_5 = 69

    # The code of the sixth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_6 = 70

    # The code of the seventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_7 = 71

    # The code of the eighth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_8 = 72

    # The code of the ninth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_9 = 73

    # The depth of the ad unit's hierarchy
    AD_UNIT_DEPTH = 101

    # The ID of the ad unit where the ad was requested.
    AD_UNIT_ID = 25

    # The full hierarchy of ad unit IDs where the ad was requested, from
    # root to leaf, excluding the root ad unit ID.
    AD_UNIT_ID_ALL_LEVEL = 27

    # The first level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_1 = 30

    # The tenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_10 = 48

    # The eleventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_11 = 50

    # The twelfth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_12 = 52

    # The thirteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_13 = 54

    # The fourteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_14 = 56

    # The fifteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_15 = 58

    # The sixteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_16 = 60

    # The second level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_2 = 32

    # The third level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_3 = 34

    # The fourth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_4 = 36

    # The fifth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_5 = 38

    # The sixth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_6 = 40

    # The seventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_7 = 42

    # The eighth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_8 = 44

    # The ninth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_9 = 46

    # The top-level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_TOP_LEVEL = 142

    # The name of the ad unit where the ad was requested.
    AD_UNIT_NAME = 26

    # The full hierarchy of ad unit names where the ad was requested, from
    # root to leaf, excluding the root ad unit name.
    AD_UNIT_NAME_ALL_LEVEL = 29

    # The first level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_1 = 31

    # The tenth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_10 = 49

    # The eleventh level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_11 = 51

    # The twelfth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_12 = 53

    # The thirteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_13 = 55

    # The fourteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_14 = 57

    # The fifteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_15 = 59

    # The sixteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_16 = 61

    # The second level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_2 = 33

    # The third level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_3 = 35

    # The fourth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_4 = 37

    # The fifth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_5 = 39

    # The sixth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_6 = 41

    # The seventh level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_7 = 43

    # The eighth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_8 = 45

    # The ninth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_9 = 47

    # The top-level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_TOP_LEVEL = 143

    # The reward amount of the ad unit where the ad was requested.
    AD_UNIT_REWARD_AMOUNT = 63

    # The reward type of the ad unit where the ad was requested.
    AD_UNIT_REWARD_TYPE = 62

    # The status of the ad unit
    AD_UNIT_STATUS = 206

    # The name of the status of the ad unit
    AD_UNIT_STATUS_NAME = 207

    # The app version.
    APP_VERSION = 392

    # The ID used in an external system for advertiser identification
    BACKFILL_ADVERTISER_EXTERNAL_ID = 349

    # The ID of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_ID = 346

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABELS = 351

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABEL_IDS = 350

    # The name of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_NAME = 347

    # The name of the contact associated with an advertiser company
    BACKFILL_ADVERTISER_PRIMARY_CONTACT = 348

    # Enum value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE = 378

    # Localized string value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE_NAME = 379

    # Represents the click-through URL of a Backfill creative
    BACKFILL_CREATIVE_CLICK_THROUGH_URL = 376

    # The ID of a Backfill creative
    BACKFILL_CREATIVE_ID = 370

    # Backfill creative name
    BACKFILL_CREATIVE_NAME = 371

    # Third party vendor name of a Backfill creative
    BACKFILL_CREATIVE_THIRD_PARTY_VENDOR = 377

    # Enum value of Backfill creative type
    BACKFILL_CREATIVE_TYPE = 374

    # Localized string name of Backfill creative type
    BACKFILL_CREATIVE_TYPE_NAME = 375

    # Whether a Backfill line item is archived.
    BACKFILL_LINE_ITEM_ARCHIVED = 278

    # Backfill line item comanion delivery option ENUM value.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION = 258

    # Localized Backfill line item comanion delivery option name.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 259

    # The computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS = 296

    # The localized name of the computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME = 297

    # The contracted units bought for the Backfill line item.
    BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY = 280

    # The cost per unit of the Backfill line item.
    BACKFILL_LINE_ITEM_COST_PER_UNIT = 272

    # Backfill line item cost type ENUM value.
    BACKFILL_LINE_ITEM_COST_TYPE = 264

    # Localized Backfill line item cost type name.
    BACKFILL_LINE_ITEM_COST_TYPE_NAME = 265

    # Represent the end date of a Backfill creative associated with a Backfill
    # line item
    BACKFILL_LINE_ITEM_CREATIVE_END_DATE = 381

    # The creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE = 290

    # The localized name of the creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 291

    # Represent the start date of a Backfill creative associated with a
    # Backfill line item
    BACKFILL_LINE_ITEM_CREATIVE_START_DATE = 380

    # The 3 letter currency code of the Backfill line item
    BACKFILL_LINE_ITEM_CURRENCY_CODE = 288

    # The progress made for the delivery of the Backfill line item.
    BACKFILL_LINE_ITEM_DELIVERY_INDICATOR = 274

    # The delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE = 292

    # The localized name of the delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 293

    # The discount of the BackfillLineItem in whole units in the
    # BackfillLineItem's currency code, or if unspecified the Network's
    # currency code.
    BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE = 294

    # The discount of the BackfillLineItem in percentage.
    BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE = 295

    # The end date of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE = 267

    # The end date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE_TIME = 269

    # The ENUM value of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE = 302

    # The localized name of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME = 257

    # The deal ID of the Backfill line item. Set for Programmatic Direct
    # campaigns.
    BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID = 285

    # The external ID of the Backfill line item.
    BACKFILL_LINE_ITEM_EXTERNAL_ID = 273

    # The frequency cap of the Backfill line item (descriptive string).
    BACKFILL_LINE_ITEM_FREQUENCY_CAP = 303

    # Backfill line item ID.
    BACKFILL_LINE_ITEM_ID = 298

    # The application that last modified the Backfill line item.
    BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP = 289

    # The total number of clicks delivered of the lifetime of the Backfill line
    # item.
    BACKFILL_LINE_ITEM_LIFETIME_CLICKS = 283

    # The total number of impressions delivered over the lifetime of the
    # Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS = 282

    # The total number of viewable impressions delivered over the lifetime of
    # the Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 284

    # Whether or not the Backfill line item is Makegood. Makegood refers to
    # free inventory offered to buyers to compensate for mistakes or
    # under-delivery in the original campaigns.
    BACKFILL_LINE_ITEM_MAKEGOOD = 276

    # Backfill line item name.
    BACKFILL_LINE_ITEM_NAME = 299

    # The cost of booking for the Backfill line item (non-CPD).
    BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE = 286

    # Whether a Backfill line item is eligible for opitimization.
    BACKFILL_LINE_ITEM_OPTIMIZABLE = 277

    # Goal type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE = 262

    # Localized goal type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 263

    # Unit type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 260

    # Localized unit type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 261

    # The priority of this Backfill line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Backfill line item.
    BACKFILL_LINE_ITEM_PRIORITY = 266

    # ENUM value describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS = 306

    # Localized string describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME = 307

    # The start date of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE = 268

    # The start date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE_TIME = 270

    # Backfill line item type ENUM value.
    BACKFILL_LINE_ITEM_TYPE = 300

    # Localized Backfill line item type name.
    BACKFILL_LINE_ITEM_TYPE_NAME = 301

    # Whether the Backfill line item end time and end date is set to
    # effectively never end.
    BACKFILL_LINE_ITEM_UNLIMITED_END = 271

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT = 275

    # The web property code used for dynamic allocation Backfill line items.
    BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE = 287

    # The ID of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_ID = 372

    # Name of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_NAME = 373

    # Backfill order agency.
    BACKFILL_ORDER_AGENCY = 313

    # Backfill order agency ID.
    BACKFILL_ORDER_AGENCY_ID = 314

    # Backfill order booked CPC.
    BACKFILL_ORDER_BOOKED_CPC = 315

    # Backfill order booked CPM.
    BACKFILL_ORDER_BOOKED_CPM = 316

    # Backfill order delivery status ENUM value.
    BACKFILL_ORDER_DELIVERY_STATUS = 340

    # Backfill order delivery status localized name.
    BACKFILL_ORDER_DELIVERY_STATUS_NAME = 341

    # Backfill order end date.
    BACKFILL_ORDER_END_DATE = 317

    # Backfill order end date and time.
    BACKFILL_ORDER_END_DATE_TIME = 319

    # Backfill order external ID.
    BACKFILL_ORDER_EXTERNAL_ID = 320

    # Backfill order id.
    BACKFILL_ORDER_ID = 338

    # Backfill order labels.
    BACKFILL_ORDER_LABELS = 334

    # Backfill order labels IDs.
    BACKFILL_ORDER_LABEL_IDS = 335

    # Backfill order lifetime clicks.
    BACKFILL_ORDER_LIFETIME_CLICKS = 322

    # Backfill order lifetime impressions.
    BACKFILL_ORDER_LIFETIME_IMPRESSIONS = 323

    # Backfill order name.
    BACKFILL_ORDER_NAME = 339

    # Backfill order PO number.
    BACKFILL_ORDER_PO_NUMBER = 324

    # Whether the Backfill order is programmatic.
    BACKFILL_ORDER_PROGRAMMATIC = 321

    # Backfill order sales person.
    BACKFILL_ORDER_SALESPERSON = 325

    # Backfill order secondary sales people.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE = 329

    # Backfill order secondary sales people ID.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID = 328

    # Backfill order secondary traffickers.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS = 331

    # Backfill order secondary traffickers ID.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID = 330

    # Backfill order start date.
    BACKFILL_ORDER_START_DATE = 332

    # Backfill order start date and time.
    BACKFILL_ORDER_START_DATE_TIME = 333

    # Backfill order trafficker.
    BACKFILL_ORDER_TRAFFICKER = 326

    # Backfill order trafficker ID.
    BACKFILL_ORDER_TRAFFICKER_ID = 327

    # Whether the Backfill order end time and end date is set to effectively
    # never end.
    BACKFILL_ORDER_UNLIMITED_END = 318

    # The ID of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_ID = 336

    # The name of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_NAME = 337

    # The amount of information about the Publisher's page sent to the buyer
    # who purchased the impressions.
    BRANDING_TYPE = 383

    # The localized version of branding type, the amount of information about
    # the Publisher's page sent to the buyer who purchased the impressions.
    BRANDING_TYPE_NAME = 384

    # Browser category.
    BROWSER_CATEGORY = 119

    # Browser category name.
    BROWSER_CATEGORY_NAME = 120

    # The ID of the browser.
    BROWSER_ID = 235

    # The name of the browser.
    BROWSER_NAME = 236

    # Mobile carrier ID.
    CARRIER_ID = 369

    # Name of the mobile carrier.
    CARRIER_NAME = 368

    # The ID of an advertiser, classified by Google, associated with a creative
    # transacted
    CLASSIFIED_ADVERTISER_ID = 133

    # The name of an advertiser, classified by Google, associated with a
    # creative transacted
    CLASSIFIED_ADVERTISER_NAME = 134

    # ID of the brand, as classified by Google,
    CLASSIFIED_BRAND_ID = 243

    # Name of the brand, as classified by Google,
    CLASSIFIED_BRAND_NAME = 244

    # ID of the video content served.
    CONTENT_ID = 246

    # Name of the video content served.
    CONTENT_NAME = 247

    # The criteria ID of the country in which the ad served.
    COUNTRY_ID = 11

    # The name of the country in which the ad served.
    COUNTRY_NAME = 12

    # Enum value of creative billing type
    CREATIVE_BILLING_TYPE = 366

    # Localized string value of creative billing type
    CREATIVE_BILLING_TYPE_NAME = 367

    # Represents the click-through URL of a creative
    CREATIVE_CLICK_THROUGH_URL = 174

    # The ID of a creative
    CREATIVE_ID = 138

    # Creative name
    CREATIVE_NAME = 139

    # Creative technology ENUM
    CREATIVE_TECHNOLOGY = 148

    # Creative technology locallized name
    CREATIVE_TECHNOLOGY_NAME = 149

    # Third party vendor name of a creative
    CREATIVE_THIRD_PARTY_VENDOR = 361

    # Enum value of creative type
    CREATIVE_TYPE = 344

    # Localized string name of creative type
    CREATIVE_TYPE_NAME = 345

    # Breaks down reporting data by date.
    DATE = 3

    # Breaks down reporting data by day of the week. Monday is 1 and 7 is
    # Sunday.
    DAY_OF_WEEK = 4

    # Demand channel.
    DEMAND_CHANNEL = 9

    # Demand channel name.
    DEMAND_CHANNEL_NAME = 10

    # Demand subchannel.
    DEMAND_SUBCHANNEL = 22

    # Demand subchannel name.
    DEMAND_SUBCHANNEL_NAME = 23

    # The device on which an ad was served.
    DEVICE = 226

    # The device category to which an ad is being targeted.
    DEVICE_CATEGORY = 15

    # The name of the category of device (smartphone, feature phone, tablet, or
    # desktop) to which an ad is being targeted.
    DEVICE_CATEGORY_NAME = 16

    # The localized name of the device on which an ad was served.
    DEVICE_NAME = 225

    # ID of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_ID = 185

    # Name of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186

    # The ID of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_ID = 248

    # The name of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_NAME = 249

    # Breaks down reporting data by hour in one day.
    HOUR = 100

    # The interaction type of an ad.
    INTERACTION_TYPE = 223

    # The localized name of the interaction type of an ad.
    INTERACTION_TYPE_NAME = 224

    # Inventory format.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT = 17

    # Inventory format name.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT_NAME = 18

    # Inventory type.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE = 19

    # Inventory type name.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE_NAME = 20

    # Whether traffic is Adx Direct.
    IS_ADX_DIRECT = 382

    # Whether traffic is First Look.
    IS_FIRST_LOOK_DEAL = 401

    # The Custom Targeting Value ID
    KEY_VALUES_ID = 214

    # The Custom Targeting Value formatted like <key_name>=<value_name>
    KEY_VALUES_NAME = 215

    # Whether a Line item is archived.
    LINE_ITEM_ARCHIVED = 188

    # Line item comanion delivery option ENUM value.
    LINE_ITEM_COMPANION_DELIVERY_OPTION = 204

    # Localized line item comanion delivery option name.
    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205

    # The computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS = 250

    # The localized name of the computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS_NAME = 251

    # The contracted units bought for the Line item.
    LINE_ITEM_CONTRACTED_QUANTITY = 92

    # The cost per unit of the Line item.
    LINE_ITEM_COST_PER_UNIT = 85

    # Line item cost type ENUM value.
    LINE_ITEM_COST_TYPE = 212

    # Localized line item cost type name.
    LINE_ITEM_COST_TYPE_NAME = 213

    # Represent the end date of a creative associated with line item
    LINE_ITEM_CREATIVE_END_DATE = 176

    # The creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE = 189

    # The localized name of the creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190

    # Represent the start date of a creative associated with line item
    LINE_ITEM_CREATIVE_START_DATE = 175

    # The 3 letter currency code of the Line Item
    LINE_ITEM_CURRENCY_CODE = 180

    # The progress made for the delivery of the Line item.
    LINE_ITEM_DELIVERY_INDICATOR = 87

    # The delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE = 191

    # The localized name of the delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192

    # The discount of the LineItem in whole units in the LineItem's currency
    # code, or if unspecified the Network's currency code.
    LINE_ITEM_DISCOUNT_ABSOLUTE = 195

    # The discount of the LineItem in percentage.
    LINE_ITEM_DISCOUNT_PERCENTAGE = 196

    # The end date of the Line item.
    LINE_ITEM_END_DATE = 81

    # The end date and time of the Line item.
    LINE_ITEM_END_DATE_TIME = 83

    # The ENUM value of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE = 201

    # The localized name of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202

    # The deal ID of the Line item. Set for Programmatic Direct campaigns.
    LINE_ITEM_EXTERNAL_DEAL_ID = 97

    # The external ID of the Line item.
    LINE_ITEM_EXTERNAL_ID = 86

    # The frequency cap of the Line item (descriptive string).
    LINE_ITEM_FREQUENCY_CAP = 256

    # Line item ID.
    LINE_ITEM_ID = 1

    # The application that last modified the Line Item.
    LINE_ITEM_LAST_MODIFIED_BY_APP = 181

    # The total number of clicks delivered of the lifetime of the Line item.
    LINE_ITEM_LIFETIME_CLICKS = 95

    # The total number of impressions delivered over the lifetime of the
    # Line item.
    LINE_ITEM_LIFETIME_IMPRESSIONS = 94

    # The total number of viewable impressions delivered over the lifetime of
    # the Line item.
    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96

    # Whether or not the Line item is Makegood. Makegood refers to free
    # inventory offered to buyers to compensate for mistakes or under-delivery
    # in the original campaigns.
    LINE_ITEM_MAKEGOOD = 89

    # Line item Name.
    LINE_ITEM_NAME = 2

    # The cost of booking for the Line item (non-CPD).
    LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98

    # Whether a Line item is eligible for opitimization.
    LINE_ITEM_OPTIMIZABLE = 90

    # Goal type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE = 210

    # Localized goal type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211

    # The total number of impressions or clicks that are reserved for a
    # line item. For line items of type BULK or PRICE_PRIORITY, this represents
    # the number of remaining impressions reserved. If the line item has an
    # impression cap goal, this represents the number of impressions or
    # conversions that the line item will stop serving at if reached.
    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93

    # The percentage of impressions or clicks that are reserved for a
    # line item. For line items of type SPONSORSHIP, this represents the
    # percentage of available impressions reserved. For line items of type
    # NETWORK or HOUSE, this represents the percentage of remaining impressions
    # reserved.
    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396

    # Unit type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208

    # Localized unit type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209

    # The priority of this Line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Line item.
    LINE_ITEM_PRIORITY = 24

    # ENUM value describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS = 304

    # Localized string describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS_NAME = 305

    # The start date of the Line item.
    LINE_ITEM_START_DATE = 82

    # The start date and time of the Line item.
    LINE_ITEM_START_DATE_TIME = 84

    # Line item type ENUM value.
    LINE_ITEM_TYPE = 193

    # Localized line item type name.
    LINE_ITEM_TYPE_NAME = 194

    # Whether the Line item end time and end date is set to effectively never
    # end.
    LINE_ITEM_UNLIMITED_END = 187

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    LINE_ITEM_VALUE_COST_PER_UNIT = 88

    # The web property code used for dynamic allocation Line Items.
    LINE_ITEM_WEB_PROPERTY_CODE = 179

    # The ID of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_ID = 140

    # Name of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_NAME = 141

    # Whether the mobile app is free.
    MOBILE_APP_FREE = 128

    # URL of app icon for the mobile app.
    MOBILE_APP_ICON_URL = 129

    # The ID of the Mobile App.
    MOBILE_APP_ID = 123

    # The name of the mobile app.
    MOBILE_APP_NAME = 127

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS = 311

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS_NAME = 312

    # The App Store of the mobile app.
    MOBILE_APP_STORE = 125

    # The localized name of the mobile app store.
    MOBILE_APP_STORE_NAME = 245

    # Mobile inventory type.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    # Values match the Inventory type dimension available in the Overview Home
    # dashboard. Note: Video takes precedence over any other value, for
    # example, if there is an in-stream video impression on a desktop device,
    # it will be attributed to in-stream video and not desktop web.
    MOBILE_INVENTORY_TYPE = 99

    # Mobile inventory type name.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    MOBILE_INVENTORY_TYPE_NAME = 21

    # SDK version of the mobile device.
    MOBILE_SDK_VERSION_NAME = 130

    # Breaks down reporting data by month and year.
    MONTH_YEAR = 6

    # Native ad format ID.
    NATIVE_AD_FORMAT_ID = 255

    # Native ad format name.
    NATIVE_AD_FORMAT_NAME = 254

    # Native style ID.
    NATIVE_STYLE_ID = 253

    # Native style name.
    NATIVE_STYLE_NAME = 252

    # Operating system category.
    OPERATING_SYSTEM_CATEGORY = 117

    # Operating system category name.
    OPERATING_SYSTEM_CATEGORY_NAME = 118

    # ID of the operating system version.
    OPERATING_SYSTEM_VERSION_ID = 238

    # Details of the operating system, including version.
    OPERATING_SYSTEM_VERSION_NAME = 237

    # Order agency.
    ORDER_AGENCY = 150

    # Order agency ID.
    ORDER_AGENCY_ID = 151

    # Order booked CPC.
    ORDER_BOOKED_CPC = 152

    # Order booked CPM.
    ORDER_BOOKED_CPM = 153

    # Order delivery status ENUM value.
    ORDER_DELIVERY_STATUS = 231

    # Order delivery status localized name.
    ORDER_DELIVERY_STATUS_NAME = 239

    # Order end date.
    ORDER_END_DATE = 154

    # Order end date and time.
    ORDER_END_DATE_TIME = 155

    # Order external ID.
    ORDER_EXTERNAL_ID = 156

    # Order id.
    ORDER_ID = 7

    # Order labels.
    ORDER_LABELS = 170

    # Order labels IDs.
    ORDER_LABEL_IDS = 171

    # Order lifetime clicks.
    ORDER_LIFETIME_CLICKS = 158

    # Order lifetime impressions.
    ORDER_LIFETIME_IMPRESSIONS = 159

    # Order name.
    ORDER_NAME = 8

    # Order PO number.
    ORDER_PO_NUMBER = 160

    # Whether the Order is programmatic.
    ORDER_PROGRAMMATIC = 157

    # Order sales person.
    ORDER_SALESPERSON = 161

    # Order secondary sales people.
    ORDER_SECONDARY_SALESPEOPLE = 164

    # Order secondary sales people ID.
    ORDER_SECONDARY_SALESPEOPLE_ID = 165

    # Order secondary traffickers.
    ORDER_SECONDARY_TRAFFICKERS = 166

    # Order secondary traffickers ID.
    ORDER_SECONDARY_TRAFFICKERS_ID = 167

    # Order start date.
    ORDER_START_DATE = 168

    # Order start date and time.
    ORDER_START_DATE_TIME = 169

    # Order trafficker.
    ORDER_TRAFFICKER = 162

    # Order trafficker ID.
    ORDER_TRAFFICKER_ID = 163

    # Whether the Order end time and end date is set to effectively never
    # end.
    ORDER_UNLIMITED_END = 203

    # Placement ID
    PLACEMENT_ID = 113

    # The full list of placement IDs associated with the ad unit.
    PLACEMENT_ID_ALL = 144

    # Placement name
    PLACEMENT_NAME = 114

    # The full list of placement names associated with the ad unit.
    PLACEMENT_NAME_ALL = 145

    # Placement status ENUM value
    PLACEMENT_STATUS = 362

    # The full list of placement status ENUM values associated with the ad
    # unit.
    PLACEMENT_STATUS_ALL = 363

    # Localized placement status name.
    PLACEMENT_STATUS_NAME = 364

    # The full list of localized placement status names associated with the ad
    # unit.
    PLACEMENT_STATUS_NAME_ALL = 365

    # The ID of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_ID = 240

    # The name of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_NAME = 241

    # Programmatic channel.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL = 13

    # Programmatic channel name.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL_NAME = 14

    # The size of a rendered creative, It can differ with the creative's size
    # if a creative is shown in an ad slot of a different size.
    RENDERED_CREATIVE_SIZE = 343

    # Inventory Requested Ad Sizes dimension
    REQUESTED_AD_SIZES = 352

    # Request type ENUM
    REQUEST_TYPE = 146

    # Request type locallized name
    REQUEST_TYPE_NAME = 147

    # Indicates if a request was eligible for server-side unwrapping.
    SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597

    # Information about domain or subdomains.
    SITE = 387

    # The ID of the browser, device or other environment into which a line item
    # or creative was served.
    TARGETING_ID = 232

    # Information about the browser, device and other environments into which
    # a line item or creative was served.
    TARGETING_NAME = 233

    # The way in which advertisers targeted their ads.
    TARGETING_TYPE = 385

    # The localized name of the way in which advertisers targeted their ads.
    TARGETING_TYPE_NAME = 386

    # Inventory Traffic source dimension
    TRAFFIC_SOURCE = 388

    # Inventory Traffic source dimension name
    TRAFFIC_SOURCE_NAME = 389

    # Unified pricing rule ID dimension
    UNIFIED_PRICING_RULE_ID = 393

    # Unified pricing rule name dimension
    UNIFIED_PRICING_RULE_NAME = 394

    # The video placement enum as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT = 172

    # The localized name of the video placement as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT_NAME = 173

    # Breaks down reporting data by week of the year.
    WEEK = 5

    # Name of the company within a yield group
    YIELD_GROUP_BUYER_NAME = 184

    # ID of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_ID = 182

    # Name of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_NAME = 183

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10_000

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10_001

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10_002

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10_003

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10_004

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10_005

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10_006

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10_007

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10_008

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10_009

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10_010

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10_011

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10_012

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10_013

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10_014

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11_000

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11_001

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11_002

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11_003

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11_004

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11_005

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11_006

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11_007

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11_008

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11_009

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11_010

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11_011

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11_012

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11_013

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11_014

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_0_OPTION_ID = 12_000

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_1_OPTION_ID = 12_001

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_2_OPTION_ID = 12_002

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_3_OPTION_ID = 12_003

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_4_OPTION_ID = 12_004

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_5_OPTION_ID = 12_005

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_6_OPTION_ID = 12_006

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_7_OPTION_ID = 12_007

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_8_OPTION_ID = 12_008

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_9_OPTION_ID = 12_009

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_10_OPTION_ID = 12_010

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_11_OPTION_ID = 12_011

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_12_OPTION_ID = 12_012

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_13_OPTION_ID = 12_013

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_14_OPTION_ID = 12_014

    # Custom field value for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 0 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_0_VALUE = 13_000

    # Custom field value for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 1 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_1_VALUE = 13_001

    # Custom field value for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 2 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_2_VALUE = 13_002

    # Custom field value for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 3 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_3_VALUE = 13_003

    # Custom field value for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 4 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_4_VALUE = 13_004

    # Custom field value for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 5 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_5_VALUE = 13_005

    # Custom field value for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 6 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_6_VALUE = 13_006

    # Custom field value for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 7 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_7_VALUE = 13_007

    # Custom field value for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 8 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_8_VALUE = 13_008

    # Custom field value for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 9 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_9_VALUE = 13_009

    # Custom field value for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_10_VALUE = 13_010

    # Custom field value for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_11_VALUE = 13_011

    # Custom field value for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_12_VALUE = 13_012

    # Custom field value for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_13_VALUE = 13_013

    # Custom field value for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_14_VALUE = 13_014

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14_000

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14_001

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14_002

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14_003

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14_004

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14_005

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14_006

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14_007

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14_008

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14_009

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14_010

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14_011

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14_012

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14_013

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14_014

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_0_VALUE = 15_000

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_1_VALUE = 15_001

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_2_VALUE = 15_002

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_3_VALUE = 15_003

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_4_VALUE = 15_004

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_5_VALUE = 15_005

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_6_VALUE = 15_006

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_7_VALUE = 15_007

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_8_VALUE = 15_008

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_9_VALUE = 15_009

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_10_VALUE = 15_010

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_11_VALUE = 15_011

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_12_VALUE = 15_012

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_13_VALUE = 15_013

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_14_VALUE = 15_014

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16_000

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16_001

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16_002

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16_003

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16_004

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16_005

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16_006

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16_007

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16_008

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16_009

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16_010

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16_011

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16_012

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16_013

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16_014

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 0 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17_000

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 1 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17_001

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 2 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17_002

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 3 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17_003

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 4 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17_004

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 5 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17_005

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 6 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17_006

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 7 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17_007

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 8 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17_008

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 9 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17_009

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17_010

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17_011

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17_012

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17_013

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17_014

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18_000

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18_001

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18_002

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18_003

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18_004

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18_005

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18_006

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18_007

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18_008

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18_009

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18_010

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18_011

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18_012

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18_013

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18_014

    # Custom field value for Backfill order with custom field ID equal to the
    # ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19_000

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19_001

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19_002

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19_003

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19_004

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19_005

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19_006

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19_007

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19_008

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19_009

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19_010

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19_011

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19_012

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19_013

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19_014

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20_000

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20_001

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20_002

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20_003

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20_004

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20_005

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20_006

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20_007

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20_008

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20_009

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20_010

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20_011

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20_012

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20_013

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20_014

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21_000

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 1 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21_001

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 2 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21_002

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 3 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21_003

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 4 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21_004

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 5 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21_005

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 6 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21_006

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 7 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21_007

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 8 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21_008

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 9 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21_009

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21_010

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21_011

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21_012

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21_013

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21_014

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE_ID = 100_000

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE_ID = 100_001

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE_ID = 100_002

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE_ID = 100_003

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE_ID = 100_004

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE_ID = 100_005

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE_ID = 100_006

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE_ID = 100_007

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE_ID = 100_008

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE_ID = 100_009

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE = 101_000

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE = 101_001

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE = 101_002

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE = 101_003

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE = 101_004

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE = 101_005

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE = 101_006

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 7 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE = 101_007

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE = 101_008

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE = 101_009
  end

  # Reporting metrics.
  module Metric
    # Default value. This value is unused.
    METRIC_UNSPECIFIED = 0

    # Active View total average time in seconds that specific impressions are
    # reported as being viewable.
    ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 61

    # Total number of impressions that were eligible to measure viewability.
    ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 58

    # The total number of impressions that were sampled and measured by active
    # view.
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 57

    # The percentage of total impressions that were measurable by active view
    # (out of all the total impressions sampled for active view).
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 60

    # The total number of impressions viewed on the user's screen.
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 56

    # The percentage of total impressions viewed on the user's screen (out of
    # the total impressions measurable by active view).
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 59

    # Active View AdSense average time in seconds that specific impressions are
    # reported as being viewable.
    ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 73

    # Total number of impressions delivered by AdSense that were eligible to
    # measure viewability.
    ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 70

    # The number of impressions delivered by AdSense that were sampled, and
    # measurable by active view.
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 69

    # The percentage of impressions delivered by AdSense that were measurable
    # by active view (out of all AdSense impressions sampled for active view).
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 72

    # The number of impressions delivered by AdSense viewed on the user's
    # screen.
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 68

    # The percentage of impressions delivered by AdSense viewed on the user's
    # screen (out of AdSense impressions measurable by active view).
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 71

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by AdSense through line item dynamic allocation.
    ADSENSE_AVERAGE_ECPM = 26

    # Number of clicks delivered by AdSense demand channel.
    ADSENSE_CLICKS = 23

    # The ratio of impressions served by AdSense that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. The
    # AdSense CTR is calculated as: (AdSense clicks / AdSense impressions).
    ADSENSE_CTR = 24

    # Total impressions delivered by AdSense.
    ADSENSE_IMPRESSIONS = 22

    # Ratio of clicks delivered by AdSense through line item dynamic allocation
    # in relation to the total clicks delivered.
    ADSENSE_PERCENT_CLICKS = 28

    # Ratio of impressions delivered by AdSense through line item dynamic
    # allocation in relation to the total impressions delivered.
    ADSENSE_PERCENT_IMPRESSIONS = 27

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue.
    ADSENSE_PERCENT_REVENUE = 29

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    ADSENSE_PERCENT_REVENUE_WITHOUT_CPD = 30

    # The total number of times that an AdSense ad is delivered.
    ADSENSE_RESPONSES_SERVED = 41

    # Revenue generated from AdSense through line item dynamic allocation,
    # calculated in the network's currency and time zone.
    ADSENSE_REVENUE = 25

    # Active View AdExchange average time in seconds that specific impressions
    # are reported as being viewable.
    AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 79

    # Total number of impressions delivered by Ad Exchange that were eligible
    # to measure viewability.
    AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 76

    # The number of impressions delivered by Ad Exchange that were sampled, and
    # measurable by active view.
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 75

    # The percentage of impressions delivered by Ad Exchange that were
    # measurable by active view (out of all Ad Exchange impressions sampled for
    # active view).
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 78

    # The number of impressions delivered by Ad Exchange viewed on the user's
    # screen.
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 74

    # The percentage of impressions delivered by Ad Exchange viewed on the
    # user's screen (out of Ad Exchange impressions measurable by active view).
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 77

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by Ad Exchange through line item dynamic allocation.
    AD_EXCHANGE_AVERAGE_ECPM = 18

    # Number of clicks delivered by the Ad Exchange.
    AD_EXCHANGE_CLICKS = 15

    # The ratio of impressions served by the Ad Exchange that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. Ad
    # Exchange CTR is calculated as: (Ad Exchange clicks / Ad Exchange
    # impressions).
    AD_EXCHANGE_CTR = 16

    # Total impressions delivered by the Ad Exchange.
    AD_EXCHANGE_IMPRESSIONS = 14

    # Ratio of clicks delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total clicks delivered.
    AD_EXCHANGE_PERCENT_CLICKS = 20

    # Ratio of impressions delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total impressions delivered.
    AD_EXCHANGE_PERCENT_IMPRESSIONS = 19

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue.
    AD_EXCHANGE_PERCENT_REVENUE = 21

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD = 31

    # The total number of times that an Ad Exchange ad is delivered.
    AD_EXCHANGE_RESPONSES_SERVED = 42

    # Revenue generated from the Ad Exchange through line item dynamic
    # allocation, calculated in your network's currency and time zone.
    AD_EXCHANGE_REVENUE = 17

    # The total number of times that an ad request is sent to the ad server
    # including dynamic allocation.
    AD_REQUESTS = 38

    # Active View ad server average time in seconds that specific impressions
    # are reported as being viewable.
    AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 67

    # Total number of impressions delivered by the ad server that were eligible
    # to measure viewability.
    AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 64

    # The number of impressions delivered by the ad server that were sampled,
    # and measurable by active view.
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 63

    # The percentage of impressions delivered by the ad server that were
    # measurable by active view (out of all the ad server impressions sampled
    # for active view).
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 66

    # The number of impressions delivered by the ad server viewed on the user's
    # screen.
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 62

    # The percentage of impressions delivered by the ad server viewed on the
    # user's screen (out of the ad server impressions measurable by active
    # view).
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 65

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server.
    AD_SERVER_AVERAGE_ECPM = 34

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server, excluding CPD value.
    AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD = 10

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown.
    AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS = 262

    # Total clicks served by the Google Ad Manager server. It usually takes
    # about 30 minutes for new clicks to be recorded and added to the total
    # displayed in reporting.
    AD_SERVER_CLICKS = 7

    # CPD revenue earned, calculated in your network's currency, for
    # the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_CPD_REVENUE = 32

    # Ratio of impressions served by the Google Ad Manager server that resulted
    # in users clicking on an ad. The clickthrough rate (CTR) is updated
    # nightly. The ad server CTR is calculated as: (Ad server clicks / Ad
    # server impressions).
    AD_SERVER_CTR = 8

    # Total impressions delivered by the Ad Server.
    AD_SERVER_IMPRESSIONS = 6

    # Ratio of clicks delivered by the Google Ad Manager server in relation to
    # the total clicks delivered.
    AD_SERVER_PERCENT_CLICKS = 12

    # Ratio of impressions delivered by the Google Ad Manager server in
    # relation to the total impressions delivered.
    AD_SERVER_PERCENT_IMPRESSIONS = 11

    # Ratio of revenue generated by the Google Ad Manager server in relation
    # to the total revenue.
    AD_SERVER_PERCENT_REVENUE = 35

    # Ratio of revenue generated by the Google Ad Manager server (excluding
    # CPD) in relation to the total revenue.
    AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13

    # The total number of times that an ad is served by the ad server.
    AD_SERVER_RESPONSES_SERVED = 40

    # All CPM, CPC, and CPD revenue earned, calculated in your network's
    # currency, for the ads delivered by the Google Ad Manager server.
    # Sum of all booked revenue.
    AD_SERVER_REVENUE = 33

    # Revenue (excluding CPD) earned, calculated in your network's currency,
    # for the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_REVENUE_WITHOUT_CPD = 9

    # The number of tracked ads delivered by the ad server.
    AD_SERVER_TRACKED_ADS = 264

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown, before invalid traffic filtrations by
    # Ad Server.
    AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261

    # Total clicks delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_CLICKS = 259

    # Total impressions delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_IMPRESSIONS = 260

    # The number of tracked ads delivered by the ad server before invalid
    # traffic filtrations.
    AD_SERVER_UNFILTERED_TRACKED_ADS = 263

    # eCPM averaged across the Google Ad Manager server, AdSense,
    # and Ad Exchange.
    AVERAGE_ECPM = 37

    # eCPM averaged across the Google Ad Manager server (excluding CPD),
    # AdSense, and Ad Exchange.
    AVERAGE_ECPM_WITHOUT_CPD = 5

    # The number of times a user clicked on an ad.
    CLICKS = 2

    # The total number of times that the code for an ad is served by the ad
    # server including dynamic allocation.
    CODE_SERVED_COUNT = 44

    # For standard ads, your ad clickthrough rate (CTR) is the number of ad
    # clicks divided by the number of individual ad impressions expressed as a
    # fraction. Ad CTR = Clicks / Ad impressions.
    CTR = 3

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129

    # The number of auction impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131

    # The number of impressions sold by Google in partner sales.
    GOOGLE_SOLD_IMPRESSIONS = 130

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127

    # The number of reservation impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126

    # Total impressions from the Google Ad Manager server, AdSense,
    # Ad Exchange, and yield group partners.
    IMPRESSIONS = 1

    # The number of filled pod requests (filled by partner or Google) in
    # partner sales.
    PARTNER_SALES_FILLED_POD_REQUESTS = 135

    # The percent of filled requests to total ad requests in
    # partner sales.
    PARTNER_SALES_FILL_RATE = 136

    # The percent of partner filled requests to total ad requests
    # in partner sales.
    PARTNER_SALES_PARTNER_MATCH_RATE = 137

    # The number of queries eligible for partner sales.
    PARTNER_SALES_QUERIES = 132

    # The number of partner unfilled impressions in partner sales.
    # If a pod request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNFILLED_IMPRESSIONS = 133

    # The number of partner unmatched queries in partner sales.
    # If an ad request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNMATCHED_QUERIES = 134

    # The number of code served sold by partner in partner sales.
    PARTNER_SOLD_CODE_SERVED = 125

    # The number of coviewed impressions sold by partner in partner sales.
    PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124

    # The number of impressions sold by partner in partner sales.
    PARTNER_SOLD_IMPRESSIONS = 123

    # The total number of ad requests eligible for programmatic inventory,
    # including Programmatic Guaranteed, Preferred Deals, backfill, and open
    # auction.
    PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177

    # The number of programmatic responses served divided by the number of
    # programmatic eligible ad requests. Includes Ad Exchange, Open Bidding,
    # and Preferred Deals.
    PROGRAMMATIC_MATCH_RATE = 178

    # Total number of ad responses served from programmatic demand sources.
    # Includes Ad Exchange, Open Bidding, and Preferred Deals.
    #
    # Differs from AD_EXCHANGE_RESPONSES_SERVED, which doesn't include Open
    # Bidding ad requests.
    PROGRAMMATIC_RESPONSES_SERVED = 176

    # The total number of times that an ad is served by the ad server including
    # dynamic allocation.
    RESPONSES_SERVED = 39

    # Total amount of CPM, CPC, and CPD revenue based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE = 36

    # Total amount of revenue (excluding CPD) based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE_WITHOUT_CPD = 4

    # The average latency in milliseconds across all server-side unwrapping
    # callout requests. There is no special handling for error or timeout
    # responses. This reflects the entire chain of a parent callout request,
    # which may result in multiple child callouts. This metric is not sliced by
    # child callout dimensions.
    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434

    # The total number of server-side unwrapping callout requests.
    SERVER_SIDE_UNWRAPPING_CALLOUTS = 435

    # The total number of server-side unwrapping callouts that returned an
    # empty response. Timeouts are not considered empty responses.
    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436

    # The total number of server-side unwrapping callouts that returned an
    # error response. Timeouts and empty responses are not considered errors.
    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437

    # The total number of successfully unwrapped, non-empty server-side
    # wrapping callouts. Successful unwrapping does not indicate that the
    # resulting creative was served.
    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438

    # The total number of server-side unwrapping callouts that timed out before
    # returning a response.
    SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439

    # The total number of missed impressions due to the ad servers' inability
    # to find ads to serve including dynamic allocation.
    UNFILLED_IMPRESSIONS = 45

    # The total number of times that an ad is not returned by the ad server.
    UNMATCHED_AD_REQUESTS = 43

    # Number of times an Offerwall message was shown to users.
    USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121

    # The number of messages where the user gained an entitlement.
    USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122

    # The number of user interactions with a video, on average, such as pause,
    # full screen, mute, etc.
    VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92

    # The number of times a user collapses a video, either to its original size
    # or to a different size.
    VIDEO_INTERACTION_COLLAPSES = 93

    # The number of times a user expands a video.
    VIDEO_INTERACTION_EXPANDS = 95

    # The number of times ad clip played in full screen mode.
    VIDEO_INTERACTION_FULL_SCREENS = 96

    # The number of times video player was in mute state during play of ad
    # clip.
    VIDEO_INTERACTION_MUTES = 97

    # The number of times user paused ad clip.
    VIDEO_INTERACTION_PAUSES = 98

    # The number of times the user unpaused the video.
    VIDEO_INTERACTION_RESUMES = 99

    # The number of times a user rewinds the video.
    VIDEO_INTERACTION_REWINDS = 100

    # The number of times a user unmutes the video.
    VIDEO_INTERACTION_UNMUTES = 101

    # The number of times a skippable video is skipped.
    VIDEO_INTERACTION_VIDEO_SKIPS = 102

    # The number of total creative serves in video realtime reporting.
    VIDEO_REAL_TIME_CREATIVE_SERVES = 139

    # The number of errors of type 100 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_100_COUNT = 143

    # The number of errors of type 101 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_101_COUNT = 144

    # The number of errors of type 102 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_102_COUNT = 145

    # The number of errors of type 200 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_200_COUNT = 146

    # The number of errors of type 201 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_201_COUNT = 147

    # The number of errors of type 202 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_202_COUNT = 148

    # The number of errors of type 203 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_203_COUNT = 149

    # The number of errors of type 300 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_300_COUNT = 150

    # The number of errors of type 301 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_301_COUNT = 151

    # The number of errors of type 302 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_302_COUNT = 152

    # The number of errors of type 303 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_303_COUNT = 153

    # The number of errors of type 400 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_400_COUNT = 154

    # The number of errors of type 401 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_401_COUNT = 155

    # The number of errors of type 402 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_402_COUNT = 156

    # The number of errors of type 403 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_403_COUNT = 157

    # The number of errors of type 405 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_405_COUNT = 158

    # The number of errors of type 406 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_406_COUNT = 159

    # The number of errors of type 407 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_407_COUNT = 160

    # The number of errors of type 408 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_408_COUNT = 161

    # The number of errors of type 409 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_409_COUNT = 162

    # The number of errors of type 410 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_410_COUNT = 163

    # The number of errors of type 500 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_500_COUNT = 164

    # The number of errors of type 501 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_501_COUNT = 165

    # The number of errors of type 502 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_502_COUNT = 166

    # The number of errors of type 503 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_503_COUNT = 167

    # The number of errors of type 600 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_600_COUNT = 168

    # The number of errors of type 601 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_601_COUNT = 169

    # The number of errors of type 602 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_602_COUNT = 170

    # The number of errors of type 603 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_603_COUNT = 171

    # The number of errors of type 604 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_604_COUNT = 172

    # The number of errors of type 900 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_900_COUNT = 173

    # The number of errors of type 901 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_901_COUNT = 174

    # The number of total impressions in video realtime reporting.
    VIDEO_REAL_TIME_IMPRESSIONS = 138

    # The number of matched queries in video realtime reporting.
    VIDEO_REAL_TIME_MATCHED_QUERIES = 140

    # The number of all errors in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175

    # The number of total queries in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_QUERIES = 142

    # The number of unmatched queries in video realtime reporting.
    VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141

    # Number of times that the publisher specified a video ad played
    # automatically.
    VIDEO_VIEWERSHIP_AUTO_PLAYS = 103

    # Average percentage of the video watched by users.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104

    # Average time(seconds) users watched the video.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105

    # Number of times that the publisher specified a video ad was clicked to
    # play.
    VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106

    # The number of times the video played to completion.
    VIDEO_VIEWERSHIP_COMPLETES = 107

    # Percentage of times the video played to the end.
    VIDEO_VIEWERSHIP_COMPLETION_RATE = 108

    # The number of engaged views: ad is viewed to completion or for 30s,
    # whichever comes first.
    VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109

    # The number of times the video played to 25% of its length.
    VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110

    # The number of times the video reached its midpoint during play.
    VIDEO_VIEWERSHIP_MIDPOINTS = 111

    # The number of times a skip button is shown in video.
    VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112

    # The number of impressions where the video was played.
    VIDEO_VIEWERSHIP_STARTS = 113

    # The number of times the video played to 75% of its length.
    VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114

    # The number of times an error occurred, such as a VAST redirect error, a
    # video playback error, or an invalid response error.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115

    # The percentage of video error count.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94

    # Duration of the video creative.
    VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116

    # View-through rate represented as a percentage.
    VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117

    # Number of winning bids received from Open Bidding buyers, even when the
    # winning bid is placed at the end of a mediation for mobile apps chain.
    YIELD_GROUP_AUCTIONS_WON = 80

    # Number of bids received from Open Bidding buyers, regardless of whether
    # the returned bid competes in an auction.
    YIELD_GROUP_BIDS = 81

    # Number of bids received from Open Bidding buyers that competed in
    # the auction.
    YIELD_GROUP_BIDS_IN_AUCTION = 82

    # Number of times a yield partner is asked to return bid to fill
    # a yield group request.
    YIELD_GROUP_CALLOUTS = 83

    # The estimated net rate for yield groups or individual
    # yield group partners.
    YIELD_GROUP_ESTIMATED_CPM = 88

    # Total net revenue earned by a yield group, based upon the yield group
    # estimated CPM and yield group impressions recorded.
    YIELD_GROUP_ESTIMATED_REVENUE = 87

    # Number of matched yield group requests where a yield partner delivered
    # their ad to publisher inventory.
    YIELD_GROUP_IMPRESSIONS = 85

    # Yield group Mediation fill rate indicating how often a network
    # fills an ad request.
    YIELD_GROUP_MEDIATION_FILL_RATE = 89

    # Total requests where a Mediation chain was served.
    YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86

    # The number of mediation chain passback across all channels.
    YIELD_GROUP_MEDIATION_PASSBACKS = 118

    # Revenue per thousand impressions based on data collected by Ad Manager
    # from third-party ad network reports.
    YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90

    # Number of times a yield group buyer successfully returned a bid in
    # response to a yield group callout.
    YIELD_GROUP_SUCCESSFUL_RESPONSES = 84
  end

  # Possible metric value types to add.
  module MetricValueType
    # The values for the primary date_range.
    PRIMARY = 0

    # Each metrics' percent of the total for the primary date_range.
    PRIMARY_PERCENT_OF_TOTAL = 1

    # The values for the comparison_date_range.
    COMPARISON = 2

    # Each metrics' percent of the total for the comparison_date_range.
    COMPARISON_PERCENT_OF_TOTAL = 3

    # The absolute change between the primary and comparison date ranges.
    ABSOLUTE_CHANGE = 4

    # The relative change between the primary and comparison date ranges.
    RELATIVE_CHANGE = 5
  end

  # Supported report types.
  module ReportType
    # Default value. This value is unused.
    REPORT_TYPE_UNSPECIFIED = 0

    # Historical.
    HISTORICAL = 1
  end

  # The visibility of a report.
  module Visibility
    # Default value. Reports with hidden visibility will not appear in the Ad
    # Manager UI.
    HIDDEN = 0

    # Reports with draft visibility will appear in the Ad Manager UI only if
    # the user has configured the UI to show them.
    DRAFT = 1

    # Reports with saved visibility will appear in the Ad Manager UI by
    # default.
    SAVED = 2
  end

  # The source to determine the time zone for the report.
  module TimeZoneSource
    # Unspecified default value.
    TIME_ZONE_SOURCE_UNSPECIFIED = 0

    # Use the publisher's time zone in network settings.
    PUBLISHER = 1

    # Use the time zone of the ad exchange.
    # Only compatible with Ad Exchange dimensions and metrics.
    AD_EXCHANGE = 2

    # Use UTC time zone.
    # Only compatible with Revenue Verification reports.
    UTC = 3

    # Use the time zone provided in the ReportDefinition.time_zone field.
    # Has limited dimension and metric compatibility compared with PUBLISHER,
    # and reports may take longer to run since the dates are dynamically
    # calculated at request time.
    PROVIDED = 4
  end
end

#schedule_options::Google::Ads::AdManager::V1::ScheduleOptions

Returns Optional. The schedule options of this report.

Returns:



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
# File 'proto_docs/google/ads/admanager/v1/report_messages.rb', line 55

class Report
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a single value in a report.
  # @!attribute [rw] int_value
  #   @return [::Integer]
  #     For integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] double_value
  #   @return [::Float]
  #     For double values.
  #
  #     Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_value
  #   @return [::String]
  #     For string values.
  #
  #     Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bool_value
  #   @return [::Boolean]
  #     For boolean values.
  #
  #     Note: The following fields are mutually exclusive: `bool_value`, `int_value`, `double_value`, `string_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] int_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::IntList]
  #     For lists of integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::StringList]
  #     For lists of string values.
  #
  #     Note: The following fields are mutually exclusive: `string_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bytes_value
  #   @return [::String]
  #     For bytes values.
  #
  #     Note: The following fields are mutually exclusive: `bytes_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Value
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A list of integer values.
    # @!attribute [rw] values
    #   @return [::Array<::Integer>]
    #     The values
    class IntList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of string values.
    # @!attribute [rw] values
    #   @return [::Array<::String>]
    #     The values
    class StringList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Represents a sorting in a report.
  # @!attribute [rw] field
  #   @return [::Google::Ads::AdManager::V1::Report::Field]
  #     Required. A field (dimension or metric) to sort by.
  # @!attribute [rw] descending
  #   @return [::Boolean]
  #     Optional. The sort order. If true the sort will be descending.
  # @!attribute [rw] slice
  #   @return [::Google::Ads::AdManager::V1::Report::Slice]
  #     Optional. Use to sort on a specific slice of data.
  # @!attribute [rw] time_period_index
  #   @return [::Integer]
  #     Optional. When using time period columns, use this to sort on a specific
  #     column.
  # @!attribute [rw] metric_value_type
  #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
  #     Optional. Use to specify which metric value type to sort on. Defaults to
  #     PRIMARY.
  class Sort
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A table containing report data including dimension and metric values.
  class DataTable
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A row of report data.
    # @!attribute [rw] dimension_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     The order of the dimension values is the same as the order of the
    #     dimensions specified in the request.
    # @!attribute [rw] metric_value_groups
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::DataTable::MetricValueGroup>]
    #     The length of the metric_value_groups
    #     field will be equal to the length of the date_ranges field in the
    #     fetch response. The metric_value_groups field is
    #     ordered such that each index corresponds to the date_range at the same
    #     index. For example, given date_ranges [x, y], metric_value_groups will
    #     have a length of two. The first entry in metric_value_groups represents
    #     the metrics for date x and the second entry in metric_value_groups
    #     represents the metrics for date y.
    class Row
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Contains all metric values requested for a single date range and set of
    # column dimension values (returned in the columns field of the response).
    # The order of the metrics in each field corresponds to the order of the
    # metrics specified in the request.
    # @!attribute [rw] primary_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY MetricValueType.
    # @!attribute [rw] primary_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] comparison_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON MetricValueType.
    # @!attribute [rw] comparison_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] absolute_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the ABSOLUTE_CHANGE MetricValueType.
    # @!attribute [rw] relative_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the RELATIVE_CHANGE MetricValueType.
    # @!attribute [rw] flag_values
    #   @return [::Array<::Boolean>]
    #     If true, the flag's conditions are met. If false, the flag's
    #     conditions are not met. flag_values has the same length as
    #     flags and index i of flag_values represents the flag at index i
    #     of flags.
    class MetricValueGroup
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # A dimension or a metric in a report.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     The dimension this field represents.
  #
  #     Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] metric
  #   @return [::Google::Ads::AdManager::V1::Report::Metric]
  #     The metric this field represents.
  #
  #     Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Field
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Use to specify a slice of data.
  #
  # For example, in a report, to focus on just data from the US, specify
  # `COUNTRY_NAME` for dimension and value: `"United States"`.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     Required. The dimension to slice on.
  # @!attribute [rw] value
  #   @return [::Google::Ads::AdManager::V1::Report::Value]
  #     Required. The value of the dimension.
  class Slice
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A filter over one or more fields.
  # @!attribute [rw] field_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FieldFilter]
  #     A filter on a single field.
  #
  #     Note: The following fields are mutually exclusive: `field_filter`, `not_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] not_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter]
  #     A filter whose result is negated.
  #
  #     Note: The following fields are mutually exclusive: `not_filter`, `field_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] and_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are AND-ed.
  #
  #     Note: The following fields are mutually exclusive: `and_filter`, `field_filter`, `not_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] or_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are OR-ed.
  #
  #     Note: The following fields are mutually exclusive: `or_filter`, `field_filter`, `not_filter`, `and_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Filter
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A filter on a specific field.
    # @!attribute [rw] field
    #   @return [::Google::Ads::AdManager::V1::Report::Field]
    #     Required. The field to filter on.
    # @!attribute [rw] operation
    #   @return [::Google::Ads::AdManager::V1::Report::Filter::Operation]
    #     Required. The operation of this filter.
    # @!attribute [rw] values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Required. Values to filter to.
    # @!attribute [rw] slice
    #   @return [::Google::Ads::AdManager::V1::Report::Slice]
    #     Optional. Use to filter on a specific slice of data.
    # @!attribute [rw] time_period_index
    #   @return [::Integer]
    #     Optional. When using time period columns, use this to filter on a
    #     specific column.
    # @!attribute [rw] metric_value_type
    #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
    #     Optional. Use to specify which metric value type to filter on. Defaults
    #     to PRIMARY.
    class FieldFilter
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of filters.
    # @!attribute [rw] filters
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
    #     Required. A list of filters.
    class FilterList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Supported filter operations.
    module Operation
      # For scalar operands, checks if the operand is in the set of provided
      # filter values.
      #
      # For list operands, checks if any element in the operand is in the set
      # of provided filter values.
      #
      # Default value.
      IN = 0

      # For scalar operands, checks that the operand is not in the set of
      # provided filter values.
      #
      # For list operands, checks that none of the elements in the operand
      # is in the set of provided filter values.
      NOT_IN = 1

      # For scalar string operands, checks if the operand contains any of the
      # provided filter substrings.
      #
      # For string list operands, checks if any string in the operand contains
      # any of the provided filter substrings.
      CONTAINS = 2

      # For scalar string operands, checks that the operand contains none of
      # the provided filter substrings.
      #
      # For string list operands, checks that none of the strings in the
      # operand contain none of the provided filter substrings.
      NOT_CONTAINS = 3

      # Operand is less than the provided filter value.
      LESS_THAN = 4

      # Operand is less than or equal to provided filter value.
      LESS_THAN_EQUALS = 5

      # Operand is greater than provided filter value.
      GREATER_THAN = 6

      # Operand is greater than or equal to provided filter value.
      GREATER_THAN_EQUALS = 7

      # Operand is between provided filter values.
      BETWEEN = 8

      # Operand matches against a regex or set of regexes (one must match)
      MATCHES = 9

      # Operand negative matches against a regex or set of regexes (none must
      # match)
      NOT_MATCHES = 10
    end
  end

  # A flag for a report. Flags are used show if certain thresholds are met.
  # Result rows that match the filter will have the corresponding
  # [MetricValueGroup.flagValues][MetricValueGroup] index set to true.
  # For more information about flags see:
  # https://support.google.com/admanager/answer/15079975
  # @!attribute [rw] filters
  #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
  #     Required. Filters to apply for the flag.
  # @!attribute [rw] name
  #   @return [::String]
  #     Optional. Name of the flag.
  #     The flag names RED, YELLOW, GREEN, BLUE, PURPLE, and GREY correspond to
  #     the colored flags that appear in the UI. The UI will not display flags
  #     with other names, but they are available for use by API clients.
  class Flag
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A date range for a report.
  # @!attribute [rw] fixed
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::FixedDateRange]
  #     A fixed date range.
  #
  #     Note: The following fields are mutually exclusive: `fixed`, `relative`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] relative
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::RelativeDateRange]
  #     A relative date range.
  #
  #     Note: The following fields are mutually exclusive: `relative`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class DateRange
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A date range between two fixed dates (inclusive of end date).
    # @!attribute [rw] start_date
    #   @return [::Google::Type::Date]
    #     Required. The start date of this date range.
    # @!attribute [rw] end_date
    #   @return [::Google::Type::Date]
    #     Required. The end date (inclusive) of this date range.
    class FixedDateRange
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Options for relative date ranges.
    module RelativeDateRange
      # Default value. This value is unused.
      RELATIVE_DATE_RANGE_UNSPECIFIED = 0

      # The date the report is run.
      TODAY = 1

      # The date a day before the date that the report is run.
      YESTERDAY = 2

      # The full week in which this report is run. Could include dates in
      # the future.
      THIS_WEEK = 3

      # From the beginning of the calendar week (Monday to Sunday) in which the
      # up to and including the day the report is run.
      THIS_WEEK_TO_DATE = 29

      # The full month in which this report is run. Could include dates in
      # the future.
      THIS_MONTH = 4

      # From the beginning of the calendar month in which the report is run, to
      # up to and including the day the report is run.
      THIS_MONTH_TO_DATE = 26

      # The full quarter in which this report is run. Could include dates
      # in the future.
      THIS_QUARTER = 5

      # From the beginning of the calendar quarter in which the report is run,
      # up to and including the day the report is run.
      THIS_QUARTER_TO_DATE = 27

      # The full year in which this report is run. Could include dates in
      # the future.
      THIS_YEAR = 6

      # From the beginning of the calendar year in which the report is run, to
      # up to and including the day the report is run.
      THIS_YEAR_TO_DATE = 28

      # The entire previous calendar week, Monday to Sunday (inclusive),
      # preceding the calendar week the report is run.
      LAST_WEEK = 7

      # The entire previous calendar month preceding the calendar month the
      # report is run.
      LAST_MONTH = 8

      # The entire previous calendar quarter preceding the calendar quarter the
      # report is run.
      LAST_QUARTER = 9

      # The entire previous calendar year preceding the calendar year the
      # report is run.
      LAST_YEAR = 10

      # The 7 days preceding the day the report is run.
      LAST_7_DAYS = 11

      # The 30 days preceding the day the report is run.
      LAST_30_DAYS = 12

      # The 60 days preceding the day the report is run.
      LAST_60_DAYS = 13

      # The 90 days preceding the day the report is run.
      LAST_90_DAYS = 14

      # The 180 days preceding the day the report is run.
      LAST_180_DAYS = 15

      # The 360 days preceding the day the report is run.
      LAST_360_DAYS = 16

      # The 365 days preceding the day the report is run.
      LAST_365_DAYS = 17

      # The entire previous 3 calendar months preceding the calendar month the
      # report is run.
      LAST_3_MONTHS = 18

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_6_MONTHS = 19

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_12_MONTHS = 20

      # From 3 years before the report is run, to the day before the report is
      # run, inclusive.
      ALL_AVAILABLE = 21

      # Only valid when used in the comparison_date_range field. The complete
      # period preceding the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange of N days, this will
      # be a period of N days where the end date is the date preceding the
      # start date of the date_range.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame preceding the date_range. In the case
      # where the date_range does not capture the full period because a report
      # is run in the middle of that period, this will still be the full
      # preceding period. For example, if date_range is THIS_WEEK, but the
      # report is run on a Wednesday, THIS_WEEK will be Monday - Wednesday, but
      # PREVIOUS_PERIOD will be Monday - Sunday.
      PREVIOUS_PERIOD = 22

      # Only valid when used in the comparison_date_range field. The period
      # starting 1 year prior to the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange, this will be a date
      # range starting 1 year prior to the date_range start date and ending 1
      # year prior to the date_range end date.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame exactly 1 year prior to the date_range.
      # In the case where the date_range does not capture the full period
      # because a report is run in the middle of that period, this will still
      # be the full period 1 year prior. For example, if date range is
      # THIS_WEEK, but the report is run on a Wednesday, THIS_WEEK will be
      # Monday - Wednesday, but SAME_PERIOD_PREVIOUS_YEAR will be Monday -
      # Sunday.
      SAME_PERIOD_PREVIOUS_YEAR = 24
    end
  end

  # Valid time period columns.
  module TimePeriodColumn
    # Default value. Report will have no time period column.
    TIME_PERIOD_COLUMN_UNSPECIFIED = 0

    # A column for each date in the report.
    TIME_PERIOD_COLUMN_DATE = 1

    # A column for each week in the report.
    TIME_PERIOD_COLUMN_WEEK = 2

    # A column for each month in the report.
    TIME_PERIOD_COLUMN_MONTH = 3

    # A column for each quarter in the report.
    TIME_PERIOD_COLUMN_QUARTER = 4
  end

  # Reporting dimensions.
  module Dimension
    # Default value. This value is unused.
    DIMENSION_UNSPECIFIED = 0

    # The domain name of the advertiser.
    ADVERTISER_DOMAIN_NAME = 242

    # The ID used in an external system for advertiser identification
    ADVERTISER_EXTERNAL_ID = 228

    # The ID of an advertiser company assigned to an order
    ADVERTISER_ID = 131

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABELS = 230

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABEL_IDS = 229

    # The name of an advertiser company assigned to an order
    ADVERTISER_NAME = 132

    # The name of the contact associated with an advertiser company
    ADVERTISER_PRIMARY_CONTACT = 227

    # Shows an ENUM value describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION = 390

    # Shows a localized string describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION_NAME = 391

    # The code of the ad unit where the ad was requested.
    AD_UNIT_CODE = 64

    # The code of the first level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_1 = 65

    # The code of the tenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_10 = 74

    # The code of the eleventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_11 = 75

    # The code of the twelfth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_12 = 76

    # The code of the thirteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_13 = 77

    # The code of the fourteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_14 = 78

    # The code of the fifteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_15 = 79

    # The code of the sixteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_16 = 80

    # The code of the second level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_2 = 66

    # The code of the third level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_3 = 67

    # The code of the fourth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_4 = 68

    # The code of the fifth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_5 = 69

    # The code of the sixth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_6 = 70

    # The code of the seventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_7 = 71

    # The code of the eighth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_8 = 72

    # The code of the ninth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_9 = 73

    # The depth of the ad unit's hierarchy
    AD_UNIT_DEPTH = 101

    # The ID of the ad unit where the ad was requested.
    AD_UNIT_ID = 25

    # The full hierarchy of ad unit IDs where the ad was requested, from
    # root to leaf, excluding the root ad unit ID.
    AD_UNIT_ID_ALL_LEVEL = 27

    # The first level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_1 = 30

    # The tenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_10 = 48

    # The eleventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_11 = 50

    # The twelfth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_12 = 52

    # The thirteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_13 = 54

    # The fourteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_14 = 56

    # The fifteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_15 = 58

    # The sixteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_16 = 60

    # The second level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_2 = 32

    # The third level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_3 = 34

    # The fourth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_4 = 36

    # The fifth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_5 = 38

    # The sixth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_6 = 40

    # The seventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_7 = 42

    # The eighth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_8 = 44

    # The ninth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_9 = 46

    # The top-level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_TOP_LEVEL = 142

    # The name of the ad unit where the ad was requested.
    AD_UNIT_NAME = 26

    # The full hierarchy of ad unit names where the ad was requested, from
    # root to leaf, excluding the root ad unit name.
    AD_UNIT_NAME_ALL_LEVEL = 29

    # The first level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_1 = 31

    # The tenth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_10 = 49

    # The eleventh level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_11 = 51

    # The twelfth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_12 = 53

    # The thirteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_13 = 55

    # The fourteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_14 = 57

    # The fifteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_15 = 59

    # The sixteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_16 = 61

    # The second level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_2 = 33

    # The third level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_3 = 35

    # The fourth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_4 = 37

    # The fifth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_5 = 39

    # The sixth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_6 = 41

    # The seventh level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_7 = 43

    # The eighth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_8 = 45

    # The ninth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_9 = 47

    # The top-level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_TOP_LEVEL = 143

    # The reward amount of the ad unit where the ad was requested.
    AD_UNIT_REWARD_AMOUNT = 63

    # The reward type of the ad unit where the ad was requested.
    AD_UNIT_REWARD_TYPE = 62

    # The status of the ad unit
    AD_UNIT_STATUS = 206

    # The name of the status of the ad unit
    AD_UNIT_STATUS_NAME = 207

    # The app version.
    APP_VERSION = 392

    # The ID used in an external system for advertiser identification
    BACKFILL_ADVERTISER_EXTERNAL_ID = 349

    # The ID of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_ID = 346

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABELS = 351

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABEL_IDS = 350

    # The name of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_NAME = 347

    # The name of the contact associated with an advertiser company
    BACKFILL_ADVERTISER_PRIMARY_CONTACT = 348

    # Enum value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE = 378

    # Localized string value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE_NAME = 379

    # Represents the click-through URL of a Backfill creative
    BACKFILL_CREATIVE_CLICK_THROUGH_URL = 376

    # The ID of a Backfill creative
    BACKFILL_CREATIVE_ID = 370

    # Backfill creative name
    BACKFILL_CREATIVE_NAME = 371

    # Third party vendor name of a Backfill creative
    BACKFILL_CREATIVE_THIRD_PARTY_VENDOR = 377

    # Enum value of Backfill creative type
    BACKFILL_CREATIVE_TYPE = 374

    # Localized string name of Backfill creative type
    BACKFILL_CREATIVE_TYPE_NAME = 375

    # Whether a Backfill line item is archived.
    BACKFILL_LINE_ITEM_ARCHIVED = 278

    # Backfill line item comanion delivery option ENUM value.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION = 258

    # Localized Backfill line item comanion delivery option name.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 259

    # The computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS = 296

    # The localized name of the computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME = 297

    # The contracted units bought for the Backfill line item.
    BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY = 280

    # The cost per unit of the Backfill line item.
    BACKFILL_LINE_ITEM_COST_PER_UNIT = 272

    # Backfill line item cost type ENUM value.
    BACKFILL_LINE_ITEM_COST_TYPE = 264

    # Localized Backfill line item cost type name.
    BACKFILL_LINE_ITEM_COST_TYPE_NAME = 265

    # Represent the end date of a Backfill creative associated with a Backfill
    # line item
    BACKFILL_LINE_ITEM_CREATIVE_END_DATE = 381

    # The creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE = 290

    # The localized name of the creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 291

    # Represent the start date of a Backfill creative associated with a
    # Backfill line item
    BACKFILL_LINE_ITEM_CREATIVE_START_DATE = 380

    # The 3 letter currency code of the Backfill line item
    BACKFILL_LINE_ITEM_CURRENCY_CODE = 288

    # The progress made for the delivery of the Backfill line item.
    BACKFILL_LINE_ITEM_DELIVERY_INDICATOR = 274

    # The delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE = 292

    # The localized name of the delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 293

    # The discount of the BackfillLineItem in whole units in the
    # BackfillLineItem's currency code, or if unspecified the Network's
    # currency code.
    BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE = 294

    # The discount of the BackfillLineItem in percentage.
    BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE = 295

    # The end date of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE = 267

    # The end date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE_TIME = 269

    # The ENUM value of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE = 302

    # The localized name of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME = 257

    # The deal ID of the Backfill line item. Set for Programmatic Direct
    # campaigns.
    BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID = 285

    # The external ID of the Backfill line item.
    BACKFILL_LINE_ITEM_EXTERNAL_ID = 273

    # The frequency cap of the Backfill line item (descriptive string).
    BACKFILL_LINE_ITEM_FREQUENCY_CAP = 303

    # Backfill line item ID.
    BACKFILL_LINE_ITEM_ID = 298

    # The application that last modified the Backfill line item.
    BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP = 289

    # The total number of clicks delivered of the lifetime of the Backfill line
    # item.
    BACKFILL_LINE_ITEM_LIFETIME_CLICKS = 283

    # The total number of impressions delivered over the lifetime of the
    # Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS = 282

    # The total number of viewable impressions delivered over the lifetime of
    # the Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 284

    # Whether or not the Backfill line item is Makegood. Makegood refers to
    # free inventory offered to buyers to compensate for mistakes or
    # under-delivery in the original campaigns.
    BACKFILL_LINE_ITEM_MAKEGOOD = 276

    # Backfill line item name.
    BACKFILL_LINE_ITEM_NAME = 299

    # The cost of booking for the Backfill line item (non-CPD).
    BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE = 286

    # Whether a Backfill line item is eligible for opitimization.
    BACKFILL_LINE_ITEM_OPTIMIZABLE = 277

    # Goal type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE = 262

    # Localized goal type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 263

    # Unit type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 260

    # Localized unit type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 261

    # The priority of this Backfill line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Backfill line item.
    BACKFILL_LINE_ITEM_PRIORITY = 266

    # ENUM value describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS = 306

    # Localized string describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME = 307

    # The start date of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE = 268

    # The start date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE_TIME = 270

    # Backfill line item type ENUM value.
    BACKFILL_LINE_ITEM_TYPE = 300

    # Localized Backfill line item type name.
    BACKFILL_LINE_ITEM_TYPE_NAME = 301

    # Whether the Backfill line item end time and end date is set to
    # effectively never end.
    BACKFILL_LINE_ITEM_UNLIMITED_END = 271

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT = 275

    # The web property code used for dynamic allocation Backfill line items.
    BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE = 287

    # The ID of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_ID = 372

    # Name of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_NAME = 373

    # Backfill order agency.
    BACKFILL_ORDER_AGENCY = 313

    # Backfill order agency ID.
    BACKFILL_ORDER_AGENCY_ID = 314

    # Backfill order booked CPC.
    BACKFILL_ORDER_BOOKED_CPC = 315

    # Backfill order booked CPM.
    BACKFILL_ORDER_BOOKED_CPM = 316

    # Backfill order delivery status ENUM value.
    BACKFILL_ORDER_DELIVERY_STATUS = 340

    # Backfill order delivery status localized name.
    BACKFILL_ORDER_DELIVERY_STATUS_NAME = 341

    # Backfill order end date.
    BACKFILL_ORDER_END_DATE = 317

    # Backfill order end date and time.
    BACKFILL_ORDER_END_DATE_TIME = 319

    # Backfill order external ID.
    BACKFILL_ORDER_EXTERNAL_ID = 320

    # Backfill order id.
    BACKFILL_ORDER_ID = 338

    # Backfill order labels.
    BACKFILL_ORDER_LABELS = 334

    # Backfill order labels IDs.
    BACKFILL_ORDER_LABEL_IDS = 335

    # Backfill order lifetime clicks.
    BACKFILL_ORDER_LIFETIME_CLICKS = 322

    # Backfill order lifetime impressions.
    BACKFILL_ORDER_LIFETIME_IMPRESSIONS = 323

    # Backfill order name.
    BACKFILL_ORDER_NAME = 339

    # Backfill order PO number.
    BACKFILL_ORDER_PO_NUMBER = 324

    # Whether the Backfill order is programmatic.
    BACKFILL_ORDER_PROGRAMMATIC = 321

    # Backfill order sales person.
    BACKFILL_ORDER_SALESPERSON = 325

    # Backfill order secondary sales people.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE = 329

    # Backfill order secondary sales people ID.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID = 328

    # Backfill order secondary traffickers.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS = 331

    # Backfill order secondary traffickers ID.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID = 330

    # Backfill order start date.
    BACKFILL_ORDER_START_DATE = 332

    # Backfill order start date and time.
    BACKFILL_ORDER_START_DATE_TIME = 333

    # Backfill order trafficker.
    BACKFILL_ORDER_TRAFFICKER = 326

    # Backfill order trafficker ID.
    BACKFILL_ORDER_TRAFFICKER_ID = 327

    # Whether the Backfill order end time and end date is set to effectively
    # never end.
    BACKFILL_ORDER_UNLIMITED_END = 318

    # The ID of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_ID = 336

    # The name of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_NAME = 337

    # The amount of information about the Publisher's page sent to the buyer
    # who purchased the impressions.
    BRANDING_TYPE = 383

    # The localized version of branding type, the amount of information about
    # the Publisher's page sent to the buyer who purchased the impressions.
    BRANDING_TYPE_NAME = 384

    # Browser category.
    BROWSER_CATEGORY = 119

    # Browser category name.
    BROWSER_CATEGORY_NAME = 120

    # The ID of the browser.
    BROWSER_ID = 235

    # The name of the browser.
    BROWSER_NAME = 236

    # Mobile carrier ID.
    CARRIER_ID = 369

    # Name of the mobile carrier.
    CARRIER_NAME = 368

    # The ID of an advertiser, classified by Google, associated with a creative
    # transacted
    CLASSIFIED_ADVERTISER_ID = 133

    # The name of an advertiser, classified by Google, associated with a
    # creative transacted
    CLASSIFIED_ADVERTISER_NAME = 134

    # ID of the brand, as classified by Google,
    CLASSIFIED_BRAND_ID = 243

    # Name of the brand, as classified by Google,
    CLASSIFIED_BRAND_NAME = 244

    # ID of the video content served.
    CONTENT_ID = 246

    # Name of the video content served.
    CONTENT_NAME = 247

    # The criteria ID of the country in which the ad served.
    COUNTRY_ID = 11

    # The name of the country in which the ad served.
    COUNTRY_NAME = 12

    # Enum value of creative billing type
    CREATIVE_BILLING_TYPE = 366

    # Localized string value of creative billing type
    CREATIVE_BILLING_TYPE_NAME = 367

    # Represents the click-through URL of a creative
    CREATIVE_CLICK_THROUGH_URL = 174

    # The ID of a creative
    CREATIVE_ID = 138

    # Creative name
    CREATIVE_NAME = 139

    # Creative technology ENUM
    CREATIVE_TECHNOLOGY = 148

    # Creative technology locallized name
    CREATIVE_TECHNOLOGY_NAME = 149

    # Third party vendor name of a creative
    CREATIVE_THIRD_PARTY_VENDOR = 361

    # Enum value of creative type
    CREATIVE_TYPE = 344

    # Localized string name of creative type
    CREATIVE_TYPE_NAME = 345

    # Breaks down reporting data by date.
    DATE = 3

    # Breaks down reporting data by day of the week. Monday is 1 and 7 is
    # Sunday.
    DAY_OF_WEEK = 4

    # Demand channel.
    DEMAND_CHANNEL = 9

    # Demand channel name.
    DEMAND_CHANNEL_NAME = 10

    # Demand subchannel.
    DEMAND_SUBCHANNEL = 22

    # Demand subchannel name.
    DEMAND_SUBCHANNEL_NAME = 23

    # The device on which an ad was served.
    DEVICE = 226

    # The device category to which an ad is being targeted.
    DEVICE_CATEGORY = 15

    # The name of the category of device (smartphone, feature phone, tablet, or
    # desktop) to which an ad is being targeted.
    DEVICE_CATEGORY_NAME = 16

    # The localized name of the device on which an ad was served.
    DEVICE_NAME = 225

    # ID of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_ID = 185

    # Name of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186

    # The ID of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_ID = 248

    # The name of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_NAME = 249

    # Breaks down reporting data by hour in one day.
    HOUR = 100

    # The interaction type of an ad.
    INTERACTION_TYPE = 223

    # The localized name of the interaction type of an ad.
    INTERACTION_TYPE_NAME = 224

    # Inventory format.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT = 17

    # Inventory format name.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT_NAME = 18

    # Inventory type.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE = 19

    # Inventory type name.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE_NAME = 20

    # Whether traffic is Adx Direct.
    IS_ADX_DIRECT = 382

    # Whether traffic is First Look.
    IS_FIRST_LOOK_DEAL = 401

    # The Custom Targeting Value ID
    KEY_VALUES_ID = 214

    # The Custom Targeting Value formatted like <key_name>=<value_name>
    KEY_VALUES_NAME = 215

    # Whether a Line item is archived.
    LINE_ITEM_ARCHIVED = 188

    # Line item comanion delivery option ENUM value.
    LINE_ITEM_COMPANION_DELIVERY_OPTION = 204

    # Localized line item comanion delivery option name.
    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205

    # The computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS = 250

    # The localized name of the computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS_NAME = 251

    # The contracted units bought for the Line item.
    LINE_ITEM_CONTRACTED_QUANTITY = 92

    # The cost per unit of the Line item.
    LINE_ITEM_COST_PER_UNIT = 85

    # Line item cost type ENUM value.
    LINE_ITEM_COST_TYPE = 212

    # Localized line item cost type name.
    LINE_ITEM_COST_TYPE_NAME = 213

    # Represent the end date of a creative associated with line item
    LINE_ITEM_CREATIVE_END_DATE = 176

    # The creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE = 189

    # The localized name of the creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190

    # Represent the start date of a creative associated with line item
    LINE_ITEM_CREATIVE_START_DATE = 175

    # The 3 letter currency code of the Line Item
    LINE_ITEM_CURRENCY_CODE = 180

    # The progress made for the delivery of the Line item.
    LINE_ITEM_DELIVERY_INDICATOR = 87

    # The delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE = 191

    # The localized name of the delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192

    # The discount of the LineItem in whole units in the LineItem's currency
    # code, or if unspecified the Network's currency code.
    LINE_ITEM_DISCOUNT_ABSOLUTE = 195

    # The discount of the LineItem in percentage.
    LINE_ITEM_DISCOUNT_PERCENTAGE = 196

    # The end date of the Line item.
    LINE_ITEM_END_DATE = 81

    # The end date and time of the Line item.
    LINE_ITEM_END_DATE_TIME = 83

    # The ENUM value of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE = 201

    # The localized name of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202

    # The deal ID of the Line item. Set for Programmatic Direct campaigns.
    LINE_ITEM_EXTERNAL_DEAL_ID = 97

    # The external ID of the Line item.
    LINE_ITEM_EXTERNAL_ID = 86

    # The frequency cap of the Line item (descriptive string).
    LINE_ITEM_FREQUENCY_CAP = 256

    # Line item ID.
    LINE_ITEM_ID = 1

    # The application that last modified the Line Item.
    LINE_ITEM_LAST_MODIFIED_BY_APP = 181

    # The total number of clicks delivered of the lifetime of the Line item.
    LINE_ITEM_LIFETIME_CLICKS = 95

    # The total number of impressions delivered over the lifetime of the
    # Line item.
    LINE_ITEM_LIFETIME_IMPRESSIONS = 94

    # The total number of viewable impressions delivered over the lifetime of
    # the Line item.
    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96

    # Whether or not the Line item is Makegood. Makegood refers to free
    # inventory offered to buyers to compensate for mistakes or under-delivery
    # in the original campaigns.
    LINE_ITEM_MAKEGOOD = 89

    # Line item Name.
    LINE_ITEM_NAME = 2

    # The cost of booking for the Line item (non-CPD).
    LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98

    # Whether a Line item is eligible for opitimization.
    LINE_ITEM_OPTIMIZABLE = 90

    # Goal type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE = 210

    # Localized goal type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211

    # The total number of impressions or clicks that are reserved for a
    # line item. For line items of type BULK or PRICE_PRIORITY, this represents
    # the number of remaining impressions reserved. If the line item has an
    # impression cap goal, this represents the number of impressions or
    # conversions that the line item will stop serving at if reached.
    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93

    # The percentage of impressions or clicks that are reserved for a
    # line item. For line items of type SPONSORSHIP, this represents the
    # percentage of available impressions reserved. For line items of type
    # NETWORK or HOUSE, this represents the percentage of remaining impressions
    # reserved.
    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396

    # Unit type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208

    # Localized unit type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209

    # The priority of this Line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Line item.
    LINE_ITEM_PRIORITY = 24

    # ENUM value describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS = 304

    # Localized string describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS_NAME = 305

    # The start date of the Line item.
    LINE_ITEM_START_DATE = 82

    # The start date and time of the Line item.
    LINE_ITEM_START_DATE_TIME = 84

    # Line item type ENUM value.
    LINE_ITEM_TYPE = 193

    # Localized line item type name.
    LINE_ITEM_TYPE_NAME = 194

    # Whether the Line item end time and end date is set to effectively never
    # end.
    LINE_ITEM_UNLIMITED_END = 187

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    LINE_ITEM_VALUE_COST_PER_UNIT = 88

    # The web property code used for dynamic allocation Line Items.
    LINE_ITEM_WEB_PROPERTY_CODE = 179

    # The ID of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_ID = 140

    # Name of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_NAME = 141

    # Whether the mobile app is free.
    MOBILE_APP_FREE = 128

    # URL of app icon for the mobile app.
    MOBILE_APP_ICON_URL = 129

    # The ID of the Mobile App.
    MOBILE_APP_ID = 123

    # The name of the mobile app.
    MOBILE_APP_NAME = 127

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS = 311

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS_NAME = 312

    # The App Store of the mobile app.
    MOBILE_APP_STORE = 125

    # The localized name of the mobile app store.
    MOBILE_APP_STORE_NAME = 245

    # Mobile inventory type.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    # Values match the Inventory type dimension available in the Overview Home
    # dashboard. Note: Video takes precedence over any other value, for
    # example, if there is an in-stream video impression on a desktop device,
    # it will be attributed to in-stream video and not desktop web.
    MOBILE_INVENTORY_TYPE = 99

    # Mobile inventory type name.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    MOBILE_INVENTORY_TYPE_NAME = 21

    # SDK version of the mobile device.
    MOBILE_SDK_VERSION_NAME = 130

    # Breaks down reporting data by month and year.
    MONTH_YEAR = 6

    # Native ad format ID.
    NATIVE_AD_FORMAT_ID = 255

    # Native ad format name.
    NATIVE_AD_FORMAT_NAME = 254

    # Native style ID.
    NATIVE_STYLE_ID = 253

    # Native style name.
    NATIVE_STYLE_NAME = 252

    # Operating system category.
    OPERATING_SYSTEM_CATEGORY = 117

    # Operating system category name.
    OPERATING_SYSTEM_CATEGORY_NAME = 118

    # ID of the operating system version.
    OPERATING_SYSTEM_VERSION_ID = 238

    # Details of the operating system, including version.
    OPERATING_SYSTEM_VERSION_NAME = 237

    # Order agency.
    ORDER_AGENCY = 150

    # Order agency ID.
    ORDER_AGENCY_ID = 151

    # Order booked CPC.
    ORDER_BOOKED_CPC = 152

    # Order booked CPM.
    ORDER_BOOKED_CPM = 153

    # Order delivery status ENUM value.
    ORDER_DELIVERY_STATUS = 231

    # Order delivery status localized name.
    ORDER_DELIVERY_STATUS_NAME = 239

    # Order end date.
    ORDER_END_DATE = 154

    # Order end date and time.
    ORDER_END_DATE_TIME = 155

    # Order external ID.
    ORDER_EXTERNAL_ID = 156

    # Order id.
    ORDER_ID = 7

    # Order labels.
    ORDER_LABELS = 170

    # Order labels IDs.
    ORDER_LABEL_IDS = 171

    # Order lifetime clicks.
    ORDER_LIFETIME_CLICKS = 158

    # Order lifetime impressions.
    ORDER_LIFETIME_IMPRESSIONS = 159

    # Order name.
    ORDER_NAME = 8

    # Order PO number.
    ORDER_PO_NUMBER = 160

    # Whether the Order is programmatic.
    ORDER_PROGRAMMATIC = 157

    # Order sales person.
    ORDER_SALESPERSON = 161

    # Order secondary sales people.
    ORDER_SECONDARY_SALESPEOPLE = 164

    # Order secondary sales people ID.
    ORDER_SECONDARY_SALESPEOPLE_ID = 165

    # Order secondary traffickers.
    ORDER_SECONDARY_TRAFFICKERS = 166

    # Order secondary traffickers ID.
    ORDER_SECONDARY_TRAFFICKERS_ID = 167

    # Order start date.
    ORDER_START_DATE = 168

    # Order start date and time.
    ORDER_START_DATE_TIME = 169

    # Order trafficker.
    ORDER_TRAFFICKER = 162

    # Order trafficker ID.
    ORDER_TRAFFICKER_ID = 163

    # Whether the Order end time and end date is set to effectively never
    # end.
    ORDER_UNLIMITED_END = 203

    # Placement ID
    PLACEMENT_ID = 113

    # The full list of placement IDs associated with the ad unit.
    PLACEMENT_ID_ALL = 144

    # Placement name
    PLACEMENT_NAME = 114

    # The full list of placement names associated with the ad unit.
    PLACEMENT_NAME_ALL = 145

    # Placement status ENUM value
    PLACEMENT_STATUS = 362

    # The full list of placement status ENUM values associated with the ad
    # unit.
    PLACEMENT_STATUS_ALL = 363

    # Localized placement status name.
    PLACEMENT_STATUS_NAME = 364

    # The full list of localized placement status names associated with the ad
    # unit.
    PLACEMENT_STATUS_NAME_ALL = 365

    # The ID of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_ID = 240

    # The name of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_NAME = 241

    # Programmatic channel.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL = 13

    # Programmatic channel name.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL_NAME = 14

    # The size of a rendered creative, It can differ with the creative's size
    # if a creative is shown in an ad slot of a different size.
    RENDERED_CREATIVE_SIZE = 343

    # Inventory Requested Ad Sizes dimension
    REQUESTED_AD_SIZES = 352

    # Request type ENUM
    REQUEST_TYPE = 146

    # Request type locallized name
    REQUEST_TYPE_NAME = 147

    # Indicates if a request was eligible for server-side unwrapping.
    SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597

    # Information about domain or subdomains.
    SITE = 387

    # The ID of the browser, device or other environment into which a line item
    # or creative was served.
    TARGETING_ID = 232

    # Information about the browser, device and other environments into which
    # a line item or creative was served.
    TARGETING_NAME = 233

    # The way in which advertisers targeted their ads.
    TARGETING_TYPE = 385

    # The localized name of the way in which advertisers targeted their ads.
    TARGETING_TYPE_NAME = 386

    # Inventory Traffic source dimension
    TRAFFIC_SOURCE = 388

    # Inventory Traffic source dimension name
    TRAFFIC_SOURCE_NAME = 389

    # Unified pricing rule ID dimension
    UNIFIED_PRICING_RULE_ID = 393

    # Unified pricing rule name dimension
    UNIFIED_PRICING_RULE_NAME = 394

    # The video placement enum as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT = 172

    # The localized name of the video placement as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT_NAME = 173

    # Breaks down reporting data by week of the year.
    WEEK = 5

    # Name of the company within a yield group
    YIELD_GROUP_BUYER_NAME = 184

    # ID of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_ID = 182

    # Name of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_NAME = 183

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10_000

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10_001

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10_002

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10_003

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10_004

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10_005

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10_006

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10_007

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10_008

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10_009

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10_010

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10_011

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10_012

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10_013

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10_014

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11_000

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11_001

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11_002

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11_003

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11_004

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11_005

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11_006

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11_007

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11_008

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11_009

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11_010

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11_011

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11_012

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11_013

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11_014

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_0_OPTION_ID = 12_000

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_1_OPTION_ID = 12_001

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_2_OPTION_ID = 12_002

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_3_OPTION_ID = 12_003

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_4_OPTION_ID = 12_004

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_5_OPTION_ID = 12_005

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_6_OPTION_ID = 12_006

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_7_OPTION_ID = 12_007

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_8_OPTION_ID = 12_008

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_9_OPTION_ID = 12_009

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_10_OPTION_ID = 12_010

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_11_OPTION_ID = 12_011

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_12_OPTION_ID = 12_012

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_13_OPTION_ID = 12_013

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_14_OPTION_ID = 12_014

    # Custom field value for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 0 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_0_VALUE = 13_000

    # Custom field value for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 1 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_1_VALUE = 13_001

    # Custom field value for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 2 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_2_VALUE = 13_002

    # Custom field value for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 3 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_3_VALUE = 13_003

    # Custom field value for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 4 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_4_VALUE = 13_004

    # Custom field value for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 5 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_5_VALUE = 13_005

    # Custom field value for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 6 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_6_VALUE = 13_006

    # Custom field value for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 7 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_7_VALUE = 13_007

    # Custom field value for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 8 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_8_VALUE = 13_008

    # Custom field value for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 9 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_9_VALUE = 13_009

    # Custom field value for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_10_VALUE = 13_010

    # Custom field value for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_11_VALUE = 13_011

    # Custom field value for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_12_VALUE = 13_012

    # Custom field value for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_13_VALUE = 13_013

    # Custom field value for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_14_VALUE = 13_014

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14_000

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14_001

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14_002

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14_003

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14_004

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14_005

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14_006

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14_007

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14_008

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14_009

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14_010

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14_011

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14_012

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14_013

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14_014

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_0_VALUE = 15_000

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_1_VALUE = 15_001

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_2_VALUE = 15_002

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_3_VALUE = 15_003

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_4_VALUE = 15_004

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_5_VALUE = 15_005

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_6_VALUE = 15_006

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_7_VALUE = 15_007

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_8_VALUE = 15_008

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_9_VALUE = 15_009

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_10_VALUE = 15_010

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_11_VALUE = 15_011

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_12_VALUE = 15_012

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_13_VALUE = 15_013

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_14_VALUE = 15_014

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16_000

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16_001

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16_002

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16_003

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16_004

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16_005

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16_006

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16_007

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16_008

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16_009

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16_010

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16_011

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16_012

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16_013

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16_014

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 0 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17_000

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 1 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17_001

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 2 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17_002

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 3 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17_003

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 4 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17_004

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 5 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17_005

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 6 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17_006

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 7 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17_007

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 8 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17_008

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 9 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17_009

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17_010

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17_011

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17_012

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17_013

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17_014

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18_000

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18_001

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18_002

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18_003

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18_004

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18_005

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18_006

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18_007

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18_008

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18_009

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18_010

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18_011

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18_012

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18_013

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18_014

    # Custom field value for Backfill order with custom field ID equal to the
    # ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19_000

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19_001

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19_002

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19_003

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19_004

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19_005

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19_006

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19_007

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19_008

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19_009

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19_010

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19_011

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19_012

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19_013

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19_014

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20_000

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20_001

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20_002

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20_003

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20_004

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20_005

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20_006

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20_007

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20_008

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20_009

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20_010

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20_011

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20_012

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20_013

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20_014

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21_000

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 1 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21_001

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 2 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21_002

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 3 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21_003

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 4 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21_004

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 5 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21_005

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 6 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21_006

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 7 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21_007

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 8 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21_008

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 9 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21_009

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21_010

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21_011

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21_012

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21_013

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21_014

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE_ID = 100_000

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE_ID = 100_001

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE_ID = 100_002

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE_ID = 100_003

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE_ID = 100_004

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE_ID = 100_005

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE_ID = 100_006

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE_ID = 100_007

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE_ID = 100_008

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE_ID = 100_009

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE = 101_000

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE = 101_001

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE = 101_002

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE = 101_003

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE = 101_004

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE = 101_005

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE = 101_006

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 7 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE = 101_007

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE = 101_008

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE = 101_009
  end

  # Reporting metrics.
  module Metric
    # Default value. This value is unused.
    METRIC_UNSPECIFIED = 0

    # Active View total average time in seconds that specific impressions are
    # reported as being viewable.
    ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 61

    # Total number of impressions that were eligible to measure viewability.
    ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 58

    # The total number of impressions that were sampled and measured by active
    # view.
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 57

    # The percentage of total impressions that were measurable by active view
    # (out of all the total impressions sampled for active view).
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 60

    # The total number of impressions viewed on the user's screen.
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 56

    # The percentage of total impressions viewed on the user's screen (out of
    # the total impressions measurable by active view).
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 59

    # Active View AdSense average time in seconds that specific impressions are
    # reported as being viewable.
    ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 73

    # Total number of impressions delivered by AdSense that were eligible to
    # measure viewability.
    ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 70

    # The number of impressions delivered by AdSense that were sampled, and
    # measurable by active view.
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 69

    # The percentage of impressions delivered by AdSense that were measurable
    # by active view (out of all AdSense impressions sampled for active view).
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 72

    # The number of impressions delivered by AdSense viewed on the user's
    # screen.
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 68

    # The percentage of impressions delivered by AdSense viewed on the user's
    # screen (out of AdSense impressions measurable by active view).
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 71

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by AdSense through line item dynamic allocation.
    ADSENSE_AVERAGE_ECPM = 26

    # Number of clicks delivered by AdSense demand channel.
    ADSENSE_CLICKS = 23

    # The ratio of impressions served by AdSense that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. The
    # AdSense CTR is calculated as: (AdSense clicks / AdSense impressions).
    ADSENSE_CTR = 24

    # Total impressions delivered by AdSense.
    ADSENSE_IMPRESSIONS = 22

    # Ratio of clicks delivered by AdSense through line item dynamic allocation
    # in relation to the total clicks delivered.
    ADSENSE_PERCENT_CLICKS = 28

    # Ratio of impressions delivered by AdSense through line item dynamic
    # allocation in relation to the total impressions delivered.
    ADSENSE_PERCENT_IMPRESSIONS = 27

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue.
    ADSENSE_PERCENT_REVENUE = 29

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    ADSENSE_PERCENT_REVENUE_WITHOUT_CPD = 30

    # The total number of times that an AdSense ad is delivered.
    ADSENSE_RESPONSES_SERVED = 41

    # Revenue generated from AdSense through line item dynamic allocation,
    # calculated in the network's currency and time zone.
    ADSENSE_REVENUE = 25

    # Active View AdExchange average time in seconds that specific impressions
    # are reported as being viewable.
    AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 79

    # Total number of impressions delivered by Ad Exchange that were eligible
    # to measure viewability.
    AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 76

    # The number of impressions delivered by Ad Exchange that were sampled, and
    # measurable by active view.
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 75

    # The percentage of impressions delivered by Ad Exchange that were
    # measurable by active view (out of all Ad Exchange impressions sampled for
    # active view).
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 78

    # The number of impressions delivered by Ad Exchange viewed on the user's
    # screen.
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 74

    # The percentage of impressions delivered by Ad Exchange viewed on the
    # user's screen (out of Ad Exchange impressions measurable by active view).
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 77

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by Ad Exchange through line item dynamic allocation.
    AD_EXCHANGE_AVERAGE_ECPM = 18

    # Number of clicks delivered by the Ad Exchange.
    AD_EXCHANGE_CLICKS = 15

    # The ratio of impressions served by the Ad Exchange that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. Ad
    # Exchange CTR is calculated as: (Ad Exchange clicks / Ad Exchange
    # impressions).
    AD_EXCHANGE_CTR = 16

    # Total impressions delivered by the Ad Exchange.
    AD_EXCHANGE_IMPRESSIONS = 14

    # Ratio of clicks delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total clicks delivered.
    AD_EXCHANGE_PERCENT_CLICKS = 20

    # Ratio of impressions delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total impressions delivered.
    AD_EXCHANGE_PERCENT_IMPRESSIONS = 19

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue.
    AD_EXCHANGE_PERCENT_REVENUE = 21

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD = 31

    # The total number of times that an Ad Exchange ad is delivered.
    AD_EXCHANGE_RESPONSES_SERVED = 42

    # Revenue generated from the Ad Exchange through line item dynamic
    # allocation, calculated in your network's currency and time zone.
    AD_EXCHANGE_REVENUE = 17

    # The total number of times that an ad request is sent to the ad server
    # including dynamic allocation.
    AD_REQUESTS = 38

    # Active View ad server average time in seconds that specific impressions
    # are reported as being viewable.
    AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 67

    # Total number of impressions delivered by the ad server that were eligible
    # to measure viewability.
    AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 64

    # The number of impressions delivered by the ad server that were sampled,
    # and measurable by active view.
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 63

    # The percentage of impressions delivered by the ad server that were
    # measurable by active view (out of all the ad server impressions sampled
    # for active view).
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 66

    # The number of impressions delivered by the ad server viewed on the user's
    # screen.
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 62

    # The percentage of impressions delivered by the ad server viewed on the
    # user's screen (out of the ad server impressions measurable by active
    # view).
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 65

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server.
    AD_SERVER_AVERAGE_ECPM = 34

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server, excluding CPD value.
    AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD = 10

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown.
    AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS = 262

    # Total clicks served by the Google Ad Manager server. It usually takes
    # about 30 minutes for new clicks to be recorded and added to the total
    # displayed in reporting.
    AD_SERVER_CLICKS = 7

    # CPD revenue earned, calculated in your network's currency, for
    # the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_CPD_REVENUE = 32

    # Ratio of impressions served by the Google Ad Manager server that resulted
    # in users clicking on an ad. The clickthrough rate (CTR) is updated
    # nightly. The ad server CTR is calculated as: (Ad server clicks / Ad
    # server impressions).
    AD_SERVER_CTR = 8

    # Total impressions delivered by the Ad Server.
    AD_SERVER_IMPRESSIONS = 6

    # Ratio of clicks delivered by the Google Ad Manager server in relation to
    # the total clicks delivered.
    AD_SERVER_PERCENT_CLICKS = 12

    # Ratio of impressions delivered by the Google Ad Manager server in
    # relation to the total impressions delivered.
    AD_SERVER_PERCENT_IMPRESSIONS = 11

    # Ratio of revenue generated by the Google Ad Manager server in relation
    # to the total revenue.
    AD_SERVER_PERCENT_REVENUE = 35

    # Ratio of revenue generated by the Google Ad Manager server (excluding
    # CPD) in relation to the total revenue.
    AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13

    # The total number of times that an ad is served by the ad server.
    AD_SERVER_RESPONSES_SERVED = 40

    # All CPM, CPC, and CPD revenue earned, calculated in your network's
    # currency, for the ads delivered by the Google Ad Manager server.
    # Sum of all booked revenue.
    AD_SERVER_REVENUE = 33

    # Revenue (excluding CPD) earned, calculated in your network's currency,
    # for the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_REVENUE_WITHOUT_CPD = 9

    # The number of tracked ads delivered by the ad server.
    AD_SERVER_TRACKED_ADS = 264

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown, before invalid traffic filtrations by
    # Ad Server.
    AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261

    # Total clicks delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_CLICKS = 259

    # Total impressions delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_IMPRESSIONS = 260

    # The number of tracked ads delivered by the ad server before invalid
    # traffic filtrations.
    AD_SERVER_UNFILTERED_TRACKED_ADS = 263

    # eCPM averaged across the Google Ad Manager server, AdSense,
    # and Ad Exchange.
    AVERAGE_ECPM = 37

    # eCPM averaged across the Google Ad Manager server (excluding CPD),
    # AdSense, and Ad Exchange.
    AVERAGE_ECPM_WITHOUT_CPD = 5

    # The number of times a user clicked on an ad.
    CLICKS = 2

    # The total number of times that the code for an ad is served by the ad
    # server including dynamic allocation.
    CODE_SERVED_COUNT = 44

    # For standard ads, your ad clickthrough rate (CTR) is the number of ad
    # clicks divided by the number of individual ad impressions expressed as a
    # fraction. Ad CTR = Clicks / Ad impressions.
    CTR = 3

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129

    # The number of auction impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131

    # The number of impressions sold by Google in partner sales.
    GOOGLE_SOLD_IMPRESSIONS = 130

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127

    # The number of reservation impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126

    # Total impressions from the Google Ad Manager server, AdSense,
    # Ad Exchange, and yield group partners.
    IMPRESSIONS = 1

    # The number of filled pod requests (filled by partner or Google) in
    # partner sales.
    PARTNER_SALES_FILLED_POD_REQUESTS = 135

    # The percent of filled requests to total ad requests in
    # partner sales.
    PARTNER_SALES_FILL_RATE = 136

    # The percent of partner filled requests to total ad requests
    # in partner sales.
    PARTNER_SALES_PARTNER_MATCH_RATE = 137

    # The number of queries eligible for partner sales.
    PARTNER_SALES_QUERIES = 132

    # The number of partner unfilled impressions in partner sales.
    # If a pod request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNFILLED_IMPRESSIONS = 133

    # The number of partner unmatched queries in partner sales.
    # If an ad request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNMATCHED_QUERIES = 134

    # The number of code served sold by partner in partner sales.
    PARTNER_SOLD_CODE_SERVED = 125

    # The number of coviewed impressions sold by partner in partner sales.
    PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124

    # The number of impressions sold by partner in partner sales.
    PARTNER_SOLD_IMPRESSIONS = 123

    # The total number of ad requests eligible for programmatic inventory,
    # including Programmatic Guaranteed, Preferred Deals, backfill, and open
    # auction.
    PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177

    # The number of programmatic responses served divided by the number of
    # programmatic eligible ad requests. Includes Ad Exchange, Open Bidding,
    # and Preferred Deals.
    PROGRAMMATIC_MATCH_RATE = 178

    # Total number of ad responses served from programmatic demand sources.
    # Includes Ad Exchange, Open Bidding, and Preferred Deals.
    #
    # Differs from AD_EXCHANGE_RESPONSES_SERVED, which doesn't include Open
    # Bidding ad requests.
    PROGRAMMATIC_RESPONSES_SERVED = 176

    # The total number of times that an ad is served by the ad server including
    # dynamic allocation.
    RESPONSES_SERVED = 39

    # Total amount of CPM, CPC, and CPD revenue based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE = 36

    # Total amount of revenue (excluding CPD) based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE_WITHOUT_CPD = 4

    # The average latency in milliseconds across all server-side unwrapping
    # callout requests. There is no special handling for error or timeout
    # responses. This reflects the entire chain of a parent callout request,
    # which may result in multiple child callouts. This metric is not sliced by
    # child callout dimensions.
    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434

    # The total number of server-side unwrapping callout requests.
    SERVER_SIDE_UNWRAPPING_CALLOUTS = 435

    # The total number of server-side unwrapping callouts that returned an
    # empty response. Timeouts are not considered empty responses.
    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436

    # The total number of server-side unwrapping callouts that returned an
    # error response. Timeouts and empty responses are not considered errors.
    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437

    # The total number of successfully unwrapped, non-empty server-side
    # wrapping callouts. Successful unwrapping does not indicate that the
    # resulting creative was served.
    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438

    # The total number of server-side unwrapping callouts that timed out before
    # returning a response.
    SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439

    # The total number of missed impressions due to the ad servers' inability
    # to find ads to serve including dynamic allocation.
    UNFILLED_IMPRESSIONS = 45

    # The total number of times that an ad is not returned by the ad server.
    UNMATCHED_AD_REQUESTS = 43

    # Number of times an Offerwall message was shown to users.
    USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121

    # The number of messages where the user gained an entitlement.
    USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122

    # The number of user interactions with a video, on average, such as pause,
    # full screen, mute, etc.
    VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92

    # The number of times a user collapses a video, either to its original size
    # or to a different size.
    VIDEO_INTERACTION_COLLAPSES = 93

    # The number of times a user expands a video.
    VIDEO_INTERACTION_EXPANDS = 95

    # The number of times ad clip played in full screen mode.
    VIDEO_INTERACTION_FULL_SCREENS = 96

    # The number of times video player was in mute state during play of ad
    # clip.
    VIDEO_INTERACTION_MUTES = 97

    # The number of times user paused ad clip.
    VIDEO_INTERACTION_PAUSES = 98

    # The number of times the user unpaused the video.
    VIDEO_INTERACTION_RESUMES = 99

    # The number of times a user rewinds the video.
    VIDEO_INTERACTION_REWINDS = 100

    # The number of times a user unmutes the video.
    VIDEO_INTERACTION_UNMUTES = 101

    # The number of times a skippable video is skipped.
    VIDEO_INTERACTION_VIDEO_SKIPS = 102

    # The number of total creative serves in video realtime reporting.
    VIDEO_REAL_TIME_CREATIVE_SERVES = 139

    # The number of errors of type 100 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_100_COUNT = 143

    # The number of errors of type 101 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_101_COUNT = 144

    # The number of errors of type 102 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_102_COUNT = 145

    # The number of errors of type 200 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_200_COUNT = 146

    # The number of errors of type 201 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_201_COUNT = 147

    # The number of errors of type 202 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_202_COUNT = 148

    # The number of errors of type 203 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_203_COUNT = 149

    # The number of errors of type 300 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_300_COUNT = 150

    # The number of errors of type 301 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_301_COUNT = 151

    # The number of errors of type 302 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_302_COUNT = 152

    # The number of errors of type 303 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_303_COUNT = 153

    # The number of errors of type 400 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_400_COUNT = 154

    # The number of errors of type 401 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_401_COUNT = 155

    # The number of errors of type 402 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_402_COUNT = 156

    # The number of errors of type 403 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_403_COUNT = 157

    # The number of errors of type 405 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_405_COUNT = 158

    # The number of errors of type 406 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_406_COUNT = 159

    # The number of errors of type 407 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_407_COUNT = 160

    # The number of errors of type 408 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_408_COUNT = 161

    # The number of errors of type 409 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_409_COUNT = 162

    # The number of errors of type 410 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_410_COUNT = 163

    # The number of errors of type 500 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_500_COUNT = 164

    # The number of errors of type 501 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_501_COUNT = 165

    # The number of errors of type 502 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_502_COUNT = 166

    # The number of errors of type 503 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_503_COUNT = 167

    # The number of errors of type 600 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_600_COUNT = 168

    # The number of errors of type 601 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_601_COUNT = 169

    # The number of errors of type 602 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_602_COUNT = 170

    # The number of errors of type 603 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_603_COUNT = 171

    # The number of errors of type 604 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_604_COUNT = 172

    # The number of errors of type 900 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_900_COUNT = 173

    # The number of errors of type 901 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_901_COUNT = 174

    # The number of total impressions in video realtime reporting.
    VIDEO_REAL_TIME_IMPRESSIONS = 138

    # The number of matched queries in video realtime reporting.
    VIDEO_REAL_TIME_MATCHED_QUERIES = 140

    # The number of all errors in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175

    # The number of total queries in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_QUERIES = 142

    # The number of unmatched queries in video realtime reporting.
    VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141

    # Number of times that the publisher specified a video ad played
    # automatically.
    VIDEO_VIEWERSHIP_AUTO_PLAYS = 103

    # Average percentage of the video watched by users.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104

    # Average time(seconds) users watched the video.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105

    # Number of times that the publisher specified a video ad was clicked to
    # play.
    VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106

    # The number of times the video played to completion.
    VIDEO_VIEWERSHIP_COMPLETES = 107

    # Percentage of times the video played to the end.
    VIDEO_VIEWERSHIP_COMPLETION_RATE = 108

    # The number of engaged views: ad is viewed to completion or for 30s,
    # whichever comes first.
    VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109

    # The number of times the video played to 25% of its length.
    VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110

    # The number of times the video reached its midpoint during play.
    VIDEO_VIEWERSHIP_MIDPOINTS = 111

    # The number of times a skip button is shown in video.
    VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112

    # The number of impressions where the video was played.
    VIDEO_VIEWERSHIP_STARTS = 113

    # The number of times the video played to 75% of its length.
    VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114

    # The number of times an error occurred, such as a VAST redirect error, a
    # video playback error, or an invalid response error.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115

    # The percentage of video error count.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94

    # Duration of the video creative.
    VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116

    # View-through rate represented as a percentage.
    VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117

    # Number of winning bids received from Open Bidding buyers, even when the
    # winning bid is placed at the end of a mediation for mobile apps chain.
    YIELD_GROUP_AUCTIONS_WON = 80

    # Number of bids received from Open Bidding buyers, regardless of whether
    # the returned bid competes in an auction.
    YIELD_GROUP_BIDS = 81

    # Number of bids received from Open Bidding buyers that competed in
    # the auction.
    YIELD_GROUP_BIDS_IN_AUCTION = 82

    # Number of times a yield partner is asked to return bid to fill
    # a yield group request.
    YIELD_GROUP_CALLOUTS = 83

    # The estimated net rate for yield groups or individual
    # yield group partners.
    YIELD_GROUP_ESTIMATED_CPM = 88

    # Total net revenue earned by a yield group, based upon the yield group
    # estimated CPM and yield group impressions recorded.
    YIELD_GROUP_ESTIMATED_REVENUE = 87

    # Number of matched yield group requests where a yield partner delivered
    # their ad to publisher inventory.
    YIELD_GROUP_IMPRESSIONS = 85

    # Yield group Mediation fill rate indicating how often a network
    # fills an ad request.
    YIELD_GROUP_MEDIATION_FILL_RATE = 89

    # Total requests where a Mediation chain was served.
    YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86

    # The number of mediation chain passback across all channels.
    YIELD_GROUP_MEDIATION_PASSBACKS = 118

    # Revenue per thousand impressions based on data collected by Ad Manager
    # from third-party ad network reports.
    YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90

    # Number of times a yield group buyer successfully returned a bid in
    # response to a yield group callout.
    YIELD_GROUP_SUCCESSFUL_RESPONSES = 84
  end

  # Possible metric value types to add.
  module MetricValueType
    # The values for the primary date_range.
    PRIMARY = 0

    # Each metrics' percent of the total for the primary date_range.
    PRIMARY_PERCENT_OF_TOTAL = 1

    # The values for the comparison_date_range.
    COMPARISON = 2

    # Each metrics' percent of the total for the comparison_date_range.
    COMPARISON_PERCENT_OF_TOTAL = 3

    # The absolute change between the primary and comparison date ranges.
    ABSOLUTE_CHANGE = 4

    # The relative change between the primary and comparison date ranges.
    RELATIVE_CHANGE = 5
  end

  # Supported report types.
  module ReportType
    # Default value. This value is unused.
    REPORT_TYPE_UNSPECIFIED = 0

    # Historical.
    HISTORICAL = 1
  end

  # The visibility of a report.
  module Visibility
    # Default value. Reports with hidden visibility will not appear in the Ad
    # Manager UI.
    HIDDEN = 0

    # Reports with draft visibility will appear in the Ad Manager UI only if
    # the user has configured the UI to show them.
    DRAFT = 1

    # Reports with saved visibility will appear in the Ad Manager UI by
    # default.
    SAVED = 2
  end

  # The source to determine the time zone for the report.
  module TimeZoneSource
    # Unspecified default value.
    TIME_ZONE_SOURCE_UNSPECIFIED = 0

    # Use the publisher's time zone in network settings.
    PUBLISHER = 1

    # Use the time zone of the ad exchange.
    # Only compatible with Ad Exchange dimensions and metrics.
    AD_EXCHANGE = 2

    # Use UTC time zone.
    # Only compatible with Revenue Verification reports.
    UTC = 3

    # Use the time zone provided in the ReportDefinition.time_zone field.
    # Has limited dimension and metric compatibility compared with PUBLISHER,
    # and reports may take longer to run since the dates are dynamically
    # calculated at request time.
    PROVIDED = 4
  end
end

#update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The instant this report was last modified.

Returns:



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
# File 'proto_docs/google/ads/admanager/v1/report_messages.rb', line 55

class Report
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a single value in a report.
  # @!attribute [rw] int_value
  #   @return [::Integer]
  #     For integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] double_value
  #   @return [::Float]
  #     For double values.
  #
  #     Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_value
  #   @return [::String]
  #     For string values.
  #
  #     Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bool_value
  #   @return [::Boolean]
  #     For boolean values.
  #
  #     Note: The following fields are mutually exclusive: `bool_value`, `int_value`, `double_value`, `string_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] int_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::IntList]
  #     For lists of integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::StringList]
  #     For lists of string values.
  #
  #     Note: The following fields are mutually exclusive: `string_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bytes_value
  #   @return [::String]
  #     For bytes values.
  #
  #     Note: The following fields are mutually exclusive: `bytes_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Value
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A list of integer values.
    # @!attribute [rw] values
    #   @return [::Array<::Integer>]
    #     The values
    class IntList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of string values.
    # @!attribute [rw] values
    #   @return [::Array<::String>]
    #     The values
    class StringList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Represents a sorting in a report.
  # @!attribute [rw] field
  #   @return [::Google::Ads::AdManager::V1::Report::Field]
  #     Required. A field (dimension or metric) to sort by.
  # @!attribute [rw] descending
  #   @return [::Boolean]
  #     Optional. The sort order. If true the sort will be descending.
  # @!attribute [rw] slice
  #   @return [::Google::Ads::AdManager::V1::Report::Slice]
  #     Optional. Use to sort on a specific slice of data.
  # @!attribute [rw] time_period_index
  #   @return [::Integer]
  #     Optional. When using time period columns, use this to sort on a specific
  #     column.
  # @!attribute [rw] metric_value_type
  #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
  #     Optional. Use to specify which metric value type to sort on. Defaults to
  #     PRIMARY.
  class Sort
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A table containing report data including dimension and metric values.
  class DataTable
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A row of report data.
    # @!attribute [rw] dimension_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     The order of the dimension values is the same as the order of the
    #     dimensions specified in the request.
    # @!attribute [rw] metric_value_groups
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::DataTable::MetricValueGroup>]
    #     The length of the metric_value_groups
    #     field will be equal to the length of the date_ranges field in the
    #     fetch response. The metric_value_groups field is
    #     ordered such that each index corresponds to the date_range at the same
    #     index. For example, given date_ranges [x, y], metric_value_groups will
    #     have a length of two. The first entry in metric_value_groups represents
    #     the metrics for date x and the second entry in metric_value_groups
    #     represents the metrics for date y.
    class Row
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Contains all metric values requested for a single date range and set of
    # column dimension values (returned in the columns field of the response).
    # The order of the metrics in each field corresponds to the order of the
    # metrics specified in the request.
    # @!attribute [rw] primary_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY MetricValueType.
    # @!attribute [rw] primary_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] comparison_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON MetricValueType.
    # @!attribute [rw] comparison_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] absolute_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the ABSOLUTE_CHANGE MetricValueType.
    # @!attribute [rw] relative_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the RELATIVE_CHANGE MetricValueType.
    # @!attribute [rw] flag_values
    #   @return [::Array<::Boolean>]
    #     If true, the flag's conditions are met. If false, the flag's
    #     conditions are not met. flag_values has the same length as
    #     flags and index i of flag_values represents the flag at index i
    #     of flags.
    class MetricValueGroup
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # A dimension or a metric in a report.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     The dimension this field represents.
  #
  #     Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] metric
  #   @return [::Google::Ads::AdManager::V1::Report::Metric]
  #     The metric this field represents.
  #
  #     Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Field
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Use to specify a slice of data.
  #
  # For example, in a report, to focus on just data from the US, specify
  # `COUNTRY_NAME` for dimension and value: `"United States"`.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     Required. The dimension to slice on.
  # @!attribute [rw] value
  #   @return [::Google::Ads::AdManager::V1::Report::Value]
  #     Required. The value of the dimension.
  class Slice
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A filter over one or more fields.
  # @!attribute [rw] field_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FieldFilter]
  #     A filter on a single field.
  #
  #     Note: The following fields are mutually exclusive: `field_filter`, `not_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] not_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter]
  #     A filter whose result is negated.
  #
  #     Note: The following fields are mutually exclusive: `not_filter`, `field_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] and_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are AND-ed.
  #
  #     Note: The following fields are mutually exclusive: `and_filter`, `field_filter`, `not_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] or_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are OR-ed.
  #
  #     Note: The following fields are mutually exclusive: `or_filter`, `field_filter`, `not_filter`, `and_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Filter
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A filter on a specific field.
    # @!attribute [rw] field
    #   @return [::Google::Ads::AdManager::V1::Report::Field]
    #     Required. The field to filter on.
    # @!attribute [rw] operation
    #   @return [::Google::Ads::AdManager::V1::Report::Filter::Operation]
    #     Required. The operation of this filter.
    # @!attribute [rw] values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Required. Values to filter to.
    # @!attribute [rw] slice
    #   @return [::Google::Ads::AdManager::V1::Report::Slice]
    #     Optional. Use to filter on a specific slice of data.
    # @!attribute [rw] time_period_index
    #   @return [::Integer]
    #     Optional. When using time period columns, use this to filter on a
    #     specific column.
    # @!attribute [rw] metric_value_type
    #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
    #     Optional. Use to specify which metric value type to filter on. Defaults
    #     to PRIMARY.
    class FieldFilter
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of filters.
    # @!attribute [rw] filters
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
    #     Required. A list of filters.
    class FilterList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Supported filter operations.
    module Operation
      # For scalar operands, checks if the operand is in the set of provided
      # filter values.
      #
      # For list operands, checks if any element in the operand is in the set
      # of provided filter values.
      #
      # Default value.
      IN = 0

      # For scalar operands, checks that the operand is not in the set of
      # provided filter values.
      #
      # For list operands, checks that none of the elements in the operand
      # is in the set of provided filter values.
      NOT_IN = 1

      # For scalar string operands, checks if the operand contains any of the
      # provided filter substrings.
      #
      # For string list operands, checks if any string in the operand contains
      # any of the provided filter substrings.
      CONTAINS = 2

      # For scalar string operands, checks that the operand contains none of
      # the provided filter substrings.
      #
      # For string list operands, checks that none of the strings in the
      # operand contain none of the provided filter substrings.
      NOT_CONTAINS = 3

      # Operand is less than the provided filter value.
      LESS_THAN = 4

      # Operand is less than or equal to provided filter value.
      LESS_THAN_EQUALS = 5

      # Operand is greater than provided filter value.
      GREATER_THAN = 6

      # Operand is greater than or equal to provided filter value.
      GREATER_THAN_EQUALS = 7

      # Operand is between provided filter values.
      BETWEEN = 8

      # Operand matches against a regex or set of regexes (one must match)
      MATCHES = 9

      # Operand negative matches against a regex or set of regexes (none must
      # match)
      NOT_MATCHES = 10
    end
  end

  # A flag for a report. Flags are used show if certain thresholds are met.
  # Result rows that match the filter will have the corresponding
  # [MetricValueGroup.flagValues][MetricValueGroup] index set to true.
  # For more information about flags see:
  # https://support.google.com/admanager/answer/15079975
  # @!attribute [rw] filters
  #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
  #     Required. Filters to apply for the flag.
  # @!attribute [rw] name
  #   @return [::String]
  #     Optional. Name of the flag.
  #     The flag names RED, YELLOW, GREEN, BLUE, PURPLE, and GREY correspond to
  #     the colored flags that appear in the UI. The UI will not display flags
  #     with other names, but they are available for use by API clients.
  class Flag
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A date range for a report.
  # @!attribute [rw] fixed
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::FixedDateRange]
  #     A fixed date range.
  #
  #     Note: The following fields are mutually exclusive: `fixed`, `relative`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] relative
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::RelativeDateRange]
  #     A relative date range.
  #
  #     Note: The following fields are mutually exclusive: `relative`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class DateRange
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A date range between two fixed dates (inclusive of end date).
    # @!attribute [rw] start_date
    #   @return [::Google::Type::Date]
    #     Required. The start date of this date range.
    # @!attribute [rw] end_date
    #   @return [::Google::Type::Date]
    #     Required. The end date (inclusive) of this date range.
    class FixedDateRange
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Options for relative date ranges.
    module RelativeDateRange
      # Default value. This value is unused.
      RELATIVE_DATE_RANGE_UNSPECIFIED = 0

      # The date the report is run.
      TODAY = 1

      # The date a day before the date that the report is run.
      YESTERDAY = 2

      # The full week in which this report is run. Could include dates in
      # the future.
      THIS_WEEK = 3

      # From the beginning of the calendar week (Monday to Sunday) in which the
      # up to and including the day the report is run.
      THIS_WEEK_TO_DATE = 29

      # The full month in which this report is run. Could include dates in
      # the future.
      THIS_MONTH = 4

      # From the beginning of the calendar month in which the report is run, to
      # up to and including the day the report is run.
      THIS_MONTH_TO_DATE = 26

      # The full quarter in which this report is run. Could include dates
      # in the future.
      THIS_QUARTER = 5

      # From the beginning of the calendar quarter in which the report is run,
      # up to and including the day the report is run.
      THIS_QUARTER_TO_DATE = 27

      # The full year in which this report is run. Could include dates in
      # the future.
      THIS_YEAR = 6

      # From the beginning of the calendar year in which the report is run, to
      # up to and including the day the report is run.
      THIS_YEAR_TO_DATE = 28

      # The entire previous calendar week, Monday to Sunday (inclusive),
      # preceding the calendar week the report is run.
      LAST_WEEK = 7

      # The entire previous calendar month preceding the calendar month the
      # report is run.
      LAST_MONTH = 8

      # The entire previous calendar quarter preceding the calendar quarter the
      # report is run.
      LAST_QUARTER = 9

      # The entire previous calendar year preceding the calendar year the
      # report is run.
      LAST_YEAR = 10

      # The 7 days preceding the day the report is run.
      LAST_7_DAYS = 11

      # The 30 days preceding the day the report is run.
      LAST_30_DAYS = 12

      # The 60 days preceding the day the report is run.
      LAST_60_DAYS = 13

      # The 90 days preceding the day the report is run.
      LAST_90_DAYS = 14

      # The 180 days preceding the day the report is run.
      LAST_180_DAYS = 15

      # The 360 days preceding the day the report is run.
      LAST_360_DAYS = 16

      # The 365 days preceding the day the report is run.
      LAST_365_DAYS = 17

      # The entire previous 3 calendar months preceding the calendar month the
      # report is run.
      LAST_3_MONTHS = 18

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_6_MONTHS = 19

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_12_MONTHS = 20

      # From 3 years before the report is run, to the day before the report is
      # run, inclusive.
      ALL_AVAILABLE = 21

      # Only valid when used in the comparison_date_range field. The complete
      # period preceding the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange of N days, this will
      # be a period of N days where the end date is the date preceding the
      # start date of the date_range.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame preceding the date_range. In the case
      # where the date_range does not capture the full period because a report
      # is run in the middle of that period, this will still be the full
      # preceding period. For example, if date_range is THIS_WEEK, but the
      # report is run on a Wednesday, THIS_WEEK will be Monday - Wednesday, but
      # PREVIOUS_PERIOD will be Monday - Sunday.
      PREVIOUS_PERIOD = 22

      # Only valid when used in the comparison_date_range field. The period
      # starting 1 year prior to the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange, this will be a date
      # range starting 1 year prior to the date_range start date and ending 1
      # year prior to the date_range end date.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame exactly 1 year prior to the date_range.
      # In the case where the date_range does not capture the full period
      # because a report is run in the middle of that period, this will still
      # be the full period 1 year prior. For example, if date range is
      # THIS_WEEK, but the report is run on a Wednesday, THIS_WEEK will be
      # Monday - Wednesday, but SAME_PERIOD_PREVIOUS_YEAR will be Monday -
      # Sunday.
      SAME_PERIOD_PREVIOUS_YEAR = 24
    end
  end

  # Valid time period columns.
  module TimePeriodColumn
    # Default value. Report will have no time period column.
    TIME_PERIOD_COLUMN_UNSPECIFIED = 0

    # A column for each date in the report.
    TIME_PERIOD_COLUMN_DATE = 1

    # A column for each week in the report.
    TIME_PERIOD_COLUMN_WEEK = 2

    # A column for each month in the report.
    TIME_PERIOD_COLUMN_MONTH = 3

    # A column for each quarter in the report.
    TIME_PERIOD_COLUMN_QUARTER = 4
  end

  # Reporting dimensions.
  module Dimension
    # Default value. This value is unused.
    DIMENSION_UNSPECIFIED = 0

    # The domain name of the advertiser.
    ADVERTISER_DOMAIN_NAME = 242

    # The ID used in an external system for advertiser identification
    ADVERTISER_EXTERNAL_ID = 228

    # The ID of an advertiser company assigned to an order
    ADVERTISER_ID = 131

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABELS = 230

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABEL_IDS = 229

    # The name of an advertiser company assigned to an order
    ADVERTISER_NAME = 132

    # The name of the contact associated with an advertiser company
    ADVERTISER_PRIMARY_CONTACT = 227

    # Shows an ENUM value describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION = 390

    # Shows a localized string describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION_NAME = 391

    # The code of the ad unit where the ad was requested.
    AD_UNIT_CODE = 64

    # The code of the first level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_1 = 65

    # The code of the tenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_10 = 74

    # The code of the eleventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_11 = 75

    # The code of the twelfth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_12 = 76

    # The code of the thirteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_13 = 77

    # The code of the fourteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_14 = 78

    # The code of the fifteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_15 = 79

    # The code of the sixteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_16 = 80

    # The code of the second level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_2 = 66

    # The code of the third level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_3 = 67

    # The code of the fourth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_4 = 68

    # The code of the fifth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_5 = 69

    # The code of the sixth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_6 = 70

    # The code of the seventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_7 = 71

    # The code of the eighth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_8 = 72

    # The code of the ninth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_9 = 73

    # The depth of the ad unit's hierarchy
    AD_UNIT_DEPTH = 101

    # The ID of the ad unit where the ad was requested.
    AD_UNIT_ID = 25

    # The full hierarchy of ad unit IDs where the ad was requested, from
    # root to leaf, excluding the root ad unit ID.
    AD_UNIT_ID_ALL_LEVEL = 27

    # The first level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_1 = 30

    # The tenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_10 = 48

    # The eleventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_11 = 50

    # The twelfth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_12 = 52

    # The thirteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_13 = 54

    # The fourteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_14 = 56

    # The fifteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_15 = 58

    # The sixteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_16 = 60

    # The second level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_2 = 32

    # The third level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_3 = 34

    # The fourth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_4 = 36

    # The fifth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_5 = 38

    # The sixth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_6 = 40

    # The seventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_7 = 42

    # The eighth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_8 = 44

    # The ninth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_9 = 46

    # The top-level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_TOP_LEVEL = 142

    # The name of the ad unit where the ad was requested.
    AD_UNIT_NAME = 26

    # The full hierarchy of ad unit names where the ad was requested, from
    # root to leaf, excluding the root ad unit name.
    AD_UNIT_NAME_ALL_LEVEL = 29

    # The first level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_1 = 31

    # The tenth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_10 = 49

    # The eleventh level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_11 = 51

    # The twelfth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_12 = 53

    # The thirteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_13 = 55

    # The fourteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_14 = 57

    # The fifteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_15 = 59

    # The sixteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_16 = 61

    # The second level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_2 = 33

    # The third level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_3 = 35

    # The fourth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_4 = 37

    # The fifth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_5 = 39

    # The sixth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_6 = 41

    # The seventh level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_7 = 43

    # The eighth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_8 = 45

    # The ninth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_9 = 47

    # The top-level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_TOP_LEVEL = 143

    # The reward amount of the ad unit where the ad was requested.
    AD_UNIT_REWARD_AMOUNT = 63

    # The reward type of the ad unit where the ad was requested.
    AD_UNIT_REWARD_TYPE = 62

    # The status of the ad unit
    AD_UNIT_STATUS = 206

    # The name of the status of the ad unit
    AD_UNIT_STATUS_NAME = 207

    # The app version.
    APP_VERSION = 392

    # The ID used in an external system for advertiser identification
    BACKFILL_ADVERTISER_EXTERNAL_ID = 349

    # The ID of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_ID = 346

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABELS = 351

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABEL_IDS = 350

    # The name of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_NAME = 347

    # The name of the contact associated with an advertiser company
    BACKFILL_ADVERTISER_PRIMARY_CONTACT = 348

    # Enum value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE = 378

    # Localized string value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE_NAME = 379

    # Represents the click-through URL of a Backfill creative
    BACKFILL_CREATIVE_CLICK_THROUGH_URL = 376

    # The ID of a Backfill creative
    BACKFILL_CREATIVE_ID = 370

    # Backfill creative name
    BACKFILL_CREATIVE_NAME = 371

    # Third party vendor name of a Backfill creative
    BACKFILL_CREATIVE_THIRD_PARTY_VENDOR = 377

    # Enum value of Backfill creative type
    BACKFILL_CREATIVE_TYPE = 374

    # Localized string name of Backfill creative type
    BACKFILL_CREATIVE_TYPE_NAME = 375

    # Whether a Backfill line item is archived.
    BACKFILL_LINE_ITEM_ARCHIVED = 278

    # Backfill line item comanion delivery option ENUM value.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION = 258

    # Localized Backfill line item comanion delivery option name.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 259

    # The computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS = 296

    # The localized name of the computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME = 297

    # The contracted units bought for the Backfill line item.
    BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY = 280

    # The cost per unit of the Backfill line item.
    BACKFILL_LINE_ITEM_COST_PER_UNIT = 272

    # Backfill line item cost type ENUM value.
    BACKFILL_LINE_ITEM_COST_TYPE = 264

    # Localized Backfill line item cost type name.
    BACKFILL_LINE_ITEM_COST_TYPE_NAME = 265

    # Represent the end date of a Backfill creative associated with a Backfill
    # line item
    BACKFILL_LINE_ITEM_CREATIVE_END_DATE = 381

    # The creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE = 290

    # The localized name of the creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 291

    # Represent the start date of a Backfill creative associated with a
    # Backfill line item
    BACKFILL_LINE_ITEM_CREATIVE_START_DATE = 380

    # The 3 letter currency code of the Backfill line item
    BACKFILL_LINE_ITEM_CURRENCY_CODE = 288

    # The progress made for the delivery of the Backfill line item.
    BACKFILL_LINE_ITEM_DELIVERY_INDICATOR = 274

    # The delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE = 292

    # The localized name of the delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 293

    # The discount of the BackfillLineItem in whole units in the
    # BackfillLineItem's currency code, or if unspecified the Network's
    # currency code.
    BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE = 294

    # The discount of the BackfillLineItem in percentage.
    BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE = 295

    # The end date of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE = 267

    # The end date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE_TIME = 269

    # The ENUM value of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE = 302

    # The localized name of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME = 257

    # The deal ID of the Backfill line item. Set for Programmatic Direct
    # campaigns.
    BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID = 285

    # The external ID of the Backfill line item.
    BACKFILL_LINE_ITEM_EXTERNAL_ID = 273

    # The frequency cap of the Backfill line item (descriptive string).
    BACKFILL_LINE_ITEM_FREQUENCY_CAP = 303

    # Backfill line item ID.
    BACKFILL_LINE_ITEM_ID = 298

    # The application that last modified the Backfill line item.
    BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP = 289

    # The total number of clicks delivered of the lifetime of the Backfill line
    # item.
    BACKFILL_LINE_ITEM_LIFETIME_CLICKS = 283

    # The total number of impressions delivered over the lifetime of the
    # Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS = 282

    # The total number of viewable impressions delivered over the lifetime of
    # the Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 284

    # Whether or not the Backfill line item is Makegood. Makegood refers to
    # free inventory offered to buyers to compensate for mistakes or
    # under-delivery in the original campaigns.
    BACKFILL_LINE_ITEM_MAKEGOOD = 276

    # Backfill line item name.
    BACKFILL_LINE_ITEM_NAME = 299

    # The cost of booking for the Backfill line item (non-CPD).
    BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE = 286

    # Whether a Backfill line item is eligible for opitimization.
    BACKFILL_LINE_ITEM_OPTIMIZABLE = 277

    # Goal type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE = 262

    # Localized goal type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 263

    # Unit type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 260

    # Localized unit type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 261

    # The priority of this Backfill line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Backfill line item.
    BACKFILL_LINE_ITEM_PRIORITY = 266

    # ENUM value describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS = 306

    # Localized string describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME = 307

    # The start date of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE = 268

    # The start date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE_TIME = 270

    # Backfill line item type ENUM value.
    BACKFILL_LINE_ITEM_TYPE = 300

    # Localized Backfill line item type name.
    BACKFILL_LINE_ITEM_TYPE_NAME = 301

    # Whether the Backfill line item end time and end date is set to
    # effectively never end.
    BACKFILL_LINE_ITEM_UNLIMITED_END = 271

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT = 275

    # The web property code used for dynamic allocation Backfill line items.
    BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE = 287

    # The ID of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_ID = 372

    # Name of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_NAME = 373

    # Backfill order agency.
    BACKFILL_ORDER_AGENCY = 313

    # Backfill order agency ID.
    BACKFILL_ORDER_AGENCY_ID = 314

    # Backfill order booked CPC.
    BACKFILL_ORDER_BOOKED_CPC = 315

    # Backfill order booked CPM.
    BACKFILL_ORDER_BOOKED_CPM = 316

    # Backfill order delivery status ENUM value.
    BACKFILL_ORDER_DELIVERY_STATUS = 340

    # Backfill order delivery status localized name.
    BACKFILL_ORDER_DELIVERY_STATUS_NAME = 341

    # Backfill order end date.
    BACKFILL_ORDER_END_DATE = 317

    # Backfill order end date and time.
    BACKFILL_ORDER_END_DATE_TIME = 319

    # Backfill order external ID.
    BACKFILL_ORDER_EXTERNAL_ID = 320

    # Backfill order id.
    BACKFILL_ORDER_ID = 338

    # Backfill order labels.
    BACKFILL_ORDER_LABELS = 334

    # Backfill order labels IDs.
    BACKFILL_ORDER_LABEL_IDS = 335

    # Backfill order lifetime clicks.
    BACKFILL_ORDER_LIFETIME_CLICKS = 322

    # Backfill order lifetime impressions.
    BACKFILL_ORDER_LIFETIME_IMPRESSIONS = 323

    # Backfill order name.
    BACKFILL_ORDER_NAME = 339

    # Backfill order PO number.
    BACKFILL_ORDER_PO_NUMBER = 324

    # Whether the Backfill order is programmatic.
    BACKFILL_ORDER_PROGRAMMATIC = 321

    # Backfill order sales person.
    BACKFILL_ORDER_SALESPERSON = 325

    # Backfill order secondary sales people.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE = 329

    # Backfill order secondary sales people ID.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID = 328

    # Backfill order secondary traffickers.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS = 331

    # Backfill order secondary traffickers ID.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID = 330

    # Backfill order start date.
    BACKFILL_ORDER_START_DATE = 332

    # Backfill order start date and time.
    BACKFILL_ORDER_START_DATE_TIME = 333

    # Backfill order trafficker.
    BACKFILL_ORDER_TRAFFICKER = 326

    # Backfill order trafficker ID.
    BACKFILL_ORDER_TRAFFICKER_ID = 327

    # Whether the Backfill order end time and end date is set to effectively
    # never end.
    BACKFILL_ORDER_UNLIMITED_END = 318

    # The ID of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_ID = 336

    # The name of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_NAME = 337

    # The amount of information about the Publisher's page sent to the buyer
    # who purchased the impressions.
    BRANDING_TYPE = 383

    # The localized version of branding type, the amount of information about
    # the Publisher's page sent to the buyer who purchased the impressions.
    BRANDING_TYPE_NAME = 384

    # Browser category.
    BROWSER_CATEGORY = 119

    # Browser category name.
    BROWSER_CATEGORY_NAME = 120

    # The ID of the browser.
    BROWSER_ID = 235

    # The name of the browser.
    BROWSER_NAME = 236

    # Mobile carrier ID.
    CARRIER_ID = 369

    # Name of the mobile carrier.
    CARRIER_NAME = 368

    # The ID of an advertiser, classified by Google, associated with a creative
    # transacted
    CLASSIFIED_ADVERTISER_ID = 133

    # The name of an advertiser, classified by Google, associated with a
    # creative transacted
    CLASSIFIED_ADVERTISER_NAME = 134

    # ID of the brand, as classified by Google,
    CLASSIFIED_BRAND_ID = 243

    # Name of the brand, as classified by Google,
    CLASSIFIED_BRAND_NAME = 244

    # ID of the video content served.
    CONTENT_ID = 246

    # Name of the video content served.
    CONTENT_NAME = 247

    # The criteria ID of the country in which the ad served.
    COUNTRY_ID = 11

    # The name of the country in which the ad served.
    COUNTRY_NAME = 12

    # Enum value of creative billing type
    CREATIVE_BILLING_TYPE = 366

    # Localized string value of creative billing type
    CREATIVE_BILLING_TYPE_NAME = 367

    # Represents the click-through URL of a creative
    CREATIVE_CLICK_THROUGH_URL = 174

    # The ID of a creative
    CREATIVE_ID = 138

    # Creative name
    CREATIVE_NAME = 139

    # Creative technology ENUM
    CREATIVE_TECHNOLOGY = 148

    # Creative technology locallized name
    CREATIVE_TECHNOLOGY_NAME = 149

    # Third party vendor name of a creative
    CREATIVE_THIRD_PARTY_VENDOR = 361

    # Enum value of creative type
    CREATIVE_TYPE = 344

    # Localized string name of creative type
    CREATIVE_TYPE_NAME = 345

    # Breaks down reporting data by date.
    DATE = 3

    # Breaks down reporting data by day of the week. Monday is 1 and 7 is
    # Sunday.
    DAY_OF_WEEK = 4

    # Demand channel.
    DEMAND_CHANNEL = 9

    # Demand channel name.
    DEMAND_CHANNEL_NAME = 10

    # Demand subchannel.
    DEMAND_SUBCHANNEL = 22

    # Demand subchannel name.
    DEMAND_SUBCHANNEL_NAME = 23

    # The device on which an ad was served.
    DEVICE = 226

    # The device category to which an ad is being targeted.
    DEVICE_CATEGORY = 15

    # The name of the category of device (smartphone, feature phone, tablet, or
    # desktop) to which an ad is being targeted.
    DEVICE_CATEGORY_NAME = 16

    # The localized name of the device on which an ad was served.
    DEVICE_NAME = 225

    # ID of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_ID = 185

    # Name of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186

    # The ID of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_ID = 248

    # The name of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_NAME = 249

    # Breaks down reporting data by hour in one day.
    HOUR = 100

    # The interaction type of an ad.
    INTERACTION_TYPE = 223

    # The localized name of the interaction type of an ad.
    INTERACTION_TYPE_NAME = 224

    # Inventory format.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT = 17

    # Inventory format name.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT_NAME = 18

    # Inventory type.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE = 19

    # Inventory type name.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE_NAME = 20

    # Whether traffic is Adx Direct.
    IS_ADX_DIRECT = 382

    # Whether traffic is First Look.
    IS_FIRST_LOOK_DEAL = 401

    # The Custom Targeting Value ID
    KEY_VALUES_ID = 214

    # The Custom Targeting Value formatted like <key_name>=<value_name>
    KEY_VALUES_NAME = 215

    # Whether a Line item is archived.
    LINE_ITEM_ARCHIVED = 188

    # Line item comanion delivery option ENUM value.
    LINE_ITEM_COMPANION_DELIVERY_OPTION = 204

    # Localized line item comanion delivery option name.
    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205

    # The computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS = 250

    # The localized name of the computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS_NAME = 251

    # The contracted units bought for the Line item.
    LINE_ITEM_CONTRACTED_QUANTITY = 92

    # The cost per unit of the Line item.
    LINE_ITEM_COST_PER_UNIT = 85

    # Line item cost type ENUM value.
    LINE_ITEM_COST_TYPE = 212

    # Localized line item cost type name.
    LINE_ITEM_COST_TYPE_NAME = 213

    # Represent the end date of a creative associated with line item
    LINE_ITEM_CREATIVE_END_DATE = 176

    # The creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE = 189

    # The localized name of the creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190

    # Represent the start date of a creative associated with line item
    LINE_ITEM_CREATIVE_START_DATE = 175

    # The 3 letter currency code of the Line Item
    LINE_ITEM_CURRENCY_CODE = 180

    # The progress made for the delivery of the Line item.
    LINE_ITEM_DELIVERY_INDICATOR = 87

    # The delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE = 191

    # The localized name of the delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192

    # The discount of the LineItem in whole units in the LineItem's currency
    # code, or if unspecified the Network's currency code.
    LINE_ITEM_DISCOUNT_ABSOLUTE = 195

    # The discount of the LineItem in percentage.
    LINE_ITEM_DISCOUNT_PERCENTAGE = 196

    # The end date of the Line item.
    LINE_ITEM_END_DATE = 81

    # The end date and time of the Line item.
    LINE_ITEM_END_DATE_TIME = 83

    # The ENUM value of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE = 201

    # The localized name of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202

    # The deal ID of the Line item. Set for Programmatic Direct campaigns.
    LINE_ITEM_EXTERNAL_DEAL_ID = 97

    # The external ID of the Line item.
    LINE_ITEM_EXTERNAL_ID = 86

    # The frequency cap of the Line item (descriptive string).
    LINE_ITEM_FREQUENCY_CAP = 256

    # Line item ID.
    LINE_ITEM_ID = 1

    # The application that last modified the Line Item.
    LINE_ITEM_LAST_MODIFIED_BY_APP = 181

    # The total number of clicks delivered of the lifetime of the Line item.
    LINE_ITEM_LIFETIME_CLICKS = 95

    # The total number of impressions delivered over the lifetime of the
    # Line item.
    LINE_ITEM_LIFETIME_IMPRESSIONS = 94

    # The total number of viewable impressions delivered over the lifetime of
    # the Line item.
    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96

    # Whether or not the Line item is Makegood. Makegood refers to free
    # inventory offered to buyers to compensate for mistakes or under-delivery
    # in the original campaigns.
    LINE_ITEM_MAKEGOOD = 89

    # Line item Name.
    LINE_ITEM_NAME = 2

    # The cost of booking for the Line item (non-CPD).
    LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98

    # Whether a Line item is eligible for opitimization.
    LINE_ITEM_OPTIMIZABLE = 90

    # Goal type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE = 210

    # Localized goal type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211

    # The total number of impressions or clicks that are reserved for a
    # line item. For line items of type BULK or PRICE_PRIORITY, this represents
    # the number of remaining impressions reserved. If the line item has an
    # impression cap goal, this represents the number of impressions or
    # conversions that the line item will stop serving at if reached.
    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93

    # The percentage of impressions or clicks that are reserved for a
    # line item. For line items of type SPONSORSHIP, this represents the
    # percentage of available impressions reserved. For line items of type
    # NETWORK or HOUSE, this represents the percentage of remaining impressions
    # reserved.
    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396

    # Unit type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208

    # Localized unit type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209

    # The priority of this Line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Line item.
    LINE_ITEM_PRIORITY = 24

    # ENUM value describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS = 304

    # Localized string describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS_NAME = 305

    # The start date of the Line item.
    LINE_ITEM_START_DATE = 82

    # The start date and time of the Line item.
    LINE_ITEM_START_DATE_TIME = 84

    # Line item type ENUM value.
    LINE_ITEM_TYPE = 193

    # Localized line item type name.
    LINE_ITEM_TYPE_NAME = 194

    # Whether the Line item end time and end date is set to effectively never
    # end.
    LINE_ITEM_UNLIMITED_END = 187

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    LINE_ITEM_VALUE_COST_PER_UNIT = 88

    # The web property code used for dynamic allocation Line Items.
    LINE_ITEM_WEB_PROPERTY_CODE = 179

    # The ID of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_ID = 140

    # Name of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_NAME = 141

    # Whether the mobile app is free.
    MOBILE_APP_FREE = 128

    # URL of app icon for the mobile app.
    MOBILE_APP_ICON_URL = 129

    # The ID of the Mobile App.
    MOBILE_APP_ID = 123

    # The name of the mobile app.
    MOBILE_APP_NAME = 127

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS = 311

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS_NAME = 312

    # The App Store of the mobile app.
    MOBILE_APP_STORE = 125

    # The localized name of the mobile app store.
    MOBILE_APP_STORE_NAME = 245

    # Mobile inventory type.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    # Values match the Inventory type dimension available in the Overview Home
    # dashboard. Note: Video takes precedence over any other value, for
    # example, if there is an in-stream video impression on a desktop device,
    # it will be attributed to in-stream video and not desktop web.
    MOBILE_INVENTORY_TYPE = 99

    # Mobile inventory type name.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    MOBILE_INVENTORY_TYPE_NAME = 21

    # SDK version of the mobile device.
    MOBILE_SDK_VERSION_NAME = 130

    # Breaks down reporting data by month and year.
    MONTH_YEAR = 6

    # Native ad format ID.
    NATIVE_AD_FORMAT_ID = 255

    # Native ad format name.
    NATIVE_AD_FORMAT_NAME = 254

    # Native style ID.
    NATIVE_STYLE_ID = 253

    # Native style name.
    NATIVE_STYLE_NAME = 252

    # Operating system category.
    OPERATING_SYSTEM_CATEGORY = 117

    # Operating system category name.
    OPERATING_SYSTEM_CATEGORY_NAME = 118

    # ID of the operating system version.
    OPERATING_SYSTEM_VERSION_ID = 238

    # Details of the operating system, including version.
    OPERATING_SYSTEM_VERSION_NAME = 237

    # Order agency.
    ORDER_AGENCY = 150

    # Order agency ID.
    ORDER_AGENCY_ID = 151

    # Order booked CPC.
    ORDER_BOOKED_CPC = 152

    # Order booked CPM.
    ORDER_BOOKED_CPM = 153

    # Order delivery status ENUM value.
    ORDER_DELIVERY_STATUS = 231

    # Order delivery status localized name.
    ORDER_DELIVERY_STATUS_NAME = 239

    # Order end date.
    ORDER_END_DATE = 154

    # Order end date and time.
    ORDER_END_DATE_TIME = 155

    # Order external ID.
    ORDER_EXTERNAL_ID = 156

    # Order id.
    ORDER_ID = 7

    # Order labels.
    ORDER_LABELS = 170

    # Order labels IDs.
    ORDER_LABEL_IDS = 171

    # Order lifetime clicks.
    ORDER_LIFETIME_CLICKS = 158

    # Order lifetime impressions.
    ORDER_LIFETIME_IMPRESSIONS = 159

    # Order name.
    ORDER_NAME = 8

    # Order PO number.
    ORDER_PO_NUMBER = 160

    # Whether the Order is programmatic.
    ORDER_PROGRAMMATIC = 157

    # Order sales person.
    ORDER_SALESPERSON = 161

    # Order secondary sales people.
    ORDER_SECONDARY_SALESPEOPLE = 164

    # Order secondary sales people ID.
    ORDER_SECONDARY_SALESPEOPLE_ID = 165

    # Order secondary traffickers.
    ORDER_SECONDARY_TRAFFICKERS = 166

    # Order secondary traffickers ID.
    ORDER_SECONDARY_TRAFFICKERS_ID = 167

    # Order start date.
    ORDER_START_DATE = 168

    # Order start date and time.
    ORDER_START_DATE_TIME = 169

    # Order trafficker.
    ORDER_TRAFFICKER = 162

    # Order trafficker ID.
    ORDER_TRAFFICKER_ID = 163

    # Whether the Order end time and end date is set to effectively never
    # end.
    ORDER_UNLIMITED_END = 203

    # Placement ID
    PLACEMENT_ID = 113

    # The full list of placement IDs associated with the ad unit.
    PLACEMENT_ID_ALL = 144

    # Placement name
    PLACEMENT_NAME = 114

    # The full list of placement names associated with the ad unit.
    PLACEMENT_NAME_ALL = 145

    # Placement status ENUM value
    PLACEMENT_STATUS = 362

    # The full list of placement status ENUM values associated with the ad
    # unit.
    PLACEMENT_STATUS_ALL = 363

    # Localized placement status name.
    PLACEMENT_STATUS_NAME = 364

    # The full list of localized placement status names associated with the ad
    # unit.
    PLACEMENT_STATUS_NAME_ALL = 365

    # The ID of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_ID = 240

    # The name of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_NAME = 241

    # Programmatic channel.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL = 13

    # Programmatic channel name.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL_NAME = 14

    # The size of a rendered creative, It can differ with the creative's size
    # if a creative is shown in an ad slot of a different size.
    RENDERED_CREATIVE_SIZE = 343

    # Inventory Requested Ad Sizes dimension
    REQUESTED_AD_SIZES = 352

    # Request type ENUM
    REQUEST_TYPE = 146

    # Request type locallized name
    REQUEST_TYPE_NAME = 147

    # Indicates if a request was eligible for server-side unwrapping.
    SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597

    # Information about domain or subdomains.
    SITE = 387

    # The ID of the browser, device or other environment into which a line item
    # or creative was served.
    TARGETING_ID = 232

    # Information about the browser, device and other environments into which
    # a line item or creative was served.
    TARGETING_NAME = 233

    # The way in which advertisers targeted their ads.
    TARGETING_TYPE = 385

    # The localized name of the way in which advertisers targeted their ads.
    TARGETING_TYPE_NAME = 386

    # Inventory Traffic source dimension
    TRAFFIC_SOURCE = 388

    # Inventory Traffic source dimension name
    TRAFFIC_SOURCE_NAME = 389

    # Unified pricing rule ID dimension
    UNIFIED_PRICING_RULE_ID = 393

    # Unified pricing rule name dimension
    UNIFIED_PRICING_RULE_NAME = 394

    # The video placement enum as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT = 172

    # The localized name of the video placement as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT_NAME = 173

    # Breaks down reporting data by week of the year.
    WEEK = 5

    # Name of the company within a yield group
    YIELD_GROUP_BUYER_NAME = 184

    # ID of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_ID = 182

    # Name of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_NAME = 183

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10_000

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10_001

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10_002

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10_003

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10_004

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10_005

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10_006

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10_007

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10_008

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10_009

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10_010

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10_011

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10_012

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10_013

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10_014

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11_000

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11_001

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11_002

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11_003

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11_004

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11_005

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11_006

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11_007

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11_008

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11_009

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11_010

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11_011

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11_012

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11_013

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11_014

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_0_OPTION_ID = 12_000

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_1_OPTION_ID = 12_001

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_2_OPTION_ID = 12_002

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_3_OPTION_ID = 12_003

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_4_OPTION_ID = 12_004

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_5_OPTION_ID = 12_005

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_6_OPTION_ID = 12_006

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_7_OPTION_ID = 12_007

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_8_OPTION_ID = 12_008

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_9_OPTION_ID = 12_009

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_10_OPTION_ID = 12_010

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_11_OPTION_ID = 12_011

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_12_OPTION_ID = 12_012

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_13_OPTION_ID = 12_013

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_14_OPTION_ID = 12_014

    # Custom field value for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 0 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_0_VALUE = 13_000

    # Custom field value for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 1 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_1_VALUE = 13_001

    # Custom field value for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 2 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_2_VALUE = 13_002

    # Custom field value for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 3 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_3_VALUE = 13_003

    # Custom field value for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 4 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_4_VALUE = 13_004

    # Custom field value for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 5 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_5_VALUE = 13_005

    # Custom field value for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 6 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_6_VALUE = 13_006

    # Custom field value for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 7 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_7_VALUE = 13_007

    # Custom field value for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 8 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_8_VALUE = 13_008

    # Custom field value for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 9 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_9_VALUE = 13_009

    # Custom field value for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_10_VALUE = 13_010

    # Custom field value for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_11_VALUE = 13_011

    # Custom field value for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_12_VALUE = 13_012

    # Custom field value for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_13_VALUE = 13_013

    # Custom field value for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_14_VALUE = 13_014

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14_000

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14_001

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14_002

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14_003

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14_004

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14_005

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14_006

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14_007

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14_008

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14_009

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14_010

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14_011

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14_012

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14_013

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14_014

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_0_VALUE = 15_000

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_1_VALUE = 15_001

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_2_VALUE = 15_002

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_3_VALUE = 15_003

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_4_VALUE = 15_004

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_5_VALUE = 15_005

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_6_VALUE = 15_006

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_7_VALUE = 15_007

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_8_VALUE = 15_008

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_9_VALUE = 15_009

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_10_VALUE = 15_010

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_11_VALUE = 15_011

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_12_VALUE = 15_012

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_13_VALUE = 15_013

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_14_VALUE = 15_014

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16_000

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16_001

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16_002

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16_003

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16_004

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16_005

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16_006

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16_007

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16_008

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16_009

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16_010

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16_011

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16_012

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16_013

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16_014

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 0 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17_000

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 1 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17_001

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 2 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17_002

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 3 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17_003

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 4 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17_004

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 5 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17_005

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 6 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17_006

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 7 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17_007

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 8 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17_008

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 9 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17_009

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17_010

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17_011

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17_012

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17_013

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17_014

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18_000

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18_001

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18_002

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18_003

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18_004

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18_005

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18_006

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18_007

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18_008

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18_009

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18_010

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18_011

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18_012

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18_013

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18_014

    # Custom field value for Backfill order with custom field ID equal to the
    # ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19_000

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19_001

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19_002

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19_003

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19_004

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19_005

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19_006

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19_007

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19_008

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19_009

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19_010

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19_011

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19_012

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19_013

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19_014

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20_000

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20_001

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20_002

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20_003

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20_004

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20_005

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20_006

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20_007

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20_008

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20_009

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20_010

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20_011

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20_012

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20_013

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20_014

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21_000

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 1 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21_001

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 2 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21_002

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 3 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21_003

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 4 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21_004

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 5 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21_005

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 6 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21_006

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 7 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21_007

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 8 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21_008

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 9 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21_009

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21_010

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21_011

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21_012

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21_013

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21_014

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE_ID = 100_000

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE_ID = 100_001

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE_ID = 100_002

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE_ID = 100_003

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE_ID = 100_004

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE_ID = 100_005

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE_ID = 100_006

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE_ID = 100_007

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE_ID = 100_008

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE_ID = 100_009

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE = 101_000

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE = 101_001

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE = 101_002

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE = 101_003

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE = 101_004

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE = 101_005

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE = 101_006

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 7 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE = 101_007

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE = 101_008

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE = 101_009
  end

  # Reporting metrics.
  module Metric
    # Default value. This value is unused.
    METRIC_UNSPECIFIED = 0

    # Active View total average time in seconds that specific impressions are
    # reported as being viewable.
    ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 61

    # Total number of impressions that were eligible to measure viewability.
    ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 58

    # The total number of impressions that were sampled and measured by active
    # view.
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 57

    # The percentage of total impressions that were measurable by active view
    # (out of all the total impressions sampled for active view).
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 60

    # The total number of impressions viewed on the user's screen.
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 56

    # The percentage of total impressions viewed on the user's screen (out of
    # the total impressions measurable by active view).
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 59

    # Active View AdSense average time in seconds that specific impressions are
    # reported as being viewable.
    ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 73

    # Total number of impressions delivered by AdSense that were eligible to
    # measure viewability.
    ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 70

    # The number of impressions delivered by AdSense that were sampled, and
    # measurable by active view.
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 69

    # The percentage of impressions delivered by AdSense that were measurable
    # by active view (out of all AdSense impressions sampled for active view).
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 72

    # The number of impressions delivered by AdSense viewed on the user's
    # screen.
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 68

    # The percentage of impressions delivered by AdSense viewed on the user's
    # screen (out of AdSense impressions measurable by active view).
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 71

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by AdSense through line item dynamic allocation.
    ADSENSE_AVERAGE_ECPM = 26

    # Number of clicks delivered by AdSense demand channel.
    ADSENSE_CLICKS = 23

    # The ratio of impressions served by AdSense that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. The
    # AdSense CTR is calculated as: (AdSense clicks / AdSense impressions).
    ADSENSE_CTR = 24

    # Total impressions delivered by AdSense.
    ADSENSE_IMPRESSIONS = 22

    # Ratio of clicks delivered by AdSense through line item dynamic allocation
    # in relation to the total clicks delivered.
    ADSENSE_PERCENT_CLICKS = 28

    # Ratio of impressions delivered by AdSense through line item dynamic
    # allocation in relation to the total impressions delivered.
    ADSENSE_PERCENT_IMPRESSIONS = 27

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue.
    ADSENSE_PERCENT_REVENUE = 29

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    ADSENSE_PERCENT_REVENUE_WITHOUT_CPD = 30

    # The total number of times that an AdSense ad is delivered.
    ADSENSE_RESPONSES_SERVED = 41

    # Revenue generated from AdSense through line item dynamic allocation,
    # calculated in the network's currency and time zone.
    ADSENSE_REVENUE = 25

    # Active View AdExchange average time in seconds that specific impressions
    # are reported as being viewable.
    AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 79

    # Total number of impressions delivered by Ad Exchange that were eligible
    # to measure viewability.
    AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 76

    # The number of impressions delivered by Ad Exchange that were sampled, and
    # measurable by active view.
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 75

    # The percentage of impressions delivered by Ad Exchange that were
    # measurable by active view (out of all Ad Exchange impressions sampled for
    # active view).
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 78

    # The number of impressions delivered by Ad Exchange viewed on the user's
    # screen.
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 74

    # The percentage of impressions delivered by Ad Exchange viewed on the
    # user's screen (out of Ad Exchange impressions measurable by active view).
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 77

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by Ad Exchange through line item dynamic allocation.
    AD_EXCHANGE_AVERAGE_ECPM = 18

    # Number of clicks delivered by the Ad Exchange.
    AD_EXCHANGE_CLICKS = 15

    # The ratio of impressions served by the Ad Exchange that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. Ad
    # Exchange CTR is calculated as: (Ad Exchange clicks / Ad Exchange
    # impressions).
    AD_EXCHANGE_CTR = 16

    # Total impressions delivered by the Ad Exchange.
    AD_EXCHANGE_IMPRESSIONS = 14

    # Ratio of clicks delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total clicks delivered.
    AD_EXCHANGE_PERCENT_CLICKS = 20

    # Ratio of impressions delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total impressions delivered.
    AD_EXCHANGE_PERCENT_IMPRESSIONS = 19

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue.
    AD_EXCHANGE_PERCENT_REVENUE = 21

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD = 31

    # The total number of times that an Ad Exchange ad is delivered.
    AD_EXCHANGE_RESPONSES_SERVED = 42

    # Revenue generated from the Ad Exchange through line item dynamic
    # allocation, calculated in your network's currency and time zone.
    AD_EXCHANGE_REVENUE = 17

    # The total number of times that an ad request is sent to the ad server
    # including dynamic allocation.
    AD_REQUESTS = 38

    # Active View ad server average time in seconds that specific impressions
    # are reported as being viewable.
    AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 67

    # Total number of impressions delivered by the ad server that were eligible
    # to measure viewability.
    AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 64

    # The number of impressions delivered by the ad server that were sampled,
    # and measurable by active view.
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 63

    # The percentage of impressions delivered by the ad server that were
    # measurable by active view (out of all the ad server impressions sampled
    # for active view).
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 66

    # The number of impressions delivered by the ad server viewed on the user's
    # screen.
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 62

    # The percentage of impressions delivered by the ad server viewed on the
    # user's screen (out of the ad server impressions measurable by active
    # view).
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 65

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server.
    AD_SERVER_AVERAGE_ECPM = 34

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server, excluding CPD value.
    AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD = 10

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown.
    AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS = 262

    # Total clicks served by the Google Ad Manager server. It usually takes
    # about 30 minutes for new clicks to be recorded and added to the total
    # displayed in reporting.
    AD_SERVER_CLICKS = 7

    # CPD revenue earned, calculated in your network's currency, for
    # the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_CPD_REVENUE = 32

    # Ratio of impressions served by the Google Ad Manager server that resulted
    # in users clicking on an ad. The clickthrough rate (CTR) is updated
    # nightly. The ad server CTR is calculated as: (Ad server clicks / Ad
    # server impressions).
    AD_SERVER_CTR = 8

    # Total impressions delivered by the Ad Server.
    AD_SERVER_IMPRESSIONS = 6

    # Ratio of clicks delivered by the Google Ad Manager server in relation to
    # the total clicks delivered.
    AD_SERVER_PERCENT_CLICKS = 12

    # Ratio of impressions delivered by the Google Ad Manager server in
    # relation to the total impressions delivered.
    AD_SERVER_PERCENT_IMPRESSIONS = 11

    # Ratio of revenue generated by the Google Ad Manager server in relation
    # to the total revenue.
    AD_SERVER_PERCENT_REVENUE = 35

    # Ratio of revenue generated by the Google Ad Manager server (excluding
    # CPD) in relation to the total revenue.
    AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13

    # The total number of times that an ad is served by the ad server.
    AD_SERVER_RESPONSES_SERVED = 40

    # All CPM, CPC, and CPD revenue earned, calculated in your network's
    # currency, for the ads delivered by the Google Ad Manager server.
    # Sum of all booked revenue.
    AD_SERVER_REVENUE = 33

    # Revenue (excluding CPD) earned, calculated in your network's currency,
    # for the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_REVENUE_WITHOUT_CPD = 9

    # The number of tracked ads delivered by the ad server.
    AD_SERVER_TRACKED_ADS = 264

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown, before invalid traffic filtrations by
    # Ad Server.
    AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261

    # Total clicks delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_CLICKS = 259

    # Total impressions delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_IMPRESSIONS = 260

    # The number of tracked ads delivered by the ad server before invalid
    # traffic filtrations.
    AD_SERVER_UNFILTERED_TRACKED_ADS = 263

    # eCPM averaged across the Google Ad Manager server, AdSense,
    # and Ad Exchange.
    AVERAGE_ECPM = 37

    # eCPM averaged across the Google Ad Manager server (excluding CPD),
    # AdSense, and Ad Exchange.
    AVERAGE_ECPM_WITHOUT_CPD = 5

    # The number of times a user clicked on an ad.
    CLICKS = 2

    # The total number of times that the code for an ad is served by the ad
    # server including dynamic allocation.
    CODE_SERVED_COUNT = 44

    # For standard ads, your ad clickthrough rate (CTR) is the number of ad
    # clicks divided by the number of individual ad impressions expressed as a
    # fraction. Ad CTR = Clicks / Ad impressions.
    CTR = 3

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129

    # The number of auction impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131

    # The number of impressions sold by Google in partner sales.
    GOOGLE_SOLD_IMPRESSIONS = 130

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127

    # The number of reservation impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126

    # Total impressions from the Google Ad Manager server, AdSense,
    # Ad Exchange, and yield group partners.
    IMPRESSIONS = 1

    # The number of filled pod requests (filled by partner or Google) in
    # partner sales.
    PARTNER_SALES_FILLED_POD_REQUESTS = 135

    # The percent of filled requests to total ad requests in
    # partner sales.
    PARTNER_SALES_FILL_RATE = 136

    # The percent of partner filled requests to total ad requests
    # in partner sales.
    PARTNER_SALES_PARTNER_MATCH_RATE = 137

    # The number of queries eligible for partner sales.
    PARTNER_SALES_QUERIES = 132

    # The number of partner unfilled impressions in partner sales.
    # If a pod request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNFILLED_IMPRESSIONS = 133

    # The number of partner unmatched queries in partner sales.
    # If an ad request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNMATCHED_QUERIES = 134

    # The number of code served sold by partner in partner sales.
    PARTNER_SOLD_CODE_SERVED = 125

    # The number of coviewed impressions sold by partner in partner sales.
    PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124

    # The number of impressions sold by partner in partner sales.
    PARTNER_SOLD_IMPRESSIONS = 123

    # The total number of ad requests eligible for programmatic inventory,
    # including Programmatic Guaranteed, Preferred Deals, backfill, and open
    # auction.
    PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177

    # The number of programmatic responses served divided by the number of
    # programmatic eligible ad requests. Includes Ad Exchange, Open Bidding,
    # and Preferred Deals.
    PROGRAMMATIC_MATCH_RATE = 178

    # Total number of ad responses served from programmatic demand sources.
    # Includes Ad Exchange, Open Bidding, and Preferred Deals.
    #
    # Differs from AD_EXCHANGE_RESPONSES_SERVED, which doesn't include Open
    # Bidding ad requests.
    PROGRAMMATIC_RESPONSES_SERVED = 176

    # The total number of times that an ad is served by the ad server including
    # dynamic allocation.
    RESPONSES_SERVED = 39

    # Total amount of CPM, CPC, and CPD revenue based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE = 36

    # Total amount of revenue (excluding CPD) based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE_WITHOUT_CPD = 4

    # The average latency in milliseconds across all server-side unwrapping
    # callout requests. There is no special handling for error or timeout
    # responses. This reflects the entire chain of a parent callout request,
    # which may result in multiple child callouts. This metric is not sliced by
    # child callout dimensions.
    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434

    # The total number of server-side unwrapping callout requests.
    SERVER_SIDE_UNWRAPPING_CALLOUTS = 435

    # The total number of server-side unwrapping callouts that returned an
    # empty response. Timeouts are not considered empty responses.
    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436

    # The total number of server-side unwrapping callouts that returned an
    # error response. Timeouts and empty responses are not considered errors.
    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437

    # The total number of successfully unwrapped, non-empty server-side
    # wrapping callouts. Successful unwrapping does not indicate that the
    # resulting creative was served.
    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438

    # The total number of server-side unwrapping callouts that timed out before
    # returning a response.
    SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439

    # The total number of missed impressions due to the ad servers' inability
    # to find ads to serve including dynamic allocation.
    UNFILLED_IMPRESSIONS = 45

    # The total number of times that an ad is not returned by the ad server.
    UNMATCHED_AD_REQUESTS = 43

    # Number of times an Offerwall message was shown to users.
    USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121

    # The number of messages where the user gained an entitlement.
    USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122

    # The number of user interactions with a video, on average, such as pause,
    # full screen, mute, etc.
    VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92

    # The number of times a user collapses a video, either to its original size
    # or to a different size.
    VIDEO_INTERACTION_COLLAPSES = 93

    # The number of times a user expands a video.
    VIDEO_INTERACTION_EXPANDS = 95

    # The number of times ad clip played in full screen mode.
    VIDEO_INTERACTION_FULL_SCREENS = 96

    # The number of times video player was in mute state during play of ad
    # clip.
    VIDEO_INTERACTION_MUTES = 97

    # The number of times user paused ad clip.
    VIDEO_INTERACTION_PAUSES = 98

    # The number of times the user unpaused the video.
    VIDEO_INTERACTION_RESUMES = 99

    # The number of times a user rewinds the video.
    VIDEO_INTERACTION_REWINDS = 100

    # The number of times a user unmutes the video.
    VIDEO_INTERACTION_UNMUTES = 101

    # The number of times a skippable video is skipped.
    VIDEO_INTERACTION_VIDEO_SKIPS = 102

    # The number of total creative serves in video realtime reporting.
    VIDEO_REAL_TIME_CREATIVE_SERVES = 139

    # The number of errors of type 100 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_100_COUNT = 143

    # The number of errors of type 101 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_101_COUNT = 144

    # The number of errors of type 102 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_102_COUNT = 145

    # The number of errors of type 200 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_200_COUNT = 146

    # The number of errors of type 201 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_201_COUNT = 147

    # The number of errors of type 202 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_202_COUNT = 148

    # The number of errors of type 203 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_203_COUNT = 149

    # The number of errors of type 300 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_300_COUNT = 150

    # The number of errors of type 301 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_301_COUNT = 151

    # The number of errors of type 302 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_302_COUNT = 152

    # The number of errors of type 303 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_303_COUNT = 153

    # The number of errors of type 400 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_400_COUNT = 154

    # The number of errors of type 401 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_401_COUNT = 155

    # The number of errors of type 402 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_402_COUNT = 156

    # The number of errors of type 403 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_403_COUNT = 157

    # The number of errors of type 405 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_405_COUNT = 158

    # The number of errors of type 406 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_406_COUNT = 159

    # The number of errors of type 407 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_407_COUNT = 160

    # The number of errors of type 408 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_408_COUNT = 161

    # The number of errors of type 409 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_409_COUNT = 162

    # The number of errors of type 410 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_410_COUNT = 163

    # The number of errors of type 500 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_500_COUNT = 164

    # The number of errors of type 501 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_501_COUNT = 165

    # The number of errors of type 502 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_502_COUNT = 166

    # The number of errors of type 503 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_503_COUNT = 167

    # The number of errors of type 600 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_600_COUNT = 168

    # The number of errors of type 601 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_601_COUNT = 169

    # The number of errors of type 602 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_602_COUNT = 170

    # The number of errors of type 603 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_603_COUNT = 171

    # The number of errors of type 604 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_604_COUNT = 172

    # The number of errors of type 900 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_900_COUNT = 173

    # The number of errors of type 901 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_901_COUNT = 174

    # The number of total impressions in video realtime reporting.
    VIDEO_REAL_TIME_IMPRESSIONS = 138

    # The number of matched queries in video realtime reporting.
    VIDEO_REAL_TIME_MATCHED_QUERIES = 140

    # The number of all errors in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175

    # The number of total queries in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_QUERIES = 142

    # The number of unmatched queries in video realtime reporting.
    VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141

    # Number of times that the publisher specified a video ad played
    # automatically.
    VIDEO_VIEWERSHIP_AUTO_PLAYS = 103

    # Average percentage of the video watched by users.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104

    # Average time(seconds) users watched the video.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105

    # Number of times that the publisher specified a video ad was clicked to
    # play.
    VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106

    # The number of times the video played to completion.
    VIDEO_VIEWERSHIP_COMPLETES = 107

    # Percentage of times the video played to the end.
    VIDEO_VIEWERSHIP_COMPLETION_RATE = 108

    # The number of engaged views: ad is viewed to completion or for 30s,
    # whichever comes first.
    VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109

    # The number of times the video played to 25% of its length.
    VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110

    # The number of times the video reached its midpoint during play.
    VIDEO_VIEWERSHIP_MIDPOINTS = 111

    # The number of times a skip button is shown in video.
    VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112

    # The number of impressions where the video was played.
    VIDEO_VIEWERSHIP_STARTS = 113

    # The number of times the video played to 75% of its length.
    VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114

    # The number of times an error occurred, such as a VAST redirect error, a
    # video playback error, or an invalid response error.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115

    # The percentage of video error count.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94

    # Duration of the video creative.
    VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116

    # View-through rate represented as a percentage.
    VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117

    # Number of winning bids received from Open Bidding buyers, even when the
    # winning bid is placed at the end of a mediation for mobile apps chain.
    YIELD_GROUP_AUCTIONS_WON = 80

    # Number of bids received from Open Bidding buyers, regardless of whether
    # the returned bid competes in an auction.
    YIELD_GROUP_BIDS = 81

    # Number of bids received from Open Bidding buyers that competed in
    # the auction.
    YIELD_GROUP_BIDS_IN_AUCTION = 82

    # Number of times a yield partner is asked to return bid to fill
    # a yield group request.
    YIELD_GROUP_CALLOUTS = 83

    # The estimated net rate for yield groups or individual
    # yield group partners.
    YIELD_GROUP_ESTIMATED_CPM = 88

    # Total net revenue earned by a yield group, based upon the yield group
    # estimated CPM and yield group impressions recorded.
    YIELD_GROUP_ESTIMATED_REVENUE = 87

    # Number of matched yield group requests where a yield partner delivered
    # their ad to publisher inventory.
    YIELD_GROUP_IMPRESSIONS = 85

    # Yield group Mediation fill rate indicating how often a network
    # fills an ad request.
    YIELD_GROUP_MEDIATION_FILL_RATE = 89

    # Total requests where a Mediation chain was served.
    YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86

    # The number of mediation chain passback across all channels.
    YIELD_GROUP_MEDIATION_PASSBACKS = 118

    # Revenue per thousand impressions based on data collected by Ad Manager
    # from third-party ad network reports.
    YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90

    # Number of times a yield group buyer successfully returned a bid in
    # response to a yield group callout.
    YIELD_GROUP_SUCCESSFUL_RESPONSES = 84
  end

  # Possible metric value types to add.
  module MetricValueType
    # The values for the primary date_range.
    PRIMARY = 0

    # Each metrics' percent of the total for the primary date_range.
    PRIMARY_PERCENT_OF_TOTAL = 1

    # The values for the comparison_date_range.
    COMPARISON = 2

    # Each metrics' percent of the total for the comparison_date_range.
    COMPARISON_PERCENT_OF_TOTAL = 3

    # The absolute change between the primary and comparison date ranges.
    ABSOLUTE_CHANGE = 4

    # The relative change between the primary and comparison date ranges.
    RELATIVE_CHANGE = 5
  end

  # Supported report types.
  module ReportType
    # Default value. This value is unused.
    REPORT_TYPE_UNSPECIFIED = 0

    # Historical.
    HISTORICAL = 1
  end

  # The visibility of a report.
  module Visibility
    # Default value. Reports with hidden visibility will not appear in the Ad
    # Manager UI.
    HIDDEN = 0

    # Reports with draft visibility will appear in the Ad Manager UI only if
    # the user has configured the UI to show them.
    DRAFT = 1

    # Reports with saved visibility will appear in the Ad Manager UI by
    # default.
    SAVED = 2
  end

  # The source to determine the time zone for the report.
  module TimeZoneSource
    # Unspecified default value.
    TIME_ZONE_SOURCE_UNSPECIFIED = 0

    # Use the publisher's time zone in network settings.
    PUBLISHER = 1

    # Use the time zone of the ad exchange.
    # Only compatible with Ad Exchange dimensions and metrics.
    AD_EXCHANGE = 2

    # Use UTC time zone.
    # Only compatible with Revenue Verification reports.
    UTC = 3

    # Use the time zone provided in the ReportDefinition.time_zone field.
    # Has limited dimension and metric compatibility compared with PUBLISHER,
    # and reports may take longer to run since the dates are dynamically
    # calculated at request time.
    PROVIDED = 4
  end
end

#visibility::Google::Ads::AdManager::V1::Report::Visibility

Returns Optional. The visibility of a report.

Returns:



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
# File 'proto_docs/google/ads/admanager/v1/report_messages.rb', line 55

class Report
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a single value in a report.
  # @!attribute [rw] int_value
  #   @return [::Integer]
  #     For integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] double_value
  #   @return [::Float]
  #     For double values.
  #
  #     Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_value
  #   @return [::String]
  #     For string values.
  #
  #     Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`, `bool_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bool_value
  #   @return [::Boolean]
  #     For boolean values.
  #
  #     Note: The following fields are mutually exclusive: `bool_value`, `int_value`, `double_value`, `string_value`, `int_list_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] int_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::IntList]
  #     For lists of integer values.
  #
  #     Note: The following fields are mutually exclusive: `int_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `string_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] string_list_value
  #   @return [::Google::Ads::AdManager::V1::Report::Value::StringList]
  #     For lists of string values.
  #
  #     Note: The following fields are mutually exclusive: `string_list_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `bytes_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] bytes_value
  #   @return [::String]
  #     For bytes values.
  #
  #     Note: The following fields are mutually exclusive: `bytes_value`, `int_value`, `double_value`, `string_value`, `bool_value`, `int_list_value`, `string_list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Value
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A list of integer values.
    # @!attribute [rw] values
    #   @return [::Array<::Integer>]
    #     The values
    class IntList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of string values.
    # @!attribute [rw] values
    #   @return [::Array<::String>]
    #     The values
    class StringList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # Represents a sorting in a report.
  # @!attribute [rw] field
  #   @return [::Google::Ads::AdManager::V1::Report::Field]
  #     Required. A field (dimension or metric) to sort by.
  # @!attribute [rw] descending
  #   @return [::Boolean]
  #     Optional. The sort order. If true the sort will be descending.
  # @!attribute [rw] slice
  #   @return [::Google::Ads::AdManager::V1::Report::Slice]
  #     Optional. Use to sort on a specific slice of data.
  # @!attribute [rw] time_period_index
  #   @return [::Integer]
  #     Optional. When using time period columns, use this to sort on a specific
  #     column.
  # @!attribute [rw] metric_value_type
  #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
  #     Optional. Use to specify which metric value type to sort on. Defaults to
  #     PRIMARY.
  class Sort
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A table containing report data including dimension and metric values.
  class DataTable
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A row of report data.
    # @!attribute [rw] dimension_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     The order of the dimension values is the same as the order of the
    #     dimensions specified in the request.
    # @!attribute [rw] metric_value_groups
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::DataTable::MetricValueGroup>]
    #     The length of the metric_value_groups
    #     field will be equal to the length of the date_ranges field in the
    #     fetch response. The metric_value_groups field is
    #     ordered such that each index corresponds to the date_range at the same
    #     index. For example, given date_ranges [x, y], metric_value_groups will
    #     have a length of two. The first entry in metric_value_groups represents
    #     the metrics for date x and the second entry in metric_value_groups
    #     represents the metrics for date y.
    class Row
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Contains all metric values requested for a single date range and set of
    # column dimension values (returned in the columns field of the response).
    # The order of the metrics in each field corresponds to the order of the
    # metrics specified in the request.
    # @!attribute [rw] primary_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY MetricValueType.
    # @!attribute [rw] primary_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the PRIMARY_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] comparison_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON MetricValueType.
    # @!attribute [rw] comparison_percent_of_total_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the COMPARISON_PERCENT_OF_TOTAL MetricValueType.
    # @!attribute [rw] absolute_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the ABSOLUTE_CHANGE MetricValueType.
    # @!attribute [rw] relative_change_values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Data for the RELATIVE_CHANGE MetricValueType.
    # @!attribute [rw] flag_values
    #   @return [::Array<::Boolean>]
    #     If true, the flag's conditions are met. If false, the flag's
    #     conditions are not met. flag_values has the same length as
    #     flags and index i of flag_values represents the flag at index i
    #     of flags.
    class MetricValueGroup
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # A dimension or a metric in a report.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     The dimension this field represents.
  #
  #     Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] metric
  #   @return [::Google::Ads::AdManager::V1::Report::Metric]
  #     The metric this field represents.
  #
  #     Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Field
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Use to specify a slice of data.
  #
  # For example, in a report, to focus on just data from the US, specify
  # `COUNTRY_NAME` for dimension and value: `"United States"`.
  # @!attribute [rw] dimension
  #   @return [::Google::Ads::AdManager::V1::Report::Dimension]
  #     Required. The dimension to slice on.
  # @!attribute [rw] value
  #   @return [::Google::Ads::AdManager::V1::Report::Value]
  #     Required. The value of the dimension.
  class Slice
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A filter over one or more fields.
  # @!attribute [rw] field_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FieldFilter]
  #     A filter on a single field.
  #
  #     Note: The following fields are mutually exclusive: `field_filter`, `not_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] not_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter]
  #     A filter whose result is negated.
  #
  #     Note: The following fields are mutually exclusive: `not_filter`, `field_filter`, `and_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] and_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are AND-ed.
  #
  #     Note: The following fields are mutually exclusive: `and_filter`, `field_filter`, `not_filter`, `or_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] or_filter
  #   @return [::Google::Ads::AdManager::V1::Report::Filter::FilterList]
  #     A list of filters whose results are OR-ed.
  #
  #     Note: The following fields are mutually exclusive: `or_filter`, `field_filter`, `not_filter`, `and_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class Filter
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A filter on a specific field.
    # @!attribute [rw] field
    #   @return [::Google::Ads::AdManager::V1::Report::Field]
    #     Required. The field to filter on.
    # @!attribute [rw] operation
    #   @return [::Google::Ads::AdManager::V1::Report::Filter::Operation]
    #     Required. The operation of this filter.
    # @!attribute [rw] values
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Value>]
    #     Required. Values to filter to.
    # @!attribute [rw] slice
    #   @return [::Google::Ads::AdManager::V1::Report::Slice]
    #     Optional. Use to filter on a specific slice of data.
    # @!attribute [rw] time_period_index
    #   @return [::Integer]
    #     Optional. When using time period columns, use this to filter on a
    #     specific column.
    # @!attribute [rw] metric_value_type
    #   @return [::Google::Ads::AdManager::V1::Report::MetricValueType]
    #     Optional. Use to specify which metric value type to filter on. Defaults
    #     to PRIMARY.
    class FieldFilter
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # A list of filters.
    # @!attribute [rw] filters
    #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
    #     Required. A list of filters.
    class FilterList
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Supported filter operations.
    module Operation
      # For scalar operands, checks if the operand is in the set of provided
      # filter values.
      #
      # For list operands, checks if any element in the operand is in the set
      # of provided filter values.
      #
      # Default value.
      IN = 0

      # For scalar operands, checks that the operand is not in the set of
      # provided filter values.
      #
      # For list operands, checks that none of the elements in the operand
      # is in the set of provided filter values.
      NOT_IN = 1

      # For scalar string operands, checks if the operand contains any of the
      # provided filter substrings.
      #
      # For string list operands, checks if any string in the operand contains
      # any of the provided filter substrings.
      CONTAINS = 2

      # For scalar string operands, checks that the operand contains none of
      # the provided filter substrings.
      #
      # For string list operands, checks that none of the strings in the
      # operand contain none of the provided filter substrings.
      NOT_CONTAINS = 3

      # Operand is less than the provided filter value.
      LESS_THAN = 4

      # Operand is less than or equal to provided filter value.
      LESS_THAN_EQUALS = 5

      # Operand is greater than provided filter value.
      GREATER_THAN = 6

      # Operand is greater than or equal to provided filter value.
      GREATER_THAN_EQUALS = 7

      # Operand is between provided filter values.
      BETWEEN = 8

      # Operand matches against a regex or set of regexes (one must match)
      MATCHES = 9

      # Operand negative matches against a regex or set of regexes (none must
      # match)
      NOT_MATCHES = 10
    end
  end

  # A flag for a report. Flags are used show if certain thresholds are met.
  # Result rows that match the filter will have the corresponding
  # [MetricValueGroup.flagValues][MetricValueGroup] index set to true.
  # For more information about flags see:
  # https://support.google.com/admanager/answer/15079975
  # @!attribute [rw] filters
  #   @return [::Array<::Google::Ads::AdManager::V1::Report::Filter>]
  #     Required. Filters to apply for the flag.
  # @!attribute [rw] name
  #   @return [::String]
  #     Optional. Name of the flag.
  #     The flag names RED, YELLOW, GREEN, BLUE, PURPLE, and GREY correspond to
  #     the colored flags that appear in the UI. The UI will not display flags
  #     with other names, but they are available for use by API clients.
  class Flag
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # A date range for a report.
  # @!attribute [rw] fixed
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::FixedDateRange]
  #     A fixed date range.
  #
  #     Note: The following fields are mutually exclusive: `fixed`, `relative`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  # @!attribute [rw] relative
  #   @return [::Google::Ads::AdManager::V1::Report::DateRange::RelativeDateRange]
  #     A relative date range.
  #
  #     Note: The following fields are mutually exclusive: `relative`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
  class DateRange
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # A date range between two fixed dates (inclusive of end date).
    # @!attribute [rw] start_date
    #   @return [::Google::Type::Date]
    #     Required. The start date of this date range.
    # @!attribute [rw] end_date
    #   @return [::Google::Type::Date]
    #     Required. The end date (inclusive) of this date range.
    class FixedDateRange
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end

    # Options for relative date ranges.
    module RelativeDateRange
      # Default value. This value is unused.
      RELATIVE_DATE_RANGE_UNSPECIFIED = 0

      # The date the report is run.
      TODAY = 1

      # The date a day before the date that the report is run.
      YESTERDAY = 2

      # The full week in which this report is run. Could include dates in
      # the future.
      THIS_WEEK = 3

      # From the beginning of the calendar week (Monday to Sunday) in which the
      # up to and including the day the report is run.
      THIS_WEEK_TO_DATE = 29

      # The full month in which this report is run. Could include dates in
      # the future.
      THIS_MONTH = 4

      # From the beginning of the calendar month in which the report is run, to
      # up to and including the day the report is run.
      THIS_MONTH_TO_DATE = 26

      # The full quarter in which this report is run. Could include dates
      # in the future.
      THIS_QUARTER = 5

      # From the beginning of the calendar quarter in which the report is run,
      # up to and including the day the report is run.
      THIS_QUARTER_TO_DATE = 27

      # The full year in which this report is run. Could include dates in
      # the future.
      THIS_YEAR = 6

      # From the beginning of the calendar year in which the report is run, to
      # up to and including the day the report is run.
      THIS_YEAR_TO_DATE = 28

      # The entire previous calendar week, Monday to Sunday (inclusive),
      # preceding the calendar week the report is run.
      LAST_WEEK = 7

      # The entire previous calendar month preceding the calendar month the
      # report is run.
      LAST_MONTH = 8

      # The entire previous calendar quarter preceding the calendar quarter the
      # report is run.
      LAST_QUARTER = 9

      # The entire previous calendar year preceding the calendar year the
      # report is run.
      LAST_YEAR = 10

      # The 7 days preceding the day the report is run.
      LAST_7_DAYS = 11

      # The 30 days preceding the day the report is run.
      LAST_30_DAYS = 12

      # The 60 days preceding the day the report is run.
      LAST_60_DAYS = 13

      # The 90 days preceding the day the report is run.
      LAST_90_DAYS = 14

      # The 180 days preceding the day the report is run.
      LAST_180_DAYS = 15

      # The 360 days preceding the day the report is run.
      LAST_360_DAYS = 16

      # The 365 days preceding the day the report is run.
      LAST_365_DAYS = 17

      # The entire previous 3 calendar months preceding the calendar month the
      # report is run.
      LAST_3_MONTHS = 18

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_6_MONTHS = 19

      # The entire previous 6 calendar months preceding the calendar month the
      # report is run.
      LAST_12_MONTHS = 20

      # From 3 years before the report is run, to the day before the report is
      # run, inclusive.
      ALL_AVAILABLE = 21

      # Only valid when used in the comparison_date_range field. The complete
      # period preceding the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange of N days, this will
      # be a period of N days where the end date is the date preceding the
      # start date of the date_range.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame preceding the date_range. In the case
      # where the date_range does not capture the full period because a report
      # is run in the middle of that period, this will still be the full
      # preceding period. For example, if date_range is THIS_WEEK, but the
      # report is run on a Wednesday, THIS_WEEK will be Monday - Wednesday, but
      # PREVIOUS_PERIOD will be Monday - Sunday.
      PREVIOUS_PERIOD = 22

      # Only valid when used in the comparison_date_range field. The period
      # starting 1 year prior to the date period provided in date_range.
      #
      # In the case where date_range is a FixedDateRange, this will be a date
      # range starting 1 year prior to the date_range start date and ending 1
      # year prior to the date_range end date.
      #
      # In the case where date_range is a RelativeDateRange, this will be a
      # period of the same time frame exactly 1 year prior to the date_range.
      # In the case where the date_range does not capture the full period
      # because a report is run in the middle of that period, this will still
      # be the full period 1 year prior. For example, if date range is
      # THIS_WEEK, but the report is run on a Wednesday, THIS_WEEK will be
      # Monday - Wednesday, but SAME_PERIOD_PREVIOUS_YEAR will be Monday -
      # Sunday.
      SAME_PERIOD_PREVIOUS_YEAR = 24
    end
  end

  # Valid time period columns.
  module TimePeriodColumn
    # Default value. Report will have no time period column.
    TIME_PERIOD_COLUMN_UNSPECIFIED = 0

    # A column for each date in the report.
    TIME_PERIOD_COLUMN_DATE = 1

    # A column for each week in the report.
    TIME_PERIOD_COLUMN_WEEK = 2

    # A column for each month in the report.
    TIME_PERIOD_COLUMN_MONTH = 3

    # A column for each quarter in the report.
    TIME_PERIOD_COLUMN_QUARTER = 4
  end

  # Reporting dimensions.
  module Dimension
    # Default value. This value is unused.
    DIMENSION_UNSPECIFIED = 0

    # The domain name of the advertiser.
    ADVERTISER_DOMAIN_NAME = 242

    # The ID used in an external system for advertiser identification
    ADVERTISER_EXTERNAL_ID = 228

    # The ID of an advertiser company assigned to an order
    ADVERTISER_ID = 131

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABELS = 230

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    ADVERTISER_LABEL_IDS = 229

    # The name of an advertiser company assigned to an order
    ADVERTISER_NAME = 132

    # The name of the contact associated with an advertiser company
    ADVERTISER_PRIMARY_CONTACT = 227

    # Shows an ENUM value describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION = 390

    # Shows a localized string describing whether a given piece of publisher
    # inventory was above (ATF) or below the fold (BTF) of a page.
    AD_LOCATION_NAME = 391

    # The code of the ad unit where the ad was requested.
    AD_UNIT_CODE = 64

    # The code of the first level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_1 = 65

    # The code of the tenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_10 = 74

    # The code of the eleventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_11 = 75

    # The code of the twelfth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_12 = 76

    # The code of the thirteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_13 = 77

    # The code of the fourteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_14 = 78

    # The code of the fifteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_15 = 79

    # The code of the sixteenth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_16 = 80

    # The code of the second level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_2 = 66

    # The code of the third level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_3 = 67

    # The code of the fourth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_4 = 68

    # The code of the fifth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_5 = 69

    # The code of the sixth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_6 = 70

    # The code of the seventh level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_7 = 71

    # The code of the eighth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_8 = 72

    # The code of the ninth level ad unit of the ad unit where the ad was
    # requested.
    AD_UNIT_CODE_LEVEL_9 = 73

    # The depth of the ad unit's hierarchy
    AD_UNIT_DEPTH = 101

    # The ID of the ad unit where the ad was requested.
    AD_UNIT_ID = 25

    # The full hierarchy of ad unit IDs where the ad was requested, from
    # root to leaf, excluding the root ad unit ID.
    AD_UNIT_ID_ALL_LEVEL = 27

    # The first level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_1 = 30

    # The tenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_10 = 48

    # The eleventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_11 = 50

    # The twelfth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_12 = 52

    # The thirteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_13 = 54

    # The fourteenth level ad unit ID of the ad unit where the ad was
    # requested.
    AD_UNIT_ID_LEVEL_14 = 56

    # The fifteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_15 = 58

    # The sixteenth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_16 = 60

    # The second level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_2 = 32

    # The third level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_3 = 34

    # The fourth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_4 = 36

    # The fifth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_5 = 38

    # The sixth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_6 = 40

    # The seventh level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_7 = 42

    # The eighth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_8 = 44

    # The ninth level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_LEVEL_9 = 46

    # The top-level ad unit ID of the ad unit where the ad was requested.
    AD_UNIT_ID_TOP_LEVEL = 142

    # The name of the ad unit where the ad was requested.
    AD_UNIT_NAME = 26

    # The full hierarchy of ad unit names where the ad was requested, from
    # root to leaf, excluding the root ad unit name.
    AD_UNIT_NAME_ALL_LEVEL = 29

    # The first level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_1 = 31

    # The tenth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_10 = 49

    # The eleventh level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_11 = 51

    # The twelfth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_12 = 53

    # The thirteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_13 = 55

    # The fourteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_14 = 57

    # The fifteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_15 = 59

    # The sixteenth level ad unit name of the ad unit where the ad was
    # requested.
    AD_UNIT_NAME_LEVEL_16 = 61

    # The second level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_2 = 33

    # The third level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_3 = 35

    # The fourth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_4 = 37

    # The fifth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_5 = 39

    # The sixth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_6 = 41

    # The seventh level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_7 = 43

    # The eighth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_8 = 45

    # The ninth level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_LEVEL_9 = 47

    # The top-level ad unit name of the ad unit where the ad was requested.
    AD_UNIT_NAME_TOP_LEVEL = 143

    # The reward amount of the ad unit where the ad was requested.
    AD_UNIT_REWARD_AMOUNT = 63

    # The reward type of the ad unit where the ad was requested.
    AD_UNIT_REWARD_TYPE = 62

    # The status of the ad unit
    AD_UNIT_STATUS = 206

    # The name of the status of the ad unit
    AD_UNIT_STATUS_NAME = 207

    # The app version.
    APP_VERSION = 392

    # The ID used in an external system for advertiser identification
    BACKFILL_ADVERTISER_EXTERNAL_ID = 349

    # The ID of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_ID = 346

    # Labels applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABELS = 351

    # Label ids applied to the advertiser
    # can be used for either competitive exclusion or ad exclusion
    BACKFILL_ADVERTISER_LABEL_IDS = 350

    # The name of an advertiser company assigned to a backfill order
    BACKFILL_ADVERTISER_NAME = 347

    # The name of the contact associated with an advertiser company
    BACKFILL_ADVERTISER_PRIMARY_CONTACT = 348

    # Enum value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE = 378

    # Localized string value of Backfill creative billing type
    BACKFILL_CREATIVE_BILLING_TYPE_NAME = 379

    # Represents the click-through URL of a Backfill creative
    BACKFILL_CREATIVE_CLICK_THROUGH_URL = 376

    # The ID of a Backfill creative
    BACKFILL_CREATIVE_ID = 370

    # Backfill creative name
    BACKFILL_CREATIVE_NAME = 371

    # Third party vendor name of a Backfill creative
    BACKFILL_CREATIVE_THIRD_PARTY_VENDOR = 377

    # Enum value of Backfill creative type
    BACKFILL_CREATIVE_TYPE = 374

    # Localized string name of Backfill creative type
    BACKFILL_CREATIVE_TYPE_NAME = 375

    # Whether a Backfill line item is archived.
    BACKFILL_LINE_ITEM_ARCHIVED = 278

    # Backfill line item comanion delivery option ENUM value.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION = 258

    # Localized Backfill line item comanion delivery option name.
    BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 259

    # The computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS = 296

    # The localized name of the computed status of the BackfillLineItem.
    BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME = 297

    # The contracted units bought for the Backfill line item.
    BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY = 280

    # The cost per unit of the Backfill line item.
    BACKFILL_LINE_ITEM_COST_PER_UNIT = 272

    # Backfill line item cost type ENUM value.
    BACKFILL_LINE_ITEM_COST_TYPE = 264

    # Localized Backfill line item cost type name.
    BACKFILL_LINE_ITEM_COST_TYPE_NAME = 265

    # Represent the end date of a Backfill creative associated with a Backfill
    # line item
    BACKFILL_LINE_ITEM_CREATIVE_END_DATE = 381

    # The creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE = 290

    # The localized name of the creative rotation type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 291

    # Represent the start date of a Backfill creative associated with a
    # Backfill line item
    BACKFILL_LINE_ITEM_CREATIVE_START_DATE = 380

    # The 3 letter currency code of the Backfill line item
    BACKFILL_LINE_ITEM_CURRENCY_CODE = 288

    # The progress made for the delivery of the Backfill line item.
    BACKFILL_LINE_ITEM_DELIVERY_INDICATOR = 274

    # The delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE = 292

    # The localized name of the delivery rate type of the BackfillLineItem.
    BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 293

    # The discount of the BackfillLineItem in whole units in the
    # BackfillLineItem's currency code, or if unspecified the Network's
    # currency code.
    BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE = 294

    # The discount of the BackfillLineItem in percentage.
    BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE = 295

    # The end date of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE = 267

    # The end date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_END_DATE_TIME = 269

    # The ENUM value of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE = 302

    # The localized name of the environment a Backfill line item is targeting.
    BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME = 257

    # The deal ID of the Backfill line item. Set for Programmatic Direct
    # campaigns.
    BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID = 285

    # The external ID of the Backfill line item.
    BACKFILL_LINE_ITEM_EXTERNAL_ID = 273

    # The frequency cap of the Backfill line item (descriptive string).
    BACKFILL_LINE_ITEM_FREQUENCY_CAP = 303

    # Backfill line item ID.
    BACKFILL_LINE_ITEM_ID = 298

    # The application that last modified the Backfill line item.
    BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP = 289

    # The total number of clicks delivered of the lifetime of the Backfill line
    # item.
    BACKFILL_LINE_ITEM_LIFETIME_CLICKS = 283

    # The total number of impressions delivered over the lifetime of the
    # Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS = 282

    # The total number of viewable impressions delivered over the lifetime of
    # the Backfill line item.
    BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 284

    # Whether or not the Backfill line item is Makegood. Makegood refers to
    # free inventory offered to buyers to compensate for mistakes or
    # under-delivery in the original campaigns.
    BACKFILL_LINE_ITEM_MAKEGOOD = 276

    # Backfill line item name.
    BACKFILL_LINE_ITEM_NAME = 299

    # The cost of booking for the Backfill line item (non-CPD).
    BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE = 286

    # Whether a Backfill line item is eligible for opitimization.
    BACKFILL_LINE_ITEM_OPTIMIZABLE = 277

    # Goal type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE = 262

    # Localized goal type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 263

    # Unit type ENUM value of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 260

    # Localized unit type name of the primary goal of the Backfill line item.
    BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 261

    # The priority of this Backfill line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Backfill line item.
    BACKFILL_LINE_ITEM_PRIORITY = 266

    # ENUM value describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS = 306

    # Localized string describing the state of inventory reservation for the
    # BackfillLineItem.
    BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME = 307

    # The start date of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE = 268

    # The start date and time of the Backfill line item.
    BACKFILL_LINE_ITEM_START_DATE_TIME = 270

    # Backfill line item type ENUM value.
    BACKFILL_LINE_ITEM_TYPE = 300

    # Localized Backfill line item type name.
    BACKFILL_LINE_ITEM_TYPE_NAME = 301

    # Whether the Backfill line item end time and end date is set to
    # effectively never end.
    BACKFILL_LINE_ITEM_UNLIMITED_END = 271

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT = 275

    # The web property code used for dynamic allocation Backfill line items.
    BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE = 287

    # The ID of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_ID = 372

    # Name of Backfill creative, includes regular creatives, and master and
    # companions in case of creative sets
    BACKFILL_MASTER_COMPANION_CREATIVE_NAME = 373

    # Backfill order agency.
    BACKFILL_ORDER_AGENCY = 313

    # Backfill order agency ID.
    BACKFILL_ORDER_AGENCY_ID = 314

    # Backfill order booked CPC.
    BACKFILL_ORDER_BOOKED_CPC = 315

    # Backfill order booked CPM.
    BACKFILL_ORDER_BOOKED_CPM = 316

    # Backfill order delivery status ENUM value.
    BACKFILL_ORDER_DELIVERY_STATUS = 340

    # Backfill order delivery status localized name.
    BACKFILL_ORDER_DELIVERY_STATUS_NAME = 341

    # Backfill order end date.
    BACKFILL_ORDER_END_DATE = 317

    # Backfill order end date and time.
    BACKFILL_ORDER_END_DATE_TIME = 319

    # Backfill order external ID.
    BACKFILL_ORDER_EXTERNAL_ID = 320

    # Backfill order id.
    BACKFILL_ORDER_ID = 338

    # Backfill order labels.
    BACKFILL_ORDER_LABELS = 334

    # Backfill order labels IDs.
    BACKFILL_ORDER_LABEL_IDS = 335

    # Backfill order lifetime clicks.
    BACKFILL_ORDER_LIFETIME_CLICKS = 322

    # Backfill order lifetime impressions.
    BACKFILL_ORDER_LIFETIME_IMPRESSIONS = 323

    # Backfill order name.
    BACKFILL_ORDER_NAME = 339

    # Backfill order PO number.
    BACKFILL_ORDER_PO_NUMBER = 324

    # Whether the Backfill order is programmatic.
    BACKFILL_ORDER_PROGRAMMATIC = 321

    # Backfill order sales person.
    BACKFILL_ORDER_SALESPERSON = 325

    # Backfill order secondary sales people.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE = 329

    # Backfill order secondary sales people ID.
    BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID = 328

    # Backfill order secondary traffickers.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS = 331

    # Backfill order secondary traffickers ID.
    BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID = 330

    # Backfill order start date.
    BACKFILL_ORDER_START_DATE = 332

    # Backfill order start date and time.
    BACKFILL_ORDER_START_DATE_TIME = 333

    # Backfill order trafficker.
    BACKFILL_ORDER_TRAFFICKER = 326

    # Backfill order trafficker ID.
    BACKFILL_ORDER_TRAFFICKER_ID = 327

    # Whether the Backfill order end time and end date is set to effectively
    # never end.
    BACKFILL_ORDER_UNLIMITED_END = 318

    # The ID of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_ID = 336

    # The name of the buyer on a backfill programmatic proposal.
    BACKFILL_PROGRAMMATIC_BUYER_NAME = 337

    # The amount of information about the Publisher's page sent to the buyer
    # who purchased the impressions.
    BRANDING_TYPE = 383

    # The localized version of branding type, the amount of information about
    # the Publisher's page sent to the buyer who purchased the impressions.
    BRANDING_TYPE_NAME = 384

    # Browser category.
    BROWSER_CATEGORY = 119

    # Browser category name.
    BROWSER_CATEGORY_NAME = 120

    # The ID of the browser.
    BROWSER_ID = 235

    # The name of the browser.
    BROWSER_NAME = 236

    # Mobile carrier ID.
    CARRIER_ID = 369

    # Name of the mobile carrier.
    CARRIER_NAME = 368

    # The ID of an advertiser, classified by Google, associated with a creative
    # transacted
    CLASSIFIED_ADVERTISER_ID = 133

    # The name of an advertiser, classified by Google, associated with a
    # creative transacted
    CLASSIFIED_ADVERTISER_NAME = 134

    # ID of the brand, as classified by Google,
    CLASSIFIED_BRAND_ID = 243

    # Name of the brand, as classified by Google,
    CLASSIFIED_BRAND_NAME = 244

    # ID of the video content served.
    CONTENT_ID = 246

    # Name of the video content served.
    CONTENT_NAME = 247

    # The criteria ID of the country in which the ad served.
    COUNTRY_ID = 11

    # The name of the country in which the ad served.
    COUNTRY_NAME = 12

    # Enum value of creative billing type
    CREATIVE_BILLING_TYPE = 366

    # Localized string value of creative billing type
    CREATIVE_BILLING_TYPE_NAME = 367

    # Represents the click-through URL of a creative
    CREATIVE_CLICK_THROUGH_URL = 174

    # The ID of a creative
    CREATIVE_ID = 138

    # Creative name
    CREATIVE_NAME = 139

    # Creative technology ENUM
    CREATIVE_TECHNOLOGY = 148

    # Creative technology locallized name
    CREATIVE_TECHNOLOGY_NAME = 149

    # Third party vendor name of a creative
    CREATIVE_THIRD_PARTY_VENDOR = 361

    # Enum value of creative type
    CREATIVE_TYPE = 344

    # Localized string name of creative type
    CREATIVE_TYPE_NAME = 345

    # Breaks down reporting data by date.
    DATE = 3

    # Breaks down reporting data by day of the week. Monday is 1 and 7 is
    # Sunday.
    DAY_OF_WEEK = 4

    # Demand channel.
    DEMAND_CHANNEL = 9

    # Demand channel name.
    DEMAND_CHANNEL_NAME = 10

    # Demand subchannel.
    DEMAND_SUBCHANNEL = 22

    # Demand subchannel name.
    DEMAND_SUBCHANNEL_NAME = 23

    # The device on which an ad was served.
    DEVICE = 226

    # The device category to which an ad is being targeted.
    DEVICE_CATEGORY = 15

    # The name of the category of device (smartphone, feature phone, tablet, or
    # desktop) to which an ad is being targeted.
    DEVICE_CATEGORY_NAME = 16

    # The localized name of the device on which an ad was served.
    DEVICE_NAME = 225

    # ID of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_ID = 185

    # Name of the yield partner as classified by Google
    EXCHANGE_THIRD_PARTY_COMPANY_NAME = 186

    # The ID of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_ID = 248

    # The name of the first look pricing rule.
    FIRST_LOOK_PRICING_RULE_NAME = 249

    # Breaks down reporting data by hour in one day.
    HOUR = 100

    # The interaction type of an ad.
    INTERACTION_TYPE = 223

    # The localized name of the interaction type of an ad.
    INTERACTION_TYPE_NAME = 224

    # Inventory format.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT = 17

    # Inventory format name.
    # The format of the ad unit (e.g, banner) where the ad was requested.
    INVENTORY_FORMAT_NAME = 18

    # Inventory type.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE = 19

    # Inventory type name.
    # The kind of web page or device where the ad was requested.
    INVENTORY_TYPE_NAME = 20

    # Whether traffic is Adx Direct.
    IS_ADX_DIRECT = 382

    # Whether traffic is First Look.
    IS_FIRST_LOOK_DEAL = 401

    # The Custom Targeting Value ID
    KEY_VALUES_ID = 214

    # The Custom Targeting Value formatted like <key_name>=<value_name>
    KEY_VALUES_NAME = 215

    # Whether a Line item is archived.
    LINE_ITEM_ARCHIVED = 188

    # Line item comanion delivery option ENUM value.
    LINE_ITEM_COMPANION_DELIVERY_OPTION = 204

    # Localized line item comanion delivery option name.
    LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME = 205

    # The computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS = 250

    # The localized name of the computed status of the LineItem.
    LINE_ITEM_COMPUTED_STATUS_NAME = 251

    # The contracted units bought for the Line item.
    LINE_ITEM_CONTRACTED_QUANTITY = 92

    # The cost per unit of the Line item.
    LINE_ITEM_COST_PER_UNIT = 85

    # Line item cost type ENUM value.
    LINE_ITEM_COST_TYPE = 212

    # Localized line item cost type name.
    LINE_ITEM_COST_TYPE_NAME = 213

    # Represent the end date of a creative associated with line item
    LINE_ITEM_CREATIVE_END_DATE = 176

    # The creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE = 189

    # The localized name of the creative rotation type of the LineItem.
    LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME = 190

    # Represent the start date of a creative associated with line item
    LINE_ITEM_CREATIVE_START_DATE = 175

    # The 3 letter currency code of the Line Item
    LINE_ITEM_CURRENCY_CODE = 180

    # The progress made for the delivery of the Line item.
    LINE_ITEM_DELIVERY_INDICATOR = 87

    # The delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE = 191

    # The localized name of the delivery rate type of the LineItem.
    LINE_ITEM_DELIVERY_RATE_TYPE_NAME = 192

    # The discount of the LineItem in whole units in the LineItem's currency
    # code, or if unspecified the Network's currency code.
    LINE_ITEM_DISCOUNT_ABSOLUTE = 195

    # The discount of the LineItem in percentage.
    LINE_ITEM_DISCOUNT_PERCENTAGE = 196

    # The end date of the Line item.
    LINE_ITEM_END_DATE = 81

    # The end date and time of the Line item.
    LINE_ITEM_END_DATE_TIME = 83

    # The ENUM value of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE = 201

    # The localized name of the environment a LineItem is targeting.
    LINE_ITEM_ENVIRONMENT_TYPE_NAME = 202

    # The deal ID of the Line item. Set for Programmatic Direct campaigns.
    LINE_ITEM_EXTERNAL_DEAL_ID = 97

    # The external ID of the Line item.
    LINE_ITEM_EXTERNAL_ID = 86

    # The frequency cap of the Line item (descriptive string).
    LINE_ITEM_FREQUENCY_CAP = 256

    # Line item ID.
    LINE_ITEM_ID = 1

    # The application that last modified the Line Item.
    LINE_ITEM_LAST_MODIFIED_BY_APP = 181

    # The total number of clicks delivered of the lifetime of the Line item.
    LINE_ITEM_LIFETIME_CLICKS = 95

    # The total number of impressions delivered over the lifetime of the
    # Line item.
    LINE_ITEM_LIFETIME_IMPRESSIONS = 94

    # The total number of viewable impressions delivered over the lifetime of
    # the Line item.
    LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS = 96

    # Whether or not the Line item is Makegood. Makegood refers to free
    # inventory offered to buyers to compensate for mistakes or under-delivery
    # in the original campaigns.
    LINE_ITEM_MAKEGOOD = 89

    # Line item Name.
    LINE_ITEM_NAME = 2

    # The cost of booking for the Line item (non-CPD).
    LINE_ITEM_NON_CPD_BOOKED_REVENUE = 98

    # Whether a Line item is eligible for opitimization.
    LINE_ITEM_OPTIMIZABLE = 90

    # Goal type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE = 210

    # Localized goal type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_TYPE_NAME = 211

    # The total number of impressions or clicks that are reserved for a
    # line item. For line items of type BULK or PRICE_PRIORITY, this represents
    # the number of remaining impressions reserved. If the line item has an
    # impression cap goal, this represents the number of impressions or
    # conversions that the line item will stop serving at if reached.
    LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE = 93

    # The percentage of impressions or clicks that are reserved for a
    # line item. For line items of type SPONSORSHIP, this represents the
    # percentage of available impressions reserved. For line items of type
    # NETWORK or HOUSE, this represents the percentage of remaining impressions
    # reserved.
    LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE = 396

    # Unit type ENUM value of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE = 208

    # Localized unit type name of the primary goal of the line item.
    LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME = 209

    # The priority of this Line item as a value between 1 and 16.
    # In general, a lower priority means more serving priority for the
    # Line item.
    LINE_ITEM_PRIORITY = 24

    # ENUM value describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS = 304

    # Localized string describing the state of inventory reservation for the
    # LineItem.
    LINE_ITEM_RESERVATION_STATUS_NAME = 305

    # The start date of the Line item.
    LINE_ITEM_START_DATE = 82

    # The start date and time of the Line item.
    LINE_ITEM_START_DATE_TIME = 84

    # Line item type ENUM value.
    LINE_ITEM_TYPE = 193

    # Localized line item type name.
    LINE_ITEM_TYPE_NAME = 194

    # Whether the Line item end time and end date is set to effectively never
    # end.
    LINE_ITEM_UNLIMITED_END = 187

    # The artificial cost per unit used by the Ad server to help rank
    # inventory.
    LINE_ITEM_VALUE_COST_PER_UNIT = 88

    # The web property code used for dynamic allocation Line Items.
    LINE_ITEM_WEB_PROPERTY_CODE = 179

    # The ID of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_ID = 140

    # Name of creative, includes regular creatives, and master and companions
    # in case of creative sets
    MASTER_COMPANION_CREATIVE_NAME = 141

    # Whether the mobile app is free.
    MOBILE_APP_FREE = 128

    # URL of app icon for the mobile app.
    MOBILE_APP_ICON_URL = 129

    # The ID of the Mobile App.
    MOBILE_APP_ID = 123

    # The name of the mobile app.
    MOBILE_APP_NAME = 127

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS = 311

    # Ownership status of the mobile app.
    MOBILE_APP_OWNERSHIP_STATUS_NAME = 312

    # The App Store of the mobile app.
    MOBILE_APP_STORE = 125

    # The localized name of the mobile app store.
    MOBILE_APP_STORE_NAME = 245

    # Mobile inventory type.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    # Values match the Inventory type dimension available in the Overview Home
    # dashboard. Note: Video takes precedence over any other value, for
    # example, if there is an in-stream video impression on a desktop device,
    # it will be attributed to in-stream video and not desktop web.
    MOBILE_INVENTORY_TYPE = 99

    # Mobile inventory type name.
    # Identifies whether a mobile ad came from a regular web page, an AMP web
    # page, or a mobile app.
    MOBILE_INVENTORY_TYPE_NAME = 21

    # SDK version of the mobile device.
    MOBILE_SDK_VERSION_NAME = 130

    # Breaks down reporting data by month and year.
    MONTH_YEAR = 6

    # Native ad format ID.
    NATIVE_AD_FORMAT_ID = 255

    # Native ad format name.
    NATIVE_AD_FORMAT_NAME = 254

    # Native style ID.
    NATIVE_STYLE_ID = 253

    # Native style name.
    NATIVE_STYLE_NAME = 252

    # Operating system category.
    OPERATING_SYSTEM_CATEGORY = 117

    # Operating system category name.
    OPERATING_SYSTEM_CATEGORY_NAME = 118

    # ID of the operating system version.
    OPERATING_SYSTEM_VERSION_ID = 238

    # Details of the operating system, including version.
    OPERATING_SYSTEM_VERSION_NAME = 237

    # Order agency.
    ORDER_AGENCY = 150

    # Order agency ID.
    ORDER_AGENCY_ID = 151

    # Order booked CPC.
    ORDER_BOOKED_CPC = 152

    # Order booked CPM.
    ORDER_BOOKED_CPM = 153

    # Order delivery status ENUM value.
    ORDER_DELIVERY_STATUS = 231

    # Order delivery status localized name.
    ORDER_DELIVERY_STATUS_NAME = 239

    # Order end date.
    ORDER_END_DATE = 154

    # Order end date and time.
    ORDER_END_DATE_TIME = 155

    # Order external ID.
    ORDER_EXTERNAL_ID = 156

    # Order id.
    ORDER_ID = 7

    # Order labels.
    ORDER_LABELS = 170

    # Order labels IDs.
    ORDER_LABEL_IDS = 171

    # Order lifetime clicks.
    ORDER_LIFETIME_CLICKS = 158

    # Order lifetime impressions.
    ORDER_LIFETIME_IMPRESSIONS = 159

    # Order name.
    ORDER_NAME = 8

    # Order PO number.
    ORDER_PO_NUMBER = 160

    # Whether the Order is programmatic.
    ORDER_PROGRAMMATIC = 157

    # Order sales person.
    ORDER_SALESPERSON = 161

    # Order secondary sales people.
    ORDER_SECONDARY_SALESPEOPLE = 164

    # Order secondary sales people ID.
    ORDER_SECONDARY_SALESPEOPLE_ID = 165

    # Order secondary traffickers.
    ORDER_SECONDARY_TRAFFICKERS = 166

    # Order secondary traffickers ID.
    ORDER_SECONDARY_TRAFFICKERS_ID = 167

    # Order start date.
    ORDER_START_DATE = 168

    # Order start date and time.
    ORDER_START_DATE_TIME = 169

    # Order trafficker.
    ORDER_TRAFFICKER = 162

    # Order trafficker ID.
    ORDER_TRAFFICKER_ID = 163

    # Whether the Order end time and end date is set to effectively never
    # end.
    ORDER_UNLIMITED_END = 203

    # Placement ID
    PLACEMENT_ID = 113

    # The full list of placement IDs associated with the ad unit.
    PLACEMENT_ID_ALL = 144

    # Placement name
    PLACEMENT_NAME = 114

    # The full list of placement names associated with the ad unit.
    PLACEMENT_NAME_ALL = 145

    # Placement status ENUM value
    PLACEMENT_STATUS = 362

    # The full list of placement status ENUM values associated with the ad
    # unit.
    PLACEMENT_STATUS_ALL = 363

    # Localized placement status name.
    PLACEMENT_STATUS_NAME = 364

    # The full list of localized placement status names associated with the ad
    # unit.
    PLACEMENT_STATUS_NAME_ALL = 365

    # The ID of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_ID = 240

    # The name of the buyer on a programmatic proposal.
    PROGRAMMATIC_BUYER_NAME = 241

    # Programmatic channel.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL = 13

    # Programmatic channel name.
    # The type of transaction that occurred in Ad Exchange.
    PROGRAMMATIC_CHANNEL_NAME = 14

    # The size of a rendered creative, It can differ with the creative's size
    # if a creative is shown in an ad slot of a different size.
    RENDERED_CREATIVE_SIZE = 343

    # Inventory Requested Ad Sizes dimension
    REQUESTED_AD_SIZES = 352

    # Request type ENUM
    REQUEST_TYPE = 146

    # Request type locallized name
    REQUEST_TYPE_NAME = 147

    # Indicates if a request was eligible for server-side unwrapping.
    SERVER_SIDE_UNWRAPPING_ELIGIBLE = 597

    # Information about domain or subdomains.
    SITE = 387

    # The ID of the browser, device or other environment into which a line item
    # or creative was served.
    TARGETING_ID = 232

    # Information about the browser, device and other environments into which
    # a line item or creative was served.
    TARGETING_NAME = 233

    # The way in which advertisers targeted their ads.
    TARGETING_TYPE = 385

    # The localized name of the way in which advertisers targeted their ads.
    TARGETING_TYPE_NAME = 386

    # Inventory Traffic source dimension
    TRAFFIC_SOURCE = 388

    # Inventory Traffic source dimension name
    TRAFFIC_SOURCE_NAME = 389

    # Unified pricing rule ID dimension
    UNIFIED_PRICING_RULE_ID = 393

    # Unified pricing rule name dimension
    UNIFIED_PRICING_RULE_NAME = 394

    # The video placement enum as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT = 172

    # The localized name of the video placement as defined by ADCOM 1.0-202303.
    VIDEO_PLCMT_NAME = 173

    # Breaks down reporting data by week of the year.
    WEEK = 5

    # Name of the company within a yield group
    YIELD_GROUP_BUYER_NAME = 184

    # ID of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_ID = 182

    # Name of the group of ad networks or exchanges used for Mediation and Open
    # Bidding
    YIELD_GROUP_NAME = 183

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 10_000

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 10_001

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 10_002

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 10_003

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 10_004

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 10_005

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 10_006

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 10_007

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 10_008

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 10_009

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 10_010

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 10_011

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 10_012

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 10_013

    # Custom field option ID for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 10_014

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_0_VALUE = 11_000

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_1_VALUE = 11_001

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_2_VALUE = 11_002

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_3_VALUE = 11_003

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_4_VALUE = 11_004

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_5_VALUE = 11_005

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_6_VALUE = 11_006

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_7_VALUE = 11_007

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_8_VALUE = 11_008

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_9_VALUE = 11_009

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_10_VALUE = 11_010

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_11_VALUE = 11_011

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_12_VALUE = 11_012

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_13_VALUE = 11_013

    # Custom field value for Line Item with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.line_item_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    LINE_ITEM_CUSTOM_FIELD_14_VALUE = 11_014

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_0_OPTION_ID = 12_000

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_1_OPTION_ID = 12_001

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_2_OPTION_ID = 12_002

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_3_OPTION_ID = 12_003

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_4_OPTION_ID = 12_004

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_5_OPTION_ID = 12_005

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_6_OPTION_ID = 12_006

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_7_OPTION_ID = 12_007

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_8_OPTION_ID = 12_008

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_9_OPTION_ID = 12_009

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_10_OPTION_ID = 12_010

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_11_OPTION_ID = 12_011

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_12_OPTION_ID = 12_012

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_13_OPTION_ID = 12_013

    # Custom field option ID for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`.
    ORDER_CUSTOM_FIELD_14_OPTION_ID = 12_014

    # Custom field value for Order with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 0 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_0_VALUE = 13_000

    # Custom field value for Order with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 1 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_1_VALUE = 13_001

    # Custom field value for Order with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 2 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_2_VALUE = 13_002

    # Custom field value for Order with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 3 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_3_VALUE = 13_003

    # Custom field value for Order with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 4 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_4_VALUE = 13_004

    # Custom field value for Order with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 5 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_5_VALUE = 13_005

    # Custom field value for Order with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 6 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_6_VALUE = 13_006

    # Custom field value for Order with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 7 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_7_VALUE = 13_007

    # Custom field value for Order with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 8 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_8_VALUE = 13_008

    # Custom field value for Order with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the value
    # as a string. Can only be used if the custom field at index 9 is of type
    # STRING.
    ORDER_CUSTOM_FIELD_9_VALUE = 13_009

    # Custom field value for Order with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_10_VALUE = 13_010

    # Custom field value for Order with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_11_VALUE = 13_011

    # Custom field value for Order with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_12_VALUE = 13_012

    # Custom field value for Order with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_13_VALUE = 13_013

    # Custom field value for Order with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    ORDER_CUSTOM_FIELD_14_VALUE = 13_014

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 14_000

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 14_001

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 14_002

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 14_003

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 14_004

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 14_005

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 14_006

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 14_007

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 14_008

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 14_009

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 14_010

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 14_011

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 14_012

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 14_013

    # Custom field option ID for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`.
    CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 14_014

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_0_VALUE = 15_000

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_1_VALUE = 15_001

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_2_VALUE = 15_002

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_3_VALUE = 15_003

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_4_VALUE = 15_004

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_5_VALUE = 15_005

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_6_VALUE = 15_006

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_7_VALUE = 15_007

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_8_VALUE = 15_008

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_9_VALUE = 15_009

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 10 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_10_VALUE = 15_010

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 11 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_11_VALUE = 15_011

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 12 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_12_VALUE = 15_012

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 13 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_13_VALUE = 15_013

    # Custom field value for Creative with custom field ID equal to the ID
    # in index 14 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING.
    CREATIVE_CUSTOM_FIELD_14_VALUE = 15_014

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID = 16_000

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID = 16_001

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID = 16_002

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID = 16_003

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID = 16_004

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID = 16_005

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID = 16_006

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID = 16_007

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID = 16_008

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID = 16_009

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID = 16_010

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID = 16_011

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID = 16_012

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID = 16_013

    # Custom field option ID for Backfill line item with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID = 16_014

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 0 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE = 17_000

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 1 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE = 17_001

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 2 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE = 17_002

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 3 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE = 17_003

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 4 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE = 17_004

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 5 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE = 17_005

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 6 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE = 17_006

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 7 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE = 17_007

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 8 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE = 17_008

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 9 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE = 17_009

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE = 17_010

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE = 17_011

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE = 17_012

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE = 17_013

    # Custom field value for Backfill line item with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.line_item_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE = 17_014

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 0 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID = 18_000

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID = 18_001

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID = 18_002

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID = 18_003

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID = 18_004

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID = 18_005

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID = 18_006

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID = 18_007

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID = 18_008

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID = 18_009

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID = 18_010

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID = 18_011

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID = 18_012

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID = 18_013

    # Custom field option ID for Backfill order with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.order_custom_field_ids`.
    BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID = 18_014

    # Custom field value for Backfill order with custom field ID equal to the
    # ID
    # in index 0 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE = 19_000

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 1 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 1 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE = 19_001

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 2 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 2 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE = 19_002

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 3 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 3 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE = 19_003

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 4 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 4 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE = 19_004

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 5 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 5 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE = 19_005

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 6 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 6 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE = 19_006

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 7 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 7 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE = 19_007

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 8 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 8 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE = 19_008

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 9 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 9 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE = 19_009

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 10 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 10 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE = 19_010

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 11 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 11 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE = 19_011

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 12 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 12 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE = 19_012

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 13 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 13 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE = 19_013

    # Custom field value for Backfill order with custom field ID equal to the
    # ID in index 14 of `ReportDefinition.order_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 14 is of
    # type STRING or DROPDOWN.
    BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE = 19_014

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 0 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID = 20_000

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 1 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID = 20_001

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 2 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID = 20_002

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 3 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID = 20_003

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 4 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID = 20_004

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 5 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID = 20_005

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 6 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID = 20_006

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 7 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID = 20_007

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 8 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID = 20_008

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 9 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID = 20_009

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID = 20_010

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID = 20_011

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID = 20_012

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID = 20_013

    # Custom field option ID for Backfill creative with custom field ID equal
    # to the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID = 20_014

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID
    # in index 0 of `ReportDefinition.creative_custom_field_ids`. Treats the
    # value as a string. Can only be used if the custom field at index 0 is of
    # type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE = 21_000

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 1 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 1 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE = 21_001

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 2 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 2 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE = 21_002

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 3 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 3 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE = 21_003

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 4 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 4 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE = 21_004

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 5 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 5 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE = 21_005

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 6 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 6 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE = 21_006

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 7 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 7 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE = 21_007

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 8 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 8 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE = 21_008

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 9 of `ReportDefinition.creative_custom_field_ids`. Treats
    # the value as a string. Can only be used if the custom field at index 9 is
    # of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE = 21_009

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 10 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 10 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE = 21_010

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 11 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 11 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE = 21_011

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 12 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 12 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE = 21_012

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 13 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 13 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE = 21_013

    # Custom field value for Backfill creative with custom field ID equal to
    # the ID in index 14 of `ReportDefinition.creative_custom_field_ids`.
    # Treats the value as a string. Can only be used if the custom field at
    # index 14 is of type STRING or DROPDOWN.
    BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE = 21_014

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE_ID = 100_000

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE_ID = 100_001

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE_ID = 100_002

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE_ID = 100_003

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE_ID = 100_004

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE_ID = 100_005

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE_ID = 100_006

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE_ID = 100_007

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE_ID = 100_008

    # Custom Dimension Value ID for Custom Dimension with key equal to the key
    # in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE_ID = 100_009

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 0 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_0_VALUE = 101_000

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 1 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_1_VALUE = 101_001

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 2 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_2_VALUE = 101_002

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 3 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_3_VALUE = 101_003

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 4 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_4_VALUE = 101_004

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 5 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_5_VALUE = 101_005

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 6 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_6_VALUE = 101_006

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 7 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_7_VALUE = 101_007

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 8 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_8_VALUE = 101_008

    # Custom Dimension Value name for Custom Dimension with key equal to the
    # id in index 9 of `ReportDefinition.custom_dimension_key_ids`.
    CUSTOM_DIMENSION_9_VALUE = 101_009
  end

  # Reporting metrics.
  module Metric
    # Default value. This value is unused.
    METRIC_UNSPECIFIED = 0

    # Active View total average time in seconds that specific impressions are
    # reported as being viewable.
    ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 61

    # Total number of impressions that were eligible to measure viewability.
    ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 58

    # The total number of impressions that were sampled and measured by active
    # view.
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 57

    # The percentage of total impressions that were measurable by active view
    # (out of all the total impressions sampled for active view).
    ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 60

    # The total number of impressions viewed on the user's screen.
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 56

    # The percentage of total impressions viewed on the user's screen (out of
    # the total impressions measurable by active view).
    ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 59

    # Active View AdSense average time in seconds that specific impressions are
    # reported as being viewable.
    ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 73

    # Total number of impressions delivered by AdSense that were eligible to
    # measure viewability.
    ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 70

    # The number of impressions delivered by AdSense that were sampled, and
    # measurable by active view.
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 69

    # The percentage of impressions delivered by AdSense that were measurable
    # by active view (out of all AdSense impressions sampled for active view).
    ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 72

    # The number of impressions delivered by AdSense viewed on the user's
    # screen.
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 68

    # The percentage of impressions delivered by AdSense viewed on the user's
    # screen (out of AdSense impressions measurable by active view).
    ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 71

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by AdSense through line item dynamic allocation.
    ADSENSE_AVERAGE_ECPM = 26

    # Number of clicks delivered by AdSense demand channel.
    ADSENSE_CLICKS = 23

    # The ratio of impressions served by AdSense that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. The
    # AdSense CTR is calculated as: (AdSense clicks / AdSense impressions).
    ADSENSE_CTR = 24

    # Total impressions delivered by AdSense.
    ADSENSE_IMPRESSIONS = 22

    # Ratio of clicks delivered by AdSense through line item dynamic allocation
    # in relation to the total clicks delivered.
    ADSENSE_PERCENT_CLICKS = 28

    # Ratio of impressions delivered by AdSense through line item dynamic
    # allocation in relation to the total impressions delivered.
    ADSENSE_PERCENT_IMPRESSIONS = 27

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue.
    ADSENSE_PERCENT_REVENUE = 29

    # Ratio of revenue generated by AdSense through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    ADSENSE_PERCENT_REVENUE_WITHOUT_CPD = 30

    # The total number of times that an AdSense ad is delivered.
    ADSENSE_RESPONSES_SERVED = 41

    # Revenue generated from AdSense through line item dynamic allocation,
    # calculated in the network's currency and time zone.
    ADSENSE_REVENUE = 25

    # Active View AdExchange average time in seconds that specific impressions
    # are reported as being viewable.
    AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 79

    # Total number of impressions delivered by Ad Exchange that were eligible
    # to measure viewability.
    AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 76

    # The number of impressions delivered by Ad Exchange that were sampled, and
    # measurable by active view.
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 75

    # The percentage of impressions delivered by Ad Exchange that were
    # measurable by active view (out of all Ad Exchange impressions sampled for
    # active view).
    AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 78

    # The number of impressions delivered by Ad Exchange viewed on the user's
    # screen.
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 74

    # The percentage of impressions delivered by Ad Exchange viewed on the
    # user's screen (out of Ad Exchange impressions measurable by active view).
    AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 77

    # The average effective cost-per-thousand-impressions earned from the ads
    # delivered by Ad Exchange through line item dynamic allocation.
    AD_EXCHANGE_AVERAGE_ECPM = 18

    # Number of clicks delivered by the Ad Exchange.
    AD_EXCHANGE_CLICKS = 15

    # The ratio of impressions served by the Ad Exchange that resulted in users
    # clicking on an ad. The clickthrough rate (CTR) is updated nightly. Ad
    # Exchange CTR is calculated as: (Ad Exchange clicks / Ad Exchange
    # impressions).
    AD_EXCHANGE_CTR = 16

    # Total impressions delivered by the Ad Exchange.
    AD_EXCHANGE_IMPRESSIONS = 14

    # Ratio of clicks delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total clicks delivered.
    AD_EXCHANGE_PERCENT_CLICKS = 20

    # Ratio of impressions delivered by Ad Exchange through line item dynamic
    # allocation in relation to the total impressions delivered.
    AD_EXCHANGE_PERCENT_IMPRESSIONS = 19

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue.
    AD_EXCHANGE_PERCENT_REVENUE = 21

    # Ratio of revenue generated by Ad Exchange through line item dynamic
    # allocation in relation to the total revenue (excluding CPD).
    AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD = 31

    # The total number of times that an Ad Exchange ad is delivered.
    AD_EXCHANGE_RESPONSES_SERVED = 42

    # Revenue generated from the Ad Exchange through line item dynamic
    # allocation, calculated in your network's currency and time zone.
    AD_EXCHANGE_REVENUE = 17

    # The total number of times that an ad request is sent to the ad server
    # including dynamic allocation.
    AD_REQUESTS = 38

    # Active View ad server average time in seconds that specific impressions
    # are reported as being viewable.
    AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME = 67

    # Total number of impressions delivered by the ad server that were eligible
    # to measure viewability.
    AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS = 64

    # The number of impressions delivered by the ad server that were sampled,
    # and measurable by active view.
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS = 63

    # The percentage of impressions delivered by the ad server that were
    # measurable by active view (out of all the ad server impressions sampled
    # for active view).
    AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE = 66

    # The number of impressions delivered by the ad server viewed on the user's
    # screen.
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS = 62

    # The percentage of impressions delivered by the ad server viewed on the
    # user's screen (out of the ad server impressions measurable by active
    # view).
    AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE = 65

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server.
    AD_SERVER_AVERAGE_ECPM = 34

    # Average effective cost-per-thousand-impressions earned from the ads
    # delivered by the Google Ad Manager server, excluding CPD value.
    AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD = 10

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown.
    AD_SERVER_BEGIN_TO_RENDER_IMPRESSIONS = 262

    # Total clicks served by the Google Ad Manager server. It usually takes
    # about 30 minutes for new clicks to be recorded and added to the total
    # displayed in reporting.
    AD_SERVER_CLICKS = 7

    # CPD revenue earned, calculated in your network's currency, for
    # the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_CPD_REVENUE = 32

    # Ratio of impressions served by the Google Ad Manager server that resulted
    # in users clicking on an ad. The clickthrough rate (CTR) is updated
    # nightly. The ad server CTR is calculated as: (Ad server clicks / Ad
    # server impressions).
    AD_SERVER_CTR = 8

    # Total impressions delivered by the Ad Server.
    AD_SERVER_IMPRESSIONS = 6

    # Ratio of clicks delivered by the Google Ad Manager server in relation to
    # the total clicks delivered.
    AD_SERVER_PERCENT_CLICKS = 12

    # Ratio of impressions delivered by the Google Ad Manager server in
    # relation to the total impressions delivered.
    AD_SERVER_PERCENT_IMPRESSIONS = 11

    # Ratio of revenue generated by the Google Ad Manager server in relation
    # to the total revenue.
    AD_SERVER_PERCENT_REVENUE = 35

    # Ratio of revenue generated by the Google Ad Manager server (excluding
    # CPD) in relation to the total revenue.
    AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD = 13

    # The total number of times that an ad is served by the ad server.
    AD_SERVER_RESPONSES_SERVED = 40

    # All CPM, CPC, and CPD revenue earned, calculated in your network's
    # currency, for the ads delivered by the Google Ad Manager server.
    # Sum of all booked revenue.
    AD_SERVER_REVENUE = 33

    # Revenue (excluding CPD) earned, calculated in your network's currency,
    # for the ads delivered by the Google Ad Manager server. Sum of all booked
    # revenue.
    AD_SERVER_REVENUE_WITHOUT_CPD = 9

    # The number of tracked ads delivered by the ad server.
    AD_SERVER_TRACKED_ADS = 264

    # Total raw impressions counted when creative begins to render or the
    # first frame of a video is shown, before invalid traffic filtrations by
    # Ad Server.
    AD_SERVER_UNFILTERED_BEGIN_TO_RENDER_IMPRESSIONS = 261

    # Total clicks delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_CLICKS = 259

    # Total impressions delivered by the Ad Server before spam filtering.
    AD_SERVER_UNFILTERED_IMPRESSIONS = 260

    # The number of tracked ads delivered by the ad server before invalid
    # traffic filtrations.
    AD_SERVER_UNFILTERED_TRACKED_ADS = 263

    # eCPM averaged across the Google Ad Manager server, AdSense,
    # and Ad Exchange.
    AVERAGE_ECPM = 37

    # eCPM averaged across the Google Ad Manager server (excluding CPD),
    # AdSense, and Ad Exchange.
    AVERAGE_ECPM_WITHOUT_CPD = 5

    # The number of times a user clicked on an ad.
    CLICKS = 2

    # The total number of times that the code for an ad is served by the ad
    # server including dynamic allocation.
    CODE_SERVED_COUNT = 44

    # For standard ads, your ad clickthrough rate (CTR) is the number of ad
    # clicks divided by the number of individual ad impressions expressed as a
    # fraction. Ad CTR = Clicks / Ad impressions.
    CTR = 3

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS = 129

    # The number of auction impressions sold by Google in partner sales.
    GOOGLE_SOLD_AUCTION_IMPRESSIONS = 128

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_COVIEWED_IMPRESSIONS = 131

    # The number of impressions sold by Google in partner sales.
    GOOGLE_SOLD_IMPRESSIONS = 130

    # The number of coviewed impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS = 127

    # The number of reservation impressions sold by Google in partner sales.
    GOOGLE_SOLD_RESERVATION_IMPRESSIONS = 126

    # Total impressions from the Google Ad Manager server, AdSense,
    # Ad Exchange, and yield group partners.
    IMPRESSIONS = 1

    # The number of filled pod requests (filled by partner or Google) in
    # partner sales.
    PARTNER_SALES_FILLED_POD_REQUESTS = 135

    # The percent of filled requests to total ad requests in
    # partner sales.
    PARTNER_SALES_FILL_RATE = 136

    # The percent of partner filled requests to total ad requests
    # in partner sales.
    PARTNER_SALES_PARTNER_MATCH_RATE = 137

    # The number of queries eligible for partner sales.
    PARTNER_SALES_QUERIES = 132

    # The number of partner unfilled impressions in partner sales.
    # If a pod request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNFILLED_IMPRESSIONS = 133

    # The number of partner unmatched queries in partner sales.
    # If an ad request is not filled by partner but filled by Google, this
    # metric will still count 1.
    PARTNER_SALES_UNMATCHED_QUERIES = 134

    # The number of code served sold by partner in partner sales.
    PARTNER_SOLD_CODE_SERVED = 125

    # The number of coviewed impressions sold by partner in partner sales.
    PARTNER_SOLD_COVIEWED_IMPRESSIONS = 124

    # The number of impressions sold by partner in partner sales.
    PARTNER_SOLD_IMPRESSIONS = 123

    # The total number of ad requests eligible for programmatic inventory,
    # including Programmatic Guaranteed, Preferred Deals, backfill, and open
    # auction.
    PROGRAMMATIC_ELIGIBLE_AD_REQUESTS = 177

    # The number of programmatic responses served divided by the number of
    # programmatic eligible ad requests. Includes Ad Exchange, Open Bidding,
    # and Preferred Deals.
    PROGRAMMATIC_MATCH_RATE = 178

    # Total number of ad responses served from programmatic demand sources.
    # Includes Ad Exchange, Open Bidding, and Preferred Deals.
    #
    # Differs from AD_EXCHANGE_RESPONSES_SERVED, which doesn't include Open
    # Bidding ad requests.
    PROGRAMMATIC_RESPONSES_SERVED = 176

    # The total number of times that an ad is served by the ad server including
    # dynamic allocation.
    RESPONSES_SERVED = 39

    # Total amount of CPM, CPC, and CPD revenue based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE = 36

    # Total amount of revenue (excluding CPD) based on the number of units
    # served by the Google Ad Manager server, AdSense, Ad Exchange, and
    # third-party Mediation networks.
    REVENUE_WITHOUT_CPD = 4

    # The average latency in milliseconds across all server-side unwrapping
    # callout requests. There is no special handling for error or timeout
    # responses. This reflects the entire chain of a parent callout request,
    # which may result in multiple child callouts. This metric is not sliced by
    # child callout dimensions.
    SERVER_SIDE_UNWRAPPING_AVERAGE_LATENCY_MS = 434

    # The total number of server-side unwrapping callout requests.
    SERVER_SIDE_UNWRAPPING_CALLOUTS = 435

    # The total number of server-side unwrapping callouts that returned an
    # empty response. Timeouts are not considered empty responses.
    SERVER_SIDE_UNWRAPPING_EMPTY_RESPONSES = 436

    # The total number of server-side unwrapping callouts that returned an
    # error response. Timeouts and empty responses are not considered errors.
    SERVER_SIDE_UNWRAPPING_ERROR_RESPONSES = 437

    # The total number of successfully unwrapped, non-empty server-side
    # wrapping callouts. Successful unwrapping does not indicate that the
    # resulting creative was served.
    SERVER_SIDE_UNWRAPPING_SUCCESSFUL_RESPONSES = 438

    # The total number of server-side unwrapping callouts that timed out before
    # returning a response.
    SERVER_SIDE_UNWRAPPING_TIMEOUTS = 439

    # The total number of missed impressions due to the ad servers' inability
    # to find ads to serve including dynamic allocation.
    UNFILLED_IMPRESSIONS = 45

    # The total number of times that an ad is not returned by the ad server.
    UNMATCHED_AD_REQUESTS = 43

    # Number of times an Offerwall message was shown to users.
    USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN = 121

    # The number of messages where the user gained an entitlement.
    USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS = 122

    # The number of user interactions with a video, on average, such as pause,
    # full screen, mute, etc.
    VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE = 92

    # The number of times a user collapses a video, either to its original size
    # or to a different size.
    VIDEO_INTERACTION_COLLAPSES = 93

    # The number of times a user expands a video.
    VIDEO_INTERACTION_EXPANDS = 95

    # The number of times ad clip played in full screen mode.
    VIDEO_INTERACTION_FULL_SCREENS = 96

    # The number of times video player was in mute state during play of ad
    # clip.
    VIDEO_INTERACTION_MUTES = 97

    # The number of times user paused ad clip.
    VIDEO_INTERACTION_PAUSES = 98

    # The number of times the user unpaused the video.
    VIDEO_INTERACTION_RESUMES = 99

    # The number of times a user rewinds the video.
    VIDEO_INTERACTION_REWINDS = 100

    # The number of times a user unmutes the video.
    VIDEO_INTERACTION_UNMUTES = 101

    # The number of times a skippable video is skipped.
    VIDEO_INTERACTION_VIDEO_SKIPS = 102

    # The number of total creative serves in video realtime reporting.
    VIDEO_REAL_TIME_CREATIVE_SERVES = 139

    # The number of errors of type 100 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_100_COUNT = 143

    # The number of errors of type 101 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_101_COUNT = 144

    # The number of errors of type 102 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_102_COUNT = 145

    # The number of errors of type 200 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_200_COUNT = 146

    # The number of errors of type 201 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_201_COUNT = 147

    # The number of errors of type 202 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_202_COUNT = 148

    # The number of errors of type 203 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_203_COUNT = 149

    # The number of errors of type 300 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_300_COUNT = 150

    # The number of errors of type 301 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_301_COUNT = 151

    # The number of errors of type 302 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_302_COUNT = 152

    # The number of errors of type 303 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_303_COUNT = 153

    # The number of errors of type 400 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_400_COUNT = 154

    # The number of errors of type 401 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_401_COUNT = 155

    # The number of errors of type 402 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_402_COUNT = 156

    # The number of errors of type 403 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_403_COUNT = 157

    # The number of errors of type 405 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_405_COUNT = 158

    # The number of errors of type 406 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_406_COUNT = 159

    # The number of errors of type 407 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_407_COUNT = 160

    # The number of errors of type 408 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_408_COUNT = 161

    # The number of errors of type 409 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_409_COUNT = 162

    # The number of errors of type 410 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_410_COUNT = 163

    # The number of errors of type 500 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_500_COUNT = 164

    # The number of errors of type 501 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_501_COUNT = 165

    # The number of errors of type 502 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_502_COUNT = 166

    # The number of errors of type 503 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_503_COUNT = 167

    # The number of errors of type 600 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_600_COUNT = 168

    # The number of errors of type 601 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_601_COUNT = 169

    # The number of errors of type 602 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_602_COUNT = 170

    # The number of errors of type 603 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_603_COUNT = 171

    # The number of errors of type 604 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_604_COUNT = 172

    # The number of errors of type 900 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_900_COUNT = 173

    # The number of errors of type 901 in video realtime reporting.
    VIDEO_REAL_TIME_ERROR_901_COUNT = 174

    # The number of total impressions in video realtime reporting.
    VIDEO_REAL_TIME_IMPRESSIONS = 138

    # The number of matched queries in video realtime reporting.
    VIDEO_REAL_TIME_MATCHED_QUERIES = 140

    # The number of all errors in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_ERROR_COUNT = 175

    # The number of total queries in video realtime reporting.
    VIDEO_REAL_TIME_TOTAL_QUERIES = 142

    # The number of unmatched queries in video realtime reporting.
    VIDEO_REAL_TIME_UNMATCHED_QUERIES = 141

    # Number of times that the publisher specified a video ad played
    # automatically.
    VIDEO_VIEWERSHIP_AUTO_PLAYS = 103

    # Average percentage of the video watched by users.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE = 104

    # Average time(seconds) users watched the video.
    VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME = 105

    # Number of times that the publisher specified a video ad was clicked to
    # play.
    VIDEO_VIEWERSHIP_CLICK_TO_PLAYS = 106

    # The number of times the video played to completion.
    VIDEO_VIEWERSHIP_COMPLETES = 107

    # Percentage of times the video played to the end.
    VIDEO_VIEWERSHIP_COMPLETION_RATE = 108

    # The number of engaged views: ad is viewed to completion or for 30s,
    # whichever comes first.
    VIDEO_VIEWERSHIP_ENGAGED_VIEWS = 109

    # The number of times the video played to 25% of its length.
    VIDEO_VIEWERSHIP_FIRST_QUARTILES = 110

    # The number of times the video reached its midpoint during play.
    VIDEO_VIEWERSHIP_MIDPOINTS = 111

    # The number of times a skip button is shown in video.
    VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN = 112

    # The number of impressions where the video was played.
    VIDEO_VIEWERSHIP_STARTS = 113

    # The number of times the video played to 75% of its length.
    VIDEO_VIEWERSHIP_THIRD_QUARTILES = 114

    # The number of times an error occurred, such as a VAST redirect error, a
    # video playback error, or an invalid response error.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT = 115

    # The percentage of video error count.
    VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE = 94

    # Duration of the video creative.
    VIDEO_VIEWERSHIP_VIDEO_LENGTH = 116

    # View-through rate represented as a percentage.
    VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE = 117

    # Number of winning bids received from Open Bidding buyers, even when the
    # winning bid is placed at the end of a mediation for mobile apps chain.
    YIELD_GROUP_AUCTIONS_WON = 80

    # Number of bids received from Open Bidding buyers, regardless of whether
    # the returned bid competes in an auction.
    YIELD_GROUP_BIDS = 81

    # Number of bids received from Open Bidding buyers that competed in
    # the auction.
    YIELD_GROUP_BIDS_IN_AUCTION = 82

    # Number of times a yield partner is asked to return bid to fill
    # a yield group request.
    YIELD_GROUP_CALLOUTS = 83

    # The estimated net rate for yield groups or individual
    # yield group partners.
    YIELD_GROUP_ESTIMATED_CPM = 88

    # Total net revenue earned by a yield group, based upon the yield group
    # estimated CPM and yield group impressions recorded.
    YIELD_GROUP_ESTIMATED_REVENUE = 87

    # Number of matched yield group requests where a yield partner delivered
    # their ad to publisher inventory.
    YIELD_GROUP_IMPRESSIONS = 85

    # Yield group Mediation fill rate indicating how often a network
    # fills an ad request.
    YIELD_GROUP_MEDIATION_FILL_RATE = 89

    # Total requests where a Mediation chain was served.
    YIELD_GROUP_MEDIATION_MATCHED_QUERIES = 86

    # The number of mediation chain passback across all channels.
    YIELD_GROUP_MEDIATION_PASSBACKS = 118

    # Revenue per thousand impressions based on data collected by Ad Manager
    # from third-party ad network reports.
    YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM = 90

    # Number of times a yield group buyer successfully returned a bid in
    # response to a yield group callout.
    YIELD_GROUP_SUCCESSFUL_RESPONSES = 84
  end

  # Possible metric value types to add.
  module MetricValueType
    # The values for the primary date_range.
    PRIMARY = 0

    # Each metrics' percent of the total for the primary date_range.
    PRIMARY_PERCENT_OF_TOTAL = 1

    # The values for the comparison_date_range.
    COMPARISON = 2

    # Each metrics' percent of the total for the comparison_date_range.
    COMPARISON_PERCENT_OF_TOTAL = 3

    # The absolute change between the primary and comparison date ranges.
    ABSOLUTE_CHANGE = 4

    # The relative change between the primary and comparison date ranges.
    RELATIVE_CHANGE = 5
  end

  # Supported report types.
  module ReportType
    # Default value. This value is unused.
    REPORT_TYPE_UNSPECIFIED = 0

    # Historical.
    HISTORICAL = 1
  end

  # The visibility of a report.
  module Visibility
    # Default value. Reports with hidden visibility will not appear in the Ad
    # Manager UI.
    HIDDEN = 0

    # Reports with draft visibility will appear in the Ad Manager UI only if
    # the user has configured the UI to show them.
    DRAFT = 1

    # Reports with saved visibility will appear in the Ad Manager UI by
    # default.
    SAVED = 2
  end

  # The source to determine the time zone for the report.
  module TimeZoneSource
    # Unspecified default value.
    TIME_ZONE_SOURCE_UNSPECIFIED = 0

    # Use the publisher's time zone in network settings.
    PUBLISHER = 1

    # Use the time zone of the ad exchange.
    # Only compatible with Ad Exchange dimensions and metrics.
    AD_EXCHANGE = 2

    # Use UTC time zone.
    # Only compatible with Revenue Verification reports.
    UTC = 3

    # Use the time zone provided in the ReportDefinition.time_zone field.
    # Has limited dimension and metric compatibility compared with PUBLISHER,
    # and reports may take longer to run since the dates are dynamically
    # calculated at request time.
    PROVIDED = 4
  end
end