google-ads-googleads 40.0.0 → 41.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/ads/google_ads/factories/v24/enums.rb +32 -0
- data/lib/google/ads/google_ads/factories/v24/resources.rb +119 -2
- data/lib/google/ads/google_ads/v24/common/ad_type_infos_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/common/criteria_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/common/experiment_types_pb.rb +27 -0
- data/lib/google/ads/google_ads/v24/common/metrics_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/common/segments_pb.rb +2 -1
- data/lib/google/ads/google_ads/v24/enums/asset_field_type_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/enums/experiment_asset_detail_operation_pb.rb +24 -0
- data/lib/google/ads/google_ads/v24/enums/experiment_type_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/enums/mobile_device_platform_pb.rb +24 -0
- data/lib/google/ads/google_ads/v24/enums/optimize_assets_experiment_subtype_pb.rb +24 -0
- data/lib/google/ads/google_ads/v24/enums/third_party_viewability_integration_partner_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/enums/video_experiment_subtype_pb.rb +24 -0
- data/lib/google/ads/google_ads/v24/errors/criterion_error_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/errors/date_range_error_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/errors/experiment_arm_error_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/errors/experiment_error_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/resources/customer_user_access_pb.rb +1 -1
- data/lib/google/ads/google_ads/v24/resources/experiment_arm_pb.rb +11 -1
- data/lib/google/ads/google_ads/v24/resources/experiment_pb.rb +2 -1
- data/lib/google/ads/google_ads/v24/services/experiment_arm_service/paths.rb +68 -0
- data/lib/google/ads/google_ads/version.rb +1 -1
- metadata +8 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6e1714acbf570672e0dccabb5bfab917b9b3f07628b6123ce0f858d8d1a402b
|
|
4
|
+
data.tar.gz: 36ac1d965e0634fcca313e8e8268c68026b42a39cb8531fd0fb0a99481d4ec24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 136a437564c62152c8032ad8d2937f94ad0838c2127fc4dc0d064663d3f5741ce7fe3bb3fc33d03f26aac036926508828a0cb34543b300d9e5fcd202e85d71c3
|
|
7
|
+
data.tar.gz: 69ecd0d7161050f5f69d0435c5023a435cbfe2624d8a146a8779fcd893ab2e5ec6bdb63ef92819594169934325739ee459d9d031ea728e1c417eb75a0509734f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
41.0.0
|
|
2
|
+
-----
|
|
3
|
+
- Compatibility with v24 of the API: https://developers.google.com/google-ads/api/docs/release-notes
|
|
4
|
+
|
|
5
|
+
40.1.0
|
|
6
|
+
-----
|
|
7
|
+
- Updated minitest to 6.0.
|
|
8
|
+
|
|
9
|
+
40.0.0
|
|
10
|
+
-----
|
|
11
|
+
- Updated minitest to 6.0.
|
|
12
|
+
|
|
1
13
|
40.0.0
|
|
2
14
|
-----
|
|
3
15
|
- Compatibility with v24 of the API: https://developers.google.com/google-ads/api/docs/release-notes
|
|
@@ -1868,6 +1868,30 @@ module Google
|
|
|
1868
1868
|
Google::Ads::GoogleAds::V24::Enums::DistanceBucketEnum::DistanceBucket.descriptor
|
|
1869
1869
|
end
|
|
1870
1870
|
|
|
1871
|
+
# Returns the descriptor for the ExperimentAssetDetailOperation enum
|
|
1872
|
+
#
|
|
1873
|
+
# @return [Google::Protobuf::EnumDescriptor] for the ExperimentAssetDetailOperation enum
|
|
1874
|
+
def self.experiment_asset_detail_operation
|
|
1875
|
+
require "google/ads/google_ads/v24/enums/experiment_asset_detail_operation_pb"
|
|
1876
|
+
Google::Ads::GoogleAds::V24::Enums::ExperimentAssetDetailOperationEnum::ExperimentAssetDetailOperation.descriptor
|
|
1877
|
+
end
|
|
1878
|
+
|
|
1879
|
+
# Returns the descriptor for the OptimizeAssetsExperimentSubtype enum
|
|
1880
|
+
#
|
|
1881
|
+
# @return [Google::Protobuf::EnumDescriptor] for the OptimizeAssetsExperimentSubtype enum
|
|
1882
|
+
def self.optimize_assets_experiment_subtype
|
|
1883
|
+
require "google/ads/google_ads/v24/enums/optimize_assets_experiment_subtype_pb"
|
|
1884
|
+
Google::Ads::GoogleAds::V24::Enums::OptimizeAssetsExperimentSubtypeEnum::OptimizeAssetsExperimentSubtype.descriptor
|
|
1885
|
+
end
|
|
1886
|
+
|
|
1887
|
+
# Returns the descriptor for the VideoExperimentSubtype enum
|
|
1888
|
+
#
|
|
1889
|
+
# @return [Google::Protobuf::EnumDescriptor] for the VideoExperimentSubtype enum
|
|
1890
|
+
def self.video_experiment_subtype
|
|
1891
|
+
require "google/ads/google_ads/v24/enums/video_experiment_subtype_pb"
|
|
1892
|
+
Google::Ads::GoogleAds::V24::Enums::VideoExperimentSubtypeEnum::VideoExperimentSubtype.descriptor
|
|
1893
|
+
end
|
|
1894
|
+
|
|
1871
1895
|
# Returns the descriptor for the ExperimentMetric enum
|
|
1872
1896
|
#
|
|
1873
1897
|
# @return [Google::Protobuf::EnumDescriptor] for the ExperimentMetric enum
|
|
@@ -2756,6 +2780,14 @@ module Google
|
|
|
2756
2780
|
Google::Ads::GoogleAds::V24::Enums::MatchTypeEnum::MatchType.descriptor
|
|
2757
2781
|
end
|
|
2758
2782
|
|
|
2783
|
+
# Returns the descriptor for the MobileDevicePlatform enum
|
|
2784
|
+
#
|
|
2785
|
+
# @return [Google::Protobuf::EnumDescriptor] for the MobileDevicePlatform enum
|
|
2786
|
+
def self.mobile_device_platform
|
|
2787
|
+
require "google/ads/google_ads/v24/enums/mobile_device_platform_pb"
|
|
2788
|
+
Google::Ads::GoogleAds::V24::Enums::MobileDevicePlatformEnum::MobileDevicePlatform.descriptor
|
|
2789
|
+
end
|
|
2790
|
+
|
|
2759
2791
|
# Returns the descriptor for the SearchEngineResultsPageType enum
|
|
2760
2792
|
#
|
|
2761
2793
|
# @return [Google::Protobuf::EnumDescriptor] for the SearchEngineResultsPageType enum
|
|
@@ -6491,6 +6491,123 @@ module Google
|
|
|
6491
6491
|
res
|
|
6492
6492
|
end
|
|
6493
6493
|
|
|
6494
|
+
# Returns a new instance of asset_testing_info, optionally
|
|
6495
|
+
# yielding it to a passed block so that attributes can be set on it.
|
|
6496
|
+
#
|
|
6497
|
+
# @yield [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetTestingInfo] the new instance that will be returned so attributes
|
|
6498
|
+
# can be set
|
|
6499
|
+
# @return [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetTestingInfo] the created resource
|
|
6500
|
+
def self.asset_testing_info
|
|
6501
|
+
require "google/ads/google_ads/v24/resources/experiment_arm_pb"
|
|
6502
|
+
res = Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetTestingInfo.new
|
|
6503
|
+
yield res if block_given?
|
|
6504
|
+
res
|
|
6505
|
+
end
|
|
6506
|
+
|
|
6507
|
+
# Returns a new instance of asset_variation_info, optionally
|
|
6508
|
+
# yielding it to a passed block so that attributes can be set on it.
|
|
6509
|
+
#
|
|
6510
|
+
# @yield [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetVariationInfo] the new instance that will be returned so attributes
|
|
6511
|
+
# can be set
|
|
6512
|
+
# @return [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetVariationInfo] the created resource
|
|
6513
|
+
def self.asset_variation_info
|
|
6514
|
+
require "google/ads/google_ads/v24/resources/experiment_arm_pb"
|
|
6515
|
+
res = Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetVariationInfo.new
|
|
6516
|
+
yield res if block_given?
|
|
6517
|
+
res
|
|
6518
|
+
end
|
|
6519
|
+
|
|
6520
|
+
# Returns a new instance of asset_detail, optionally
|
|
6521
|
+
# yielding it to a passed block so that attributes can be set on it.
|
|
6522
|
+
#
|
|
6523
|
+
# @yield [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetDetail] the new instance that will be returned so attributes
|
|
6524
|
+
# can be set
|
|
6525
|
+
# @return [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetDetail] the created resource
|
|
6526
|
+
def self.asset_detail
|
|
6527
|
+
require "google/ads/google_ads/v24/resources/experiment_arm_pb"
|
|
6528
|
+
res = Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetDetail.new
|
|
6529
|
+
yield res if block_given?
|
|
6530
|
+
res
|
|
6531
|
+
end
|
|
6532
|
+
|
|
6533
|
+
# Returns a new instance of experiment_arm_asset_group_info, optionally
|
|
6534
|
+
# yielding it to a passed block so that attributes can be set on it.
|
|
6535
|
+
#
|
|
6536
|
+
# @yield [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetGroupInfo] the new instance that will be returned so attributes
|
|
6537
|
+
# can be set
|
|
6538
|
+
# @return [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetGroupInfo] the created resource
|
|
6539
|
+
def self.experiment_arm_asset_group_info
|
|
6540
|
+
require "google/ads/google_ads/v24/resources/experiment_arm_pb"
|
|
6541
|
+
res = Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetGroupInfo.new
|
|
6542
|
+
yield res if block_given?
|
|
6543
|
+
res
|
|
6544
|
+
end
|
|
6545
|
+
|
|
6546
|
+
# Returns a new instance of asset_group_asset_info, optionally
|
|
6547
|
+
# yielding it to a passed block so that attributes can be set on it.
|
|
6548
|
+
#
|
|
6549
|
+
# @yield [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetGroupAssetInfo] the new instance that will be returned so attributes
|
|
6550
|
+
# can be set
|
|
6551
|
+
# @return [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetGroupAssetInfo] the created resource
|
|
6552
|
+
def self.asset_group_asset_info
|
|
6553
|
+
require "google/ads/google_ads/v24/resources/experiment_arm_pb"
|
|
6554
|
+
res = Google::Ads::GoogleAds::V24::Resources::ExperimentArm::AssetGroupAssetInfo.new
|
|
6555
|
+
yield res if block_given?
|
|
6556
|
+
res
|
|
6557
|
+
end
|
|
6558
|
+
|
|
6559
|
+
# Returns a new instance of experimental_performance_max_campaign_settings, optionally
|
|
6560
|
+
# yielding it to a passed block so that attributes can be set on it.
|
|
6561
|
+
#
|
|
6562
|
+
# @yield [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::ExperimentalPerformanceMaxCampaignSettings] the new instance that will be returned so attributes
|
|
6563
|
+
# can be set
|
|
6564
|
+
# @return [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::ExperimentalPerformanceMaxCampaignSettings] the created resource
|
|
6565
|
+
def self.experimental_performance_max_campaign_settings
|
|
6566
|
+
require "google/ads/google_ads/v24/resources/experiment_arm_pb"
|
|
6567
|
+
res = Google::Ads::GoogleAds::V24::Resources::ExperimentArm::ExperimentalPerformanceMaxCampaignSettings.new
|
|
6568
|
+
yield res if block_given?
|
|
6569
|
+
res
|
|
6570
|
+
end
|
|
6571
|
+
|
|
6572
|
+
# Returns a new instance of performance_max_experiment_arm_info, optionally
|
|
6573
|
+
# yielding it to a passed block so that attributes can be set on it.
|
|
6574
|
+
#
|
|
6575
|
+
# @yield [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::PerformanceMaxExperimentArmInfo] the new instance that will be returned so attributes
|
|
6576
|
+
# can be set
|
|
6577
|
+
# @return [Google::Ads::GoogleAds::V24::Resources::ExperimentArm::PerformanceMaxExperimentArmInfo] the created resource
|
|
6578
|
+
def self.performance_max_experiment_arm_info
|
|
6579
|
+
require "google/ads/google_ads/v24/resources/experiment_arm_pb"
|
|
6580
|
+
res = Google::Ads::GoogleAds::V24::Resources::ExperimentArm::PerformanceMaxExperimentArmInfo.new
|
|
6581
|
+
yield res if block_given?
|
|
6582
|
+
res
|
|
6583
|
+
end
|
|
6584
|
+
|
|
6585
|
+
# Returns a new instance of video_experiment_info, optionally
|
|
6586
|
+
# yielding it to a passed block so that attributes can be set on it.
|
|
6587
|
+
#
|
|
6588
|
+
# @yield [Google::Ads::GoogleAds::V24::Common::VideoExperimentInfo] the new instance that will be returned so attributes
|
|
6589
|
+
# can be set
|
|
6590
|
+
# @return [Google::Ads::GoogleAds::V24::Common::VideoExperimentInfo] the created resource
|
|
6591
|
+
def self.video_experiment_info
|
|
6592
|
+
require "google/ads/google_ads/v24/common/experiment_types_pb"
|
|
6593
|
+
res = Google::Ads::GoogleAds::V24::Common::VideoExperimentInfo.new
|
|
6594
|
+
yield res if block_given?
|
|
6595
|
+
res
|
|
6596
|
+
end
|
|
6597
|
+
|
|
6598
|
+
# Returns a new instance of optimize_assets_experiment_info, optionally
|
|
6599
|
+
# yielding it to a passed block so that attributes can be set on it.
|
|
6600
|
+
#
|
|
6601
|
+
# @yield [Google::Ads::GoogleAds::V24::Common::OptimizeAssetsExperimentInfo] the new instance that will be returned so attributes
|
|
6602
|
+
# can be set
|
|
6603
|
+
# @return [Google::Ads::GoogleAds::V24::Common::OptimizeAssetsExperimentInfo] the created resource
|
|
6604
|
+
def self.optimize_assets_experiment_info
|
|
6605
|
+
require "google/ads/google_ads/v24/common/experiment_types_pb"
|
|
6606
|
+
res = Google::Ads::GoogleAds::V24::Common::OptimizeAssetsExperimentInfo.new
|
|
6607
|
+
yield res if block_given?
|
|
6608
|
+
res
|
|
6609
|
+
end
|
|
6610
|
+
|
|
6494
6611
|
# Returns a new instance of metric_goal, optionally
|
|
6495
6612
|
# yielding it to a passed block so that attributes can be set on it.
|
|
6496
6613
|
#
|
|
@@ -12900,13 +13017,13 @@ module Google
|
|
|
12900
13017
|
res
|
|
12901
13018
|
end
|
|
12902
13019
|
|
|
12903
|
-
# Returns a new instance of
|
|
13020
|
+
# Returns a new instance of generate_recommendations_request_asset_group_info, optionally
|
|
12904
13021
|
# yielding it to a passed block so that attributes can be set on it.
|
|
12905
13022
|
#
|
|
12906
13023
|
# @yield [Google::Ads::GoogleAds::V24::Services::GenerateRecommendationsRequest::AssetGroupInfo] the new instance that will be returned so attributes
|
|
12907
13024
|
# can be set
|
|
12908
13025
|
# @return [Google::Ads::GoogleAds::V24::Services::GenerateRecommendationsRequest::AssetGroupInfo] the created resource
|
|
12909
|
-
def self.
|
|
13026
|
+
def self.generate_recommendations_request_asset_group_info
|
|
12910
13027
|
require "google/ads/google_ads/v24/services/recommendation_service_pb"
|
|
12911
13028
|
res = Google::Ads::GoogleAds::V24::Services::GenerateRecommendationsRequest::AssetGroupInfo.new
|
|
12912
13029
|
yield res if block_given?
|
|
@@ -13,7 +13,7 @@ require 'google/ads/google_ads/v24/enums/video_thumbnail_pb'
|
|
|
13
13
|
require 'google/api/field_behavior_pb'
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
descriptor_data = "\n3google/ads/googleads/v24/common/ad_type_infos.proto\x12\x1fgoogle.ads.googleads.v24.common\x1a.google/ads/googleads/v24/common/ad_asset.proto\x1a>google/ads/googleads/v24/enums/display_ad_format_setting.proto\x1a@google/ads/googleads/v24/enums/display_upload_product_type.proto\x1a\x44google/ads/googleads/v24/enums/legacy_app_install_ad_app_store.proto\x1a.google/ads/googleads/v24/enums/mime_type.proto\x1a\x34google/ads/googleads/v24/enums/video_thumbnail.proto\x1a\x1fgoogle/api/field_behavior.proto\"\x88\x01\n\nTextAdInfo\x12\x15\n\x08headline\x18\x04 \x01(\tH\x00\x88\x01\x01\x12\x19\n\x0c\x64\x65scription1\x18\x05 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x64\x65scription2\x18\x06 \x01(\tH\x02\x88\x01\x01\x42\x0b\n\t_headlineB\x0f\n\r_description1B\x0f\n\r_description2\"\xb6\x02\n\x12\x45xpandedTextAdInfo\x12\x1b\n\x0eheadline_part1\x18\x08 \x01(\tH\x00\x88\x01\x01\x12\x1b\n\x0eheadline_part2\x18\t \x01(\tH\x01\x88\x01\x01\x12\x1b\n\x0eheadline_part3\x18\n \x01(\tH\x02\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x0b \x01(\tH\x03\x88\x01\x01\x12\x19\n\x0c\x64\x65scription2\x18\x0c \x01(\tH\x04\x88\x01\x01\x12\x12\n\x05path1\x18\r \x01(\tH\x05\x88\x01\x01\x12\x12\n\x05path2\x18\x0e \x01(\tH\x06\x88\x01\x01\x42\x11\n\x0f_headline_part1B\x11\n\x0f_headline_part2B\x11\n\x0f_headline_part3B\x0e\n\x0c_descriptionB\x0f\n\r_description2B\x08\n\x06_path1B\x08\n\x06_path2\"s\n\x1b\x45xpandedDynamicSearchAdInfo\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x19\n\x0c\x64\x65scription2\x18\x04 \x01(\tH\x01\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x0f\n\r_description2\"\r\n\x0bHotelAdInfo\"\x0e\n\x0cTravelAdInfo\"\x15\n\x13ShoppingSmartAdInfo\"\x17\n\x15ShoppingProductAdInfo\"E\n\x1fShoppingComparisonListingAdInfo\x12\x15\n\x08headline\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x0b\n\t_headline\"\x9e\x04\n\x0bImageAdInfo\x12\x18\n\x0bpixel_width\x18\x0f \x01(\x03H\x01\x88\x01\x01\x12\x19\n\x0cpixel_height\x18\x10 \x01(\x03H\x02\x88\x01\x01\x12\x16\n\timage_url\x18\x11 \x01(\tH\x03\x88\x01\x01\x12 \n\x13preview_pixel_width\x18\x12 \x01(\x03H\x04\x88\x01\x01\x12!\n\x14preview_pixel_height\x18\x13 \x01(\x03H\x05\x88\x01\x01\x12\x1e\n\x11preview_image_url\x18\x14 \x01(\tH\x06\x88\x01\x01\x12H\n\tmime_type\x18\n \x01(\x0e\x32\x35.google.ads.googleads.v24.enums.MimeTypeEnum.MimeType\x12\x11\n\x04name\x18\x15 \x01(\tH\x07\x88\x01\x01\x12\x44\n\x0bimage_asset\x18\x16 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetH\x00\x12\x0e\n\x04\x64\x61ta\x18\r \x01(\x0cH\x00\x12\"\n\x18\x61\x64_id_to_copy_image_from\x18\x0e \x01(\x03H\x00\x42\x07\n\x05imageB\x0e\n\x0c_pixel_widthB\x0f\n\r_pixel_heightB\x0c\n\n_image_urlB\x16\n\x14_preview_pixel_widthB\x17\n\x15_preview_pixel_heightB\x14\n\x12_preview_image_urlB\x07\n\x05_name\"\x9a\x01\n\x19VideoBumperInStreamAdInfo\x12G\n\x10\x63ompanion_banner\x18\x03 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x1b\n\x13\x61\x63tion_button_label\x18\x04 \x01(\t\x12\x17\n\x0f\x61\x63tion_headline\x18\x05 \x01(\t\"\xa0\x01\n\x1fVideoNonSkippableInStreamAdInfo\x12G\n\x10\x63ompanion_banner\x18\x05 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x1b\n\x13\x61\x63tion_button_label\x18\x03 \x01(\t\x12\x17\n\x0f\x61\x63tion_headline\x18\x04 \x01(\t\"\x9c\x01\n\x1bVideoTrueViewInStreamAdInfo\x12\x1b\n\x13\x61\x63tion_button_label\x18\x04 \x01(\t\x12\x17\n\x0f\x61\x63tion_headline\x18\x05 \x01(\t\x12G\n\x10\x63ompanion_banner\x18\x07 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\"=\n\x14VideoOutstreamAdInfo\x12\x10\n\x08headline\x18\x03 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\"\xa7\x01\n\x11InFeedVideoAdInfo\x12\x10\n\x08headline\x18\x01 \x01(\t\x12\x14\n\x0c\x64\x65scription1\x18\x02 \x01(\t\x12\x14\n\x0c\x64\x65scription2\x18\x03 \x01(\t\x12T\n\tthumbnail\x18\x04 \x01(\x0e\x32\x41.google.ads.googleads.v24.enums.VideoThumbnailEnum.VideoThumbnail\"\x14\n\x12YouTubeAudioAdInfo\"\xab\x04\n\x0bVideoAdInfo\x12<\n\x05video\x18\x08 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\x12Q\n\tin_stream\x18\x02 \x01(\x0b\x32<.google.ads.googleads.v24.common.VideoTrueViewInStreamAdInfoH\x00\x12L\n\x06\x62umper\x18\x03 \x01(\x0b\x32:.google.ads.googleads.v24.common.VideoBumperInStreamAdInfoH\x00\x12K\n\nout_stream\x18\x04 \x01(\x0b\x32\x35.google.ads.googleads.v24.common.VideoOutstreamAdInfoH\x00\x12Y\n\rnon_skippable\x18\x05 \x01(\x0b\x32@.google.ads.googleads.v24.common.VideoNonSkippableInStreamAdInfoH\x00\x12\x45\n\x07in_feed\x18\t \x01(\x0b\x32\x32.google.ads.googleads.v24.common.InFeedVideoAdInfoH\x00\x12\x44\n\x05\x61udio\x18\n \x01(\x0b\x32\x33.google.ads.googleads.v24.common.YouTubeAudioAdInfoH\x00\x42\x08\n\x06\x66ormat\"\xf4\x04\n\x15VideoResponsiveAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x44\n\x0elong_headlines\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x03 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x45\n\x0f\x63\x61ll_to_actions\x18\x04 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x06videos\x18\x05 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAssetB\x03\xe0\x41\x02\x12H\n\rbusiness_name\x18\t \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12G\n\x0blogo_images\x18\n \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetB\x03\xe0\x41\x02\x12H\n\x11\x63ompanion_banners\x18\x06 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x13\n\x0b\x62readcrumb1\x18\x07 \x01(\t\x12\x13\n\x0b\x62readcrumb2\x18\x08 \x01(\t\"\xd9\x01\n\x16ResponsiveSearchAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x12\n\x05path1\x18\x05 \x01(\tH\x00\x88\x01\x01\x12\x12\n\x05path2\x18\x06 \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06_path1B\x08\n\x06_path2\"\xae\x06\n\x1dLegacyResponsiveDisplayAdInfo\x12\x1b\n\x0eshort_headline\x18\x10 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rlong_headline\x18\x11 \x01(\tH\x01\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x12 \x01(\tH\x02\x88\x01\x01\x12\x1a\n\rbusiness_name\x18\x13 \x01(\tH\x03\x88\x01\x01\x12!\n\x14\x61llow_flexible_color\x18\x14 \x01(\x08H\x04\x88\x01\x01\x12\x19\n\x0c\x61\x63\x63\x65nt_color\x18\x15 \x01(\tH\x05\x88\x01\x01\x12\x17\n\nmain_color\x18\x16 \x01(\tH\x06\x88\x01\x01\x12 \n\x13\x63\x61ll_to_action_text\x18\x17 \x01(\tH\x07\x88\x01\x01\x12\x17\n\nlogo_image\x18\x18 \x01(\tH\x08\x88\x01\x01\x12\x1e\n\x11square_logo_image\x18\x19 \x01(\tH\t\x88\x01\x01\x12\x1c\n\x0fmarketing_image\x18\x1a \x01(\tH\n\x88\x01\x01\x12#\n\x16square_marketing_image\x18\x1b \x01(\tH\x0b\x88\x01\x01\x12i\n\x0e\x66ormat_setting\x18\r \x01(\x0e\x32Q.google.ads.googleads.v24.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting\x12\x19\n\x0cprice_prefix\x18\x1c \x01(\tH\x0c\x88\x01\x01\x12\x17\n\npromo_text\x18\x1d \x01(\tH\r\x88\x01\x01\x42\x11\n\x0f_short_headlineB\x10\n\x0e_long_headlineB\x0e\n\x0c_descriptionB\x10\n\x0e_business_nameB\x17\n\x15_allow_flexible_colorB\x0f\n\r_accent_colorB\r\n\x0b_main_colorB\x16\n\x14_call_to_action_textB\r\n\x0b_logo_imageB\x14\n\x12_square_logo_imageB\x12\n\x10_marketing_imageB\x19\n\x17_square_marketing_imageB\x0f\n\r_price_prefixB\r\n\x0b_promo_text\"\xfd\x03\n\tAppAdInfo\x12G\n\x11mandatory_ad_text\x18\x01 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12?\n\theadlines\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x03 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12=\n\x06images\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x45\n\x0eyoutube_videos\x18\x05 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\x12P\n\x13html5_media_bundles\x18\x06 \x03(\x0b\x32\x33.google.ads.googleads.v24.common.AdMediaBundleAsset\x12J\n\rapp_deep_link\x18\x07 \x01(\x0b\x32\x33.google.ads.googleads.v24.common.AdAppDeepLinkAsset\"\x98\x02\n\x13\x41ppEngagementAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12=\n\x06images\x18\x03 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12=\n\x06videos\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\"\xa5\x02\n\x18\x41ppPreRegistrationAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12=\n\x06images\x18\x03 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x45\n\x0eyoutube_videos\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\"\xa2\x02\n\x16LegacyAppInstallAdInfo\x12\x13\n\x06\x61pp_id\x18\x06 \x01(\tH\x00\x88\x01\x01\x12l\n\tapp_store\x18\x02 \x01(\x0e\x32Y.google.ads.googleads.v24.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore\x12\x15\n\x08headline\x18\x07 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x64\x65scription1\x18\x08 \x01(\tH\x02\x88\x01\x01\x12\x19\n\x0c\x64\x65scription2\x18\t \x01(\tH\x03\x88\x01\x01\x42\t\n\x07_app_idB\x0b\n\t_headlineB\x0f\n\r_description1B\x0f\n\r_description2\"\xe0\x08\n\x17ResponsiveDisplayAdInfo\x12G\n\x10marketing_images\x18\x01 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12N\n\x17square_marketing_images\x18\x02 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x42\n\x0blogo_images\x18\x03 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12I\n\x12square_logo_images\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12?\n\theadlines\x18\x05 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x43\n\rlong_headline\x18\x06 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x07 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x45\n\x0eyoutube_videos\x18\x08 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\x12\x1a\n\rbusiness_name\x18\x11 \x01(\tH\x00\x88\x01\x01\x12\x17\n\nmain_color\x18\x12 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x61\x63\x63\x65nt_color\x18\x13 \x01(\tH\x02\x88\x01\x01\x12!\n\x14\x61llow_flexible_color\x18\x14 \x01(\x08H\x03\x88\x01\x01\x12 \n\x13\x63\x61ll_to_action_text\x18\x15 \x01(\tH\x04\x88\x01\x01\x12\x19\n\x0cprice_prefix\x18\x16 \x01(\tH\x05\x88\x01\x01\x12\x17\n\npromo_text\x18\x17 \x01(\tH\x06\x88\x01\x01\x12i\n\x0e\x66ormat_setting\x18\x10 \x01(\x0e\x32Q.google.ads.googleads.v24.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting\x12U\n\x0c\x63ontrol_spec\x18\x18 \x01(\x0b\x32?.google.ads.googleads.v24.common.ResponsiveDisplayAdControlSpecB\x10\n\x0e_business_nameB\r\n\x0b_main_colorB\x0f\n\r_accent_colorB\x17\n\x15_allow_flexible_colorB\x16\n\x14_call_to_action_textB\x0f\n\r_price_prefixB\r\n\x0b_promo_text\"\xe1\x03\n\x0bLocalAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x45\n\x0f\x63\x61ll_to_actions\x18\x03 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12G\n\x10marketing_images\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x42\n\x0blogo_images\x18\x05 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12=\n\x06videos\x18\x06 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\x12\x12\n\x05path1\x18\t \x01(\tH\x00\x88\x01\x01\x12\x12\n\x05path2\x18\n \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06_path1B\x08\n\x06_path2\"\xed\x01\n\x13\x44isplayUploadAdInfo\x12z\n\x1b\x64isplay_upload_product_type\x18\x01 \x01(\x0e\x32U.google.ads.googleads.v24.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType\x12K\n\x0cmedia_bundle\x18\x02 \x01(\x0b\x32\x33.google.ads.googleads.v24.common.AdMediaBundleAssetH\x00\x42\r\n\x0bmedia_asset\"a\n\x1eResponsiveDisplayAdControlSpec\x12!\n\x19\x65nable_asset_enhancements\x18\x01 \x01(\x08\x12\x1c\n\x14\x65nable_autogen_video\x18\x02 \x01(\x08\"\x9a\x01\n\x13SmartCampaignAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\"\x8e\x05\n\x19\x44\x65mandGenMultiAssetAdInfo\x12G\n\x10marketing_images\x18\x01 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12N\n\x17square_marketing_images\x18\x02 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12P\n\x19portrait_marketing_images\x18\x03 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12U\n\x1etall_portrait_marketing_images\x18\n \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x42\n\x0blogo_images\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12?\n\theadlines\x18\x05 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x06 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x1a\n\rbusiness_name\x18\x07 \x01(\tH\x00\x88\x01\x01\x12 \n\x13\x63\x61ll_to_action_text\x18\x08 \x01(\tH\x01\x88\x01\x01\x42\x10\n\x0e_business_nameB\x16\n\x14_call_to_action_text\"\x83\x03\n\x17\x44\x65mandGenCarouselAdInfo\x12\x1a\n\rbusiness_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x46\n\nlogo_image\x18\x02 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetB\x03\xe0\x41\x02\x12\x43\n\x08headline\x18\x03 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12\x46\n\x0b\x64\x65scription\x18\x04 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12\x1b\n\x13\x63\x61ll_to_action_text\x18\x05 \x01(\t\x12Z\n\x0e\x63\x61rousel_cards\x18\x06 \x03(\x0b\x32=.google.ads.googleads.v24.common.AdDemandGenCarouselCardAssetB\x03\xe0\x41\x02\"\x85\x05\n\x1e\x44\x65mandGenVideoResponsiveAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x44\n\x0elong_headlines\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x03 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x06videos\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAssetB\x03\xe0\x41\x02\x12G\n\x0blogo_images\x18\x05 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetB\x03\xe0\x41\x02\x12H\n\x11\x63ompanion_banners\x18\n \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x13\n\x0b\x62readcrumb1\x18\x06 \x01(\t\x12\x13\n\x0b\x62readcrumb2\x18\x07 \x01(\t\x12H\n\rbusiness_name\x18\x08 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12M\n\x0f\x63\x61ll_to_actions\x18\t \x03(\x0b\x32\x34.google.ads.googleads.v24.common.AdCallToActionAsset\"\x82\x04\n\x16\x44\x65mandGenProductAdInfo\x12H\n\x08headline\x18\x01 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02H\x00\x88\x01\x01\x12K\n\x0b\x64\x65scription\x18\x02 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02H\x01\x88\x01\x01\x12K\n\nlogo_image\x18\x03 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetB\x03\xe0\x41\x02H\x02\x88\x01\x01\x12\x13\n\x0b\x62readcrumb1\x18\x04 \x01(\t\x12\x13\n\x0b\x62readcrumb2\x18\x05 \x01(\t\x12H\n\rbusiness_name\x18\x06 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12Q\n\x0e\x63\x61ll_to_action\x18\x07 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.AdCallToActionAssetH\x03\x88\x01\x01\x42\x0b\n\t_headlineB\x0e\n\x0c_descriptionB\r\n\x0b_logo_imageB\x11\n\x0f_call_to_actionB\xf0\x01\n#com.google.ads.googleads.v24.commonB\x10\x41\x64TypeInfosProtoP\x01ZEgoogle.golang.org/genproto/googleapis/ads/googleads/v24/common;common\xa2\x02\x03GAA\xaa\x02\x1fGoogle.Ads.GoogleAds.V24.Common\xca\x02\x1fGoogle\\Ads\\GoogleAds\\V24\\Common\xea\x02#Google::Ads::GoogleAds::V24::Commonb\x06proto3"
|
|
16
|
+
descriptor_data = "\n3google/ads/googleads/v24/common/ad_type_infos.proto\x12\x1fgoogle.ads.googleads.v24.common\x1a.google/ads/googleads/v24/common/ad_asset.proto\x1a>google/ads/googleads/v24/enums/display_ad_format_setting.proto\x1a@google/ads/googleads/v24/enums/display_upload_product_type.proto\x1a\x44google/ads/googleads/v24/enums/legacy_app_install_ad_app_store.proto\x1a.google/ads/googleads/v24/enums/mime_type.proto\x1a\x34google/ads/googleads/v24/enums/video_thumbnail.proto\x1a\x1fgoogle/api/field_behavior.proto\"\x88\x01\n\nTextAdInfo\x12\x15\n\x08headline\x18\x04 \x01(\tH\x00\x88\x01\x01\x12\x19\n\x0c\x64\x65scription1\x18\x05 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x64\x65scription2\x18\x06 \x01(\tH\x02\x88\x01\x01\x42\x0b\n\t_headlineB\x0f\n\r_description1B\x0f\n\r_description2\"\xb6\x02\n\x12\x45xpandedTextAdInfo\x12\x1b\n\x0eheadline_part1\x18\x08 \x01(\tH\x00\x88\x01\x01\x12\x1b\n\x0eheadline_part2\x18\t \x01(\tH\x01\x88\x01\x01\x12\x1b\n\x0eheadline_part3\x18\n \x01(\tH\x02\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x0b \x01(\tH\x03\x88\x01\x01\x12\x19\n\x0c\x64\x65scription2\x18\x0c \x01(\tH\x04\x88\x01\x01\x12\x12\n\x05path1\x18\r \x01(\tH\x05\x88\x01\x01\x12\x12\n\x05path2\x18\x0e \x01(\tH\x06\x88\x01\x01\x42\x11\n\x0f_headline_part1B\x11\n\x0f_headline_part2B\x11\n\x0f_headline_part3B\x0e\n\x0c_descriptionB\x0f\n\r_description2B\x08\n\x06_path1B\x08\n\x06_path2\"s\n\x1b\x45xpandedDynamicSearchAdInfo\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x19\n\x0c\x64\x65scription2\x18\x04 \x01(\tH\x01\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x0f\n\r_description2\"\r\n\x0bHotelAdInfo\"\x0e\n\x0cTravelAdInfo\"\x15\n\x13ShoppingSmartAdInfo\"\x17\n\x15ShoppingProductAdInfo\"E\n\x1fShoppingComparisonListingAdInfo\x12\x15\n\x08headline\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x0b\n\t_headline\"\x9e\x04\n\x0bImageAdInfo\x12\x18\n\x0bpixel_width\x18\x0f \x01(\x03H\x01\x88\x01\x01\x12\x19\n\x0cpixel_height\x18\x10 \x01(\x03H\x02\x88\x01\x01\x12\x16\n\timage_url\x18\x11 \x01(\tH\x03\x88\x01\x01\x12 \n\x13preview_pixel_width\x18\x12 \x01(\x03H\x04\x88\x01\x01\x12!\n\x14preview_pixel_height\x18\x13 \x01(\x03H\x05\x88\x01\x01\x12\x1e\n\x11preview_image_url\x18\x14 \x01(\tH\x06\x88\x01\x01\x12H\n\tmime_type\x18\n \x01(\x0e\x32\x35.google.ads.googleads.v24.enums.MimeTypeEnum.MimeType\x12\x11\n\x04name\x18\x15 \x01(\tH\x07\x88\x01\x01\x12\x44\n\x0bimage_asset\x18\x16 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetH\x00\x12\x0e\n\x04\x64\x61ta\x18\r \x01(\x0cH\x00\x12\"\n\x18\x61\x64_id_to_copy_image_from\x18\x0e \x01(\x03H\x00\x42\x07\n\x05imageB\x0e\n\x0c_pixel_widthB\x0f\n\r_pixel_heightB\x0c\n\n_image_urlB\x16\n\x14_preview_pixel_widthB\x17\n\x15_preview_pixel_heightB\x14\n\x12_preview_image_urlB\x07\n\x05_name\"\x9a\x01\n\x19VideoBumperInStreamAdInfo\x12G\n\x10\x63ompanion_banner\x18\x03 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x1b\n\x13\x61\x63tion_button_label\x18\x04 \x01(\t\x12\x17\n\x0f\x61\x63tion_headline\x18\x05 \x01(\t\"\xa0\x01\n\x1fVideoNonSkippableInStreamAdInfo\x12G\n\x10\x63ompanion_banner\x18\x05 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x1b\n\x13\x61\x63tion_button_label\x18\x03 \x01(\t\x12\x17\n\x0f\x61\x63tion_headline\x18\x04 \x01(\t\"\x9c\x01\n\x1bVideoTrueViewInStreamAdInfo\x12\x1b\n\x13\x61\x63tion_button_label\x18\x04 \x01(\t\x12\x17\n\x0f\x61\x63tion_headline\x18\x05 \x01(\t\x12G\n\x10\x63ompanion_banner\x18\x07 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\"=\n\x14VideoOutstreamAdInfo\x12\x10\n\x08headline\x18\x03 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\"\xa7\x01\n\x11InFeedVideoAdInfo\x12\x10\n\x08headline\x18\x01 \x01(\t\x12\x14\n\x0c\x64\x65scription1\x18\x02 \x01(\t\x12\x14\n\x0c\x64\x65scription2\x18\x03 \x01(\t\x12T\n\tthumbnail\x18\x04 \x01(\x0e\x32\x41.google.ads.googleads.v24.enums.VideoThumbnailEnum.VideoThumbnail\"\x14\n\x12YouTubeAudioAdInfo\"\xab\x04\n\x0bVideoAdInfo\x12<\n\x05video\x18\x08 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\x12Q\n\tin_stream\x18\x02 \x01(\x0b\x32<.google.ads.googleads.v24.common.VideoTrueViewInStreamAdInfoH\x00\x12L\n\x06\x62umper\x18\x03 \x01(\x0b\x32:.google.ads.googleads.v24.common.VideoBumperInStreamAdInfoH\x00\x12K\n\nout_stream\x18\x04 \x01(\x0b\x32\x35.google.ads.googleads.v24.common.VideoOutstreamAdInfoH\x00\x12Y\n\rnon_skippable\x18\x05 \x01(\x0b\x32@.google.ads.googleads.v24.common.VideoNonSkippableInStreamAdInfoH\x00\x12\x45\n\x07in_feed\x18\t \x01(\x0b\x32\x32.google.ads.googleads.v24.common.InFeedVideoAdInfoH\x00\x12\x44\n\x05\x61udio\x18\n \x01(\x0b\x32\x33.google.ads.googleads.v24.common.YouTubeAudioAdInfoH\x00\x42\x08\n\x06\x66ormat\"\xf4\x04\n\x15VideoResponsiveAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x44\n\x0elong_headlines\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x03 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x45\n\x0f\x63\x61ll_to_actions\x18\x04 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x06videos\x18\x05 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAssetB\x03\xe0\x41\x02\x12H\n\rbusiness_name\x18\t \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12G\n\x0blogo_images\x18\n \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetB\x03\xe0\x41\x02\x12H\n\x11\x63ompanion_banners\x18\x06 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x13\n\x0b\x62readcrumb1\x18\x07 \x01(\t\x12\x13\n\x0b\x62readcrumb2\x18\x08 \x01(\t\"\xd9\x01\n\x16ResponsiveSearchAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x12\n\x05path1\x18\x05 \x01(\tH\x00\x88\x01\x01\x12\x12\n\x05path2\x18\x06 \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06_path1B\x08\n\x06_path2\"\xae\x06\n\x1dLegacyResponsiveDisplayAdInfo\x12\x1b\n\x0eshort_headline\x18\x10 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rlong_headline\x18\x11 \x01(\tH\x01\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x12 \x01(\tH\x02\x88\x01\x01\x12\x1a\n\rbusiness_name\x18\x13 \x01(\tH\x03\x88\x01\x01\x12!\n\x14\x61llow_flexible_color\x18\x14 \x01(\x08H\x04\x88\x01\x01\x12\x19\n\x0c\x61\x63\x63\x65nt_color\x18\x15 \x01(\tH\x05\x88\x01\x01\x12\x17\n\nmain_color\x18\x16 \x01(\tH\x06\x88\x01\x01\x12 \n\x13\x63\x61ll_to_action_text\x18\x17 \x01(\tH\x07\x88\x01\x01\x12\x17\n\nlogo_image\x18\x18 \x01(\tH\x08\x88\x01\x01\x12\x1e\n\x11square_logo_image\x18\x19 \x01(\tH\t\x88\x01\x01\x12\x1c\n\x0fmarketing_image\x18\x1a \x01(\tH\n\x88\x01\x01\x12#\n\x16square_marketing_image\x18\x1b \x01(\tH\x0b\x88\x01\x01\x12i\n\x0e\x66ormat_setting\x18\r \x01(\x0e\x32Q.google.ads.googleads.v24.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting\x12\x19\n\x0cprice_prefix\x18\x1c \x01(\tH\x0c\x88\x01\x01\x12\x17\n\npromo_text\x18\x1d \x01(\tH\r\x88\x01\x01\x42\x11\n\x0f_short_headlineB\x10\n\x0e_long_headlineB\x0e\n\x0c_descriptionB\x10\n\x0e_business_nameB\x17\n\x15_allow_flexible_colorB\x0f\n\r_accent_colorB\r\n\x0b_main_colorB\x16\n\x14_call_to_action_textB\r\n\x0b_logo_imageB\x14\n\x12_square_logo_imageB\x12\n\x10_marketing_imageB\x19\n\x17_square_marketing_imageB\x0f\n\r_price_prefixB\r\n\x0b_promo_text\"\xfd\x03\n\tAppAdInfo\x12G\n\x11mandatory_ad_text\x18\x01 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12?\n\theadlines\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x03 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12=\n\x06images\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x45\n\x0eyoutube_videos\x18\x05 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\x12P\n\x13html5_media_bundles\x18\x06 \x03(\x0b\x32\x33.google.ads.googleads.v24.common.AdMediaBundleAsset\x12J\n\rapp_deep_link\x18\x07 \x01(\x0b\x32\x33.google.ads.googleads.v24.common.AdAppDeepLinkAsset\"\x98\x02\n\x13\x41ppEngagementAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12=\n\x06images\x18\x03 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12=\n\x06videos\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\"\xa5\x02\n\x18\x41ppPreRegistrationAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12=\n\x06images\x18\x03 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x45\n\x0eyoutube_videos\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\"\xa2\x02\n\x16LegacyAppInstallAdInfo\x12\x13\n\x06\x61pp_id\x18\x06 \x01(\tH\x00\x88\x01\x01\x12l\n\tapp_store\x18\x02 \x01(\x0e\x32Y.google.ads.googleads.v24.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore\x12\x15\n\x08headline\x18\x07 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x64\x65scription1\x18\x08 \x01(\tH\x02\x88\x01\x01\x12\x19\n\x0c\x64\x65scription2\x18\t \x01(\tH\x03\x88\x01\x01\x42\t\n\x07_app_idB\x0b\n\t_headlineB\x0f\n\r_description1B\x0f\n\r_description2\"\xe0\x08\n\x17ResponsiveDisplayAdInfo\x12G\n\x10marketing_images\x18\x01 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12N\n\x17square_marketing_images\x18\x02 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x42\n\x0blogo_images\x18\x03 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12I\n\x12square_logo_images\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12?\n\theadlines\x18\x05 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x43\n\rlong_headline\x18\x06 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x07 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x45\n\x0eyoutube_videos\x18\x08 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\x12\x1a\n\rbusiness_name\x18\x11 \x01(\tH\x00\x88\x01\x01\x12\x17\n\nmain_color\x18\x12 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x61\x63\x63\x65nt_color\x18\x13 \x01(\tH\x02\x88\x01\x01\x12!\n\x14\x61llow_flexible_color\x18\x14 \x01(\x08H\x03\x88\x01\x01\x12 \n\x13\x63\x61ll_to_action_text\x18\x15 \x01(\tH\x04\x88\x01\x01\x12\x19\n\x0cprice_prefix\x18\x16 \x01(\tH\x05\x88\x01\x01\x12\x17\n\npromo_text\x18\x17 \x01(\tH\x06\x88\x01\x01\x12i\n\x0e\x66ormat_setting\x18\x10 \x01(\x0e\x32Q.google.ads.googleads.v24.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting\x12U\n\x0c\x63ontrol_spec\x18\x18 \x01(\x0b\x32?.google.ads.googleads.v24.common.ResponsiveDisplayAdControlSpecB\x10\n\x0e_business_nameB\r\n\x0b_main_colorB\x0f\n\r_accent_colorB\x17\n\x15_allow_flexible_colorB\x16\n\x14_call_to_action_textB\x0f\n\r_price_prefixB\r\n\x0b_promo_text\"\xe1\x03\n\x0bLocalAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x45\n\x0f\x63\x61ll_to_actions\x18\x03 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12G\n\x10marketing_images\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x42\n\x0blogo_images\x18\x05 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12=\n\x06videos\x18\x06 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAsset\x12\x12\n\x05path1\x18\t \x01(\tH\x00\x88\x01\x01\x12\x12\n\x05path2\x18\n \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06_path1B\x08\n\x06_path2\"\xed\x01\n\x13\x44isplayUploadAdInfo\x12z\n\x1b\x64isplay_upload_product_type\x18\x01 \x01(\x0e\x32U.google.ads.googleads.v24.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType\x12K\n\x0cmedia_bundle\x18\x02 \x01(\x0b\x32\x33.google.ads.googleads.v24.common.AdMediaBundleAssetH\x00\x42\r\n\x0bmedia_asset\"a\n\x1eResponsiveDisplayAdControlSpec\x12!\n\x19\x65nable_asset_enhancements\x18\x01 \x01(\x08\x12\x1c\n\x14\x65nable_autogen_video\x18\x02 \x01(\x08\"\x9a\x01\n\x13SmartCampaignAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\"\xdd\x05\n\x19\x44\x65mandGenMultiAssetAdInfo\x12G\n\x10marketing_images\x18\x01 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12N\n\x17square_marketing_images\x18\x02 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12P\n\x19portrait_marketing_images\x18\x03 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12U\n\x1etall_portrait_marketing_images\x18\n \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x42\n\x0blogo_images\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12M\n\x16\x63lassic_display_images\x18\x0b \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12?\n\theadlines\x18\x05 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x06 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x1a\n\rbusiness_name\x18\x07 \x01(\tH\x00\x88\x01\x01\x12 \n\x13\x63\x61ll_to_action_text\x18\x08 \x01(\tH\x01\x88\x01\x01\x42\x10\n\x0e_business_nameB\x16\n\x14_call_to_action_text\"\x83\x03\n\x17\x44\x65mandGenCarouselAdInfo\x12\x1a\n\rbusiness_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x46\n\nlogo_image\x18\x02 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetB\x03\xe0\x41\x02\x12\x43\n\x08headline\x18\x03 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12\x46\n\x0b\x64\x65scription\x18\x04 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12\x1b\n\x13\x63\x61ll_to_action_text\x18\x05 \x01(\t\x12Z\n\x0e\x63\x61rousel_cards\x18\x06 \x03(\x0b\x32=.google.ads.googleads.v24.common.AdDemandGenCarouselCardAssetB\x03\xe0\x41\x02\"\x85\x05\n\x1e\x44\x65mandGenVideoResponsiveAdInfo\x12?\n\theadlines\x18\x01 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x44\n\x0elong_headlines\x18\x02 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x0c\x64\x65scriptions\x18\x03 \x03(\x0b\x32,.google.ads.googleads.v24.common.AdTextAsset\x12\x42\n\x06videos\x18\x04 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdVideoAssetB\x03\xe0\x41\x02\x12G\n\x0blogo_images\x18\x05 \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetB\x03\xe0\x41\x02\x12H\n\x11\x63ompanion_banners\x18\n \x03(\x0b\x32-.google.ads.googleads.v24.common.AdImageAsset\x12\x13\n\x0b\x62readcrumb1\x18\x06 \x01(\t\x12\x13\n\x0b\x62readcrumb2\x18\x07 \x01(\t\x12H\n\rbusiness_name\x18\x08 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12M\n\x0f\x63\x61ll_to_actions\x18\t \x03(\x0b\x32\x34.google.ads.googleads.v24.common.AdCallToActionAsset\"\x82\x04\n\x16\x44\x65mandGenProductAdInfo\x12H\n\x08headline\x18\x01 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02H\x00\x88\x01\x01\x12K\n\x0b\x64\x65scription\x18\x02 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02H\x01\x88\x01\x01\x12K\n\nlogo_image\x18\x03 \x01(\x0b\x32-.google.ads.googleads.v24.common.AdImageAssetB\x03\xe0\x41\x02H\x02\x88\x01\x01\x12\x13\n\x0b\x62readcrumb1\x18\x04 \x01(\t\x12\x13\n\x0b\x62readcrumb2\x18\x05 \x01(\t\x12H\n\rbusiness_name\x18\x06 \x01(\x0b\x32,.google.ads.googleads.v24.common.AdTextAssetB\x03\xe0\x41\x02\x12Q\n\x0e\x63\x61ll_to_action\x18\x07 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.AdCallToActionAssetH\x03\x88\x01\x01\x42\x0b\n\t_headlineB\x0e\n\x0c_descriptionB\r\n\x0b_logo_imageB\x11\n\x0f_call_to_actionB\xf0\x01\n#com.google.ads.googleads.v24.commonB\x10\x41\x64TypeInfosProtoP\x01ZEgoogle.golang.org/genproto/googleapis/ads/googleads/v24/common;common\xa2\x02\x03GAA\xaa\x02\x1fGoogle.Ads.GoogleAds.V24.Common\xca\x02\x1fGoogle\\Ads\\GoogleAds\\V24\\Common\xea\x02#Google::Ads::GoogleAds::V24::Commonb\x06proto3"
|
|
17
17
|
|
|
18
18
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
19
19
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -33,7 +33,7 @@ require 'google/api/field_behavior_pb'
|
|
|
33
33
|
require 'google/api/resource_pb'
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
descriptor_data = "\n.google/ads/googleads/v24/common/criteria.proto\x12\x1fgoogle.ads.googleads.v24.common\x1a\x33google/ads/googleads/v24/enums/age_range_type.proto\x1a;google/ads/googleads/v24/enums/app_payment_model_type.proto\x1a\x43google/ads/googleads/v24/enums/brand_request_rejection_reason.proto\x1a\x30google/ads/googleads/v24/enums/brand_state.proto\x1a\x37google/ads/googleads/v24/enums/content_label_type.proto\x1a\x30google/ads/googleads/v24/enums/day_of_week.proto\x1a+google/ads/googleads/v24/enums/device.proto\x1a\x30google/ads/googleads/v24/enums/gender_type.proto\x1a>google/ads/googleads/v24/enums/hotel_date_selection_type.proto\x1a\x36google/ads/googleads/v24/enums/income_range_type.proto\x1a\x35google/ads/googleads/v24/enums/interaction_type.proto\x1a\x37google/ads/googleads/v24/enums/keyword_match_type.proto\x1a\x37google/ads/googleads/v24/enums/listing_group_type.proto\x1a@google/ads/googleads/v24/enums/location_group_radius_units.proto\x1a\x33google/ads/googleads/v24/enums/minute_of_hour.proto\x1a\x39google/ads/googleads/v24/enums/parental_status_type.proto\x1a;google/ads/googleads/v24/enums/product_category_level.proto\x1a\x34google/ads/googleads/v24/enums/product_channel.proto\x1a@google/ads/googleads/v24/enums/product_channel_exclusivity.proto\x1a\x36google/ads/googleads/v24/enums/product_condition.proto\x1a\x43google/ads/googleads/v24/enums/product_custom_attribute_index.proto\x1a\x37google/ads/googleads/v24/enums/product_type_level.proto\x1a;google/ads/googleads/v24/enums/proximity_radius_units.proto\x1a>google/ads/googleads/v24/enums/webpage_condition_operand.proto\x1a?google/ads/googleads/v24/enums/webpage_condition_operator.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\x84\x01\n\x0bKeywordInfo\x12\x11\n\x04text\x18\x03 \x01(\tH\x00\x88\x01\x01\x12Y\n\nmatch_type\x18\x02 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.KeywordMatchTypeEnum.KeywordMatchTypeB\x07\n\x05_text\")\n\rPlacementInfo\x12\x10\n\x03url\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x06\n\x04_url\"A\n\x17NegativeKeywordListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"\x9c\x01\n\x15MobileAppCategoryInfo\x12\x62\n\x1cmobile_app_category_constant\x18\x02 \x01(\tB7\xfa\x41\x34\n2googleads.googleapis.com/MobileAppCategoryConstantH\x00\x88\x01\x01\x42\x1f\n\x1d_mobile_app_category_constant\"S\n\x15MobileApplicationInfo\x12\x13\n\x06\x61pp_id\x18\x04 \x01(\tH\x00\x88\x01\x01\x12\x11\n\x04name\x18\x05 \x01(\tH\x01\x88\x01\x01\x42\t\n\x07_app_idB\x07\n\x05_name\"H\n\x0cLocationInfo\x12 \n\x13geo_target_constant\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x16\n\x14_geo_target_constant\"M\n\nDeviceInfo\x12?\n\x04type\x18\x01 \x01(\x0e\x32\x31.google.ads.googleads.v24.enums.DeviceEnum.Device\"\xcb\x02\n\x10ListingGroupInfo\x12S\n\x04type\x18\x01 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.ListingGroupTypeEnum.ListingGroupType\x12I\n\ncase_value\x18\x02 \x01(\x0b\x32\x35.google.ads.googleads.v24.common.ListingDimensionInfo\x12&\n\x19parent_ad_group_criterion\x18\x04 \x01(\tH\x00\x88\x01\x01\x12H\n\x04path\x18\x05 \x01(\x0b\x32\x35.google.ads.googleads.v24.common.ListingDimensionPathH\x01\x88\x01\x01\x42\x1c\n\x1a_parent_ad_group_criterionB\x07\n\x05_path\"a\n\x14ListingDimensionPath\x12I\n\ndimensions\x18\x01 \x03(\x0b\x32\x35.google.ads.googleads.v24.common.ListingDimensionInfo\"]\n\x10ListingScopeInfo\x12I\n\ndimensions\x18\x02 \x03(\x0b\x32\x35.google.ads.googleads.v24.common.ListingDimensionInfo\"\xf2\x0e\n\x14ListingDimensionInfo\x12@\n\x08hotel_id\x18\x02 \x01(\x0b\x32,.google.ads.googleads.v24.common.HotelIdInfoH\x00\x12\x46\n\x0bhotel_class\x18\x03 \x01(\x0b\x32/.google.ads.googleads.v24.common.HotelClassInfoH\x00\x12W\n\x14hotel_country_region\x18\x04 \x01(\x0b\x32\x37.google.ads.googleads.v24.common.HotelCountryRegionInfoH\x00\x12\x46\n\x0bhotel_state\x18\x05 \x01(\x0b\x32/.google.ads.googleads.v24.common.HotelStateInfoH\x00\x12\x44\n\nhotel_city\x18\x06 \x01(\x0b\x32..google.ads.googleads.v24.common.HotelCityInfoH\x00\x12P\n\x10product_category\x18\x18 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.ProductCategoryInfoH\x00\x12J\n\rproduct_brand\x18\x0f \x01(\x0b\x32\x31.google.ads.googleads.v24.common.ProductBrandInfoH\x00\x12N\n\x0fproduct_channel\x18\x08 \x01(\x0b\x32\x33.google.ads.googleads.v24.common.ProductChannelInfoH\x00\x12\x65\n\x1bproduct_channel_exclusivity\x18\t \x01(\x0b\x32>.google.ads.googleads.v24.common.ProductChannelExclusivityInfoH\x00\x12R\n\x11product_condition\x18\n \x01(\x0b\x32\x35.google.ads.googleads.v24.common.ProductConditionInfoH\x00\x12_\n\x18product_custom_attribute\x18\x10 \x01(\x0b\x32;.google.ads.googleads.v24.common.ProductCustomAttributeInfoH\x00\x12M\n\x0fproduct_item_id\x18\x0b \x01(\x0b\x32\x32.google.ads.googleads.v24.common.ProductItemIdInfoH\x00\x12H\n\x0cproduct_type\x18\x0c \x01(\x0b\x32\x30.google.ads.googleads.v24.common.ProductTypeInfoH\x00\x12P\n\x10product_grouping\x18\x11 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.ProductGroupingInfoH\x00\x12L\n\x0eproduct_labels\x18\x12 \x01(\x0b\x32\x32.google.ads.googleads.v24.common.ProductLabelsInfoH\x00\x12_\n\x18product_legacy_condition\x18\x13 \x01(\x0b\x32;.google.ads.googleads.v24.common.ProductLegacyConditionInfoH\x00\x12Q\n\x11product_type_full\x18\x14 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.ProductTypeFullInfoH\x00\x12\x46\n\x0b\x61\x63tivity_id\x18\x15 \x01(\x0b\x32/.google.ads.googleads.v24.common.ActivityIdInfoH\x00\x12N\n\x0f\x61\x63tivity_rating\x18\x16 \x01(\x0b\x32\x33.google.ads.googleads.v24.common.ActivityRatingInfoH\x00\x12P\n\x10\x61\x63tivity_country\x18\x17 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.ActivityCountryInfoH\x00\x12L\n\x0e\x61\x63tivity_state\x18\x19 \x01(\x0b\x32\x32.google.ads.googleads.v24.common.ActivityStateInfoH\x00\x12J\n\ractivity_city\x18\x1a \x01(\x0b\x32\x31.google.ads.googleads.v24.common.ActivityCityInfoH\x00\x12\x61\n\x19unknown_listing_dimension\x18\x0e \x01(\x0b\x32<.google.ads.googleads.v24.common.UnknownListingDimensionInfoH\x00\x42\x0b\n\tdimension\"+\n\x0bHotelIdInfo\x12\x12\n\x05value\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\".\n\x0eHotelClassInfo\x12\x12\n\x05value\x18\x02 \x01(\x03H\x00\x88\x01\x01\x42\x08\n\x06_value\"\\\n\x16HotelCountryRegionInfo\x12%\n\x18\x63ountry_region_criterion\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x1b\n\x19_country_region_criterion\"B\n\x0eHotelStateInfo\x12\x1c\n\x0fstate_criterion\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x12\n\x10_state_criterion\"?\n\rHotelCityInfo\x12\x1b\n\x0e\x63ity_criterion\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x11\n\x0f_city_criterion\"\x9d\x01\n\x13ProductCategoryInfo\x12\x18\n\x0b\x63\x61tegory_id\x18\x01 \x01(\x03H\x00\x88\x01\x01\x12\\\n\x05level\x18\x02 \x01(\x0e\x32M.google.ads.googleads.v24.enums.ProductCategoryLevelEnum.ProductCategoryLevelB\x0e\n\x0c_category_id\"0\n\x10ProductBrandInfo\x12\x12\n\x05value\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"h\n\x12ProductChannelInfo\x12R\n\x07\x63hannel\x18\x01 \x01(\x0e\x32\x41.google.ads.googleads.v24.enums.ProductChannelEnum.ProductChannel\"\x95\x01\n\x1dProductChannelExclusivityInfo\x12t\n\x13\x63hannel_exclusivity\x18\x01 \x01(\x0e\x32W.google.ads.googleads.v24.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity\"p\n\x14ProductConditionInfo\x12X\n\tcondition\x18\x01 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.ProductConditionEnum.ProductCondition\"\xa6\x01\n\x1aProductCustomAttributeInfo\x12\x12\n\x05value\x18\x03 \x01(\tH\x00\x88\x01\x01\x12j\n\x05index\x18\x02 \x01(\x0e\x32[.google.ads.googleads.v24.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndexB\x08\n\x06_value\"1\n\x11ProductItemIdInfo\x12\x12\n\x05value\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"\x85\x01\n\x0fProductTypeInfo\x12\x12\n\x05value\x18\x03 \x01(\tH\x00\x88\x01\x01\x12T\n\x05level\x18\x02 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.ProductTypeLevelEnum.ProductTypeLevelB\x08\n\x06_value\"3\n\x13ProductGroupingInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"1\n\x11ProductLabelsInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\":\n\x1aProductLegacyConditionInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"3\n\x13ProductTypeFullInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"\x1d\n\x1bUnknownListingDimensionInfo\"}\n\x1aHotelDateSelectionTypeInfo\x12_\n\x04type\x18\x01 \x01(\x0e\x32Q.google.ads.googleads.v24.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType\"g\n\x1dHotelAdvanceBookingWindowInfo\x12\x15\n\x08min_days\x18\x03 \x01(\x03H\x00\x88\x01\x01\x12\x15\n\x08max_days\x18\x04 \x01(\x03H\x01\x88\x01\x01\x42\x0b\n\t_min_daysB\x0b\n\t_max_days\"g\n\x15HotelLengthOfStayInfo\x12\x17\n\nmin_nights\x18\x03 \x01(\x03H\x00\x88\x01\x01\x12\x17\n\nmax_nights\x18\x04 \x01(\x03H\x01\x88\x01\x01\x42\r\n\x0b_min_nightsB\r\n\x0b_max_nights\"A\n\x19HotelCheckInDateRangeInfo\x12\x12\n\nstart_date\x18\x01 \x01(\t\x12\x10\n\x08\x65nd_date\x18\x02 \x01(\t\"c\n\x13HotelCheckInDayInfo\x12L\n\x0b\x64\x61y_of_week\x18\x01 \x01(\x0e\x32\x37.google.ads.googleads.v24.enums.DayOfWeekEnum.DayOfWeek\".\n\x0e\x41\x63tivityIdInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"2\n\x12\x41\x63tivityRatingInfo\x12\x12\n\x05value\x18\x01 \x01(\x03H\x00\x88\x01\x01\x42\x08\n\x06_value\"3\n\x13\x41\x63tivityCountryInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"1\n\x11\x41\x63tivityStateInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"0\n\x10\x41\x63tivityCityInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"h\n\x13InteractionTypeInfo\x12Q\n\x04type\x18\x01 \x01(\x0e\x32\x43.google.ads.googleads.v24.enums.InteractionTypeEnum.InteractionType\"\xd2\x02\n\x0e\x41\x64ScheduleInfo\x12S\n\x0cstart_minute\x18\x01 \x01(\x0e\x32=.google.ads.googleads.v24.enums.MinuteOfHourEnum.MinuteOfHour\x12Q\n\nend_minute\x18\x02 \x01(\x0e\x32=.google.ads.googleads.v24.enums.MinuteOfHourEnum.MinuteOfHour\x12\x17\n\nstart_hour\x18\x06 \x01(\x05H\x00\x88\x01\x01\x12\x15\n\x08\x65nd_hour\x18\x07 \x01(\x05H\x01\x88\x01\x01\x12L\n\x0b\x64\x61y_of_week\x18\x05 \x01(\x0e\x32\x37.google.ads.googleads.v24.enums.DayOfWeekEnum.DayOfWeekB\r\n\x0b_start_hourB\x0b\n\t_end_hour\"[\n\x0c\x41geRangeInfo\x12K\n\x04type\x18\x01 \x01(\x0e\x32=.google.ads.googleads.v24.enums.AgeRangeTypeEnum.AgeRangeType\"U\n\nGenderInfo\x12G\n\x04type\x18\x01 \x01(\x0e\x32\x39.google.ads.googleads.v24.enums.GenderTypeEnum.GenderType\"d\n\x0fIncomeRangeInfo\x12Q\n\x04type\x18\x01 \x01(\x0e\x32\x43.google.ads.googleads.v24.enums.IncomeRangeTypeEnum.IncomeRangeType\"m\n\x12ParentalStatusInfo\x12W\n\x04type\x18\x01 \x01(\x0e\x32I.google.ads.googleads.v24.enums.ParentalStatusTypeEnum.ParentalStatusType\"6\n\x10YouTubeVideoInfo\x12\x15\n\x08video_id\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x0b\n\t_video_id\"<\n\x12YouTubeChannelInfo\x12\x17\n\nchannel_id\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_channel_id\"4\n\x0cUserListInfo\x12\x16\n\tuser_list\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x0c\n\n_user_list\"\x95\x02\n\rProximityInfo\x12@\n\tgeo_point\x18\x01 \x01(\x0b\x32-.google.ads.googleads.v24.common.GeoPointInfo\x12\x13\n\x06radius\x18\x05 \x01(\x01H\x00\x88\x01\x01\x12\x63\n\x0cradius_units\x18\x03 \x01(\x0e\x32M.google.ads.googleads.v24.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits\x12=\n\x07\x61\x64\x64ress\x18\x04 \x01(\x0b\x32,.google.ads.googleads.v24.common.AddressInfoB\t\n\x07_radius\"\x9c\x01\n\x0cGeoPointInfo\x12\'\n\x1alongitude_in_micro_degrees\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12&\n\x19latitude_in_micro_degrees\x18\x04 \x01(\x05H\x01\x88\x01\x01\x42\x1d\n\x1b_longitude_in_micro_degreesB\x1c\n\x1a_latitude_in_micro_degrees\"\xc7\x02\n\x0b\x41\x64\x64ressInfo\x12\x18\n\x0bpostal_code\x18\x08 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rprovince_code\x18\t \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x63ountry_code\x18\n \x01(\tH\x02\x88\x01\x01\x12\x1a\n\rprovince_name\x18\x0b \x01(\tH\x03\x88\x01\x01\x12\x1b\n\x0estreet_address\x18\x0c \x01(\tH\x04\x88\x01\x01\x12\x1c\n\x0fstreet_address2\x18\r \x01(\tH\x05\x88\x01\x01\x12\x16\n\tcity_name\x18\x0e \x01(\tH\x06\x88\x01\x01\x42\x0e\n\x0c_postal_codeB\x10\n\x0e_province_codeB\x0f\n\r_country_codeB\x10\n\x0e_province_nameB\x11\n\x0f_street_addressB\x12\n\x10_street_address2B\x0c\n\n_city_name\"v\n\tTopicInfo\x12H\n\x0etopic_constant\x18\x03 \x01(\tB+\xfa\x41(\n&googleads.googleapis.com/TopicConstantH\x00\x88\x01\x01\x12\x0c\n\x04path\x18\x04 \x03(\tB\x11\n\x0f_topic_constant\"D\n\x0cLanguageInfo\x12\x1e\n\x11language_constant\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x14\n\x12_language_constant\"5\n\x0bIpBlockInfo\x12\x17\n\nip_address\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_ip_address\"g\n\x10\x43ontentLabelInfo\x12S\n\x04type\x18\x01 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.ContentLabelTypeEnum.ContentLabelType\"p\n\x0b\x43\x61rrierInfo\x12L\n\x10\x63\x61rrier_constant\x18\x02 \x01(\tB-\xfa\x41*\n(googleads.googleapis.com/CarrierConstantH\x00\x88\x01\x01\x42\x13\n\x11_carrier_constant\"R\n\x10UserInterestInfo\x12#\n\x16user_interest_category\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x19\n\x17_user_interest_category\"\xe9\x01\n\x0bWebpageInfo\x12\x1b\n\x0e\x63riterion_name\x18\x03 \x01(\tH\x00\x88\x01\x01\x12I\n\nconditions\x18\x02 \x03(\x0b\x32\x35.google.ads.googleads.v24.common.WebpageConditionInfo\x12\x1b\n\x13\x63overage_percentage\x18\x04 \x01(\x01\x12\x42\n\x06sample\x18\x05 \x01(\x0b\x32\x32.google.ads.googleads.v24.common.WebpageSampleInfoB\x11\n\x0f_criterion_name\"\x89\x02\n\x14WebpageConditionInfo\x12\x64\n\x07operand\x18\x01 \x01(\x0e\x32S.google.ads.googleads.v24.enums.WebpageConditionOperandEnum.WebpageConditionOperand\x12g\n\x08operator\x18\x02 \x01(\x0e\x32U.google.ads.googleads.v24.enums.WebpageConditionOperatorEnum.WebpageConditionOperator\x12\x15\n\x08\x61rgument\x18\x04 \x01(\tH\x00\x88\x01\x01\x42\x0b\n\t_argument\"9\n\x0fWebpageListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"(\n\x11WebpageSampleInfo\x12\x13\n\x0bsample_urls\x18\x01 \x03(\t\"\xb0\x01\n\x1aOperatingSystemVersionInfo\x12l\n!operating_system_version_constant\x18\x02 \x01(\tB<\xfa\x41\x39\n7googleads.googleapis.com/OperatingSystemVersionConstantH\x00\x88\x01\x01\x42$\n\"_operating_system_version_constant\"p\n\x13\x41ppPaymentModelInfo\x12Y\n\x04type\x18\x01 \x01(\x0e\x32K.google.ads.googleads.v24.enums.AppPaymentModelTypeEnum.AppPaymentModelType\"\x86\x01\n\x10MobileDeviceInfo\x12W\n\x16mobile_device_constant\x18\x02 \x01(\tB2\xfa\x41/\n-googleads.googleapis.com/MobileDeviceConstantH\x00\x88\x01\x01\x42\x19\n\x17_mobile_device_constant\"F\n\x12\x43ustomAffinityInfo\x12\x1c\n\x0f\x63ustom_affinity\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x12\n\x10_custom_affinity\"@\n\x10\x43ustomIntentInfo\x12\x1a\n\rcustom_intent\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x10\n\x0e_custom_intent\"\xdd\x02\n\x11LocationGroupInfo\x12\x1c\n\x14geo_target_constants\x18\x06 \x03(\t\x12\x13\n\x06radius\x18\x07 \x01(\x03H\x00\x88\x01\x01\x12k\n\x0cradius_units\x18\x04 \x01(\x0e\x32U.google.ads.googleads.v24.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits\x12\x16\n\x0e\x66\x65\x65\x64_item_sets\x18\x08 \x03(\t\x12\x35\n(enable_customer_level_location_asset_set\x18\t \x01(\x08H\x01\x88\x01\x01\x12!\n\x19location_group_asset_sets\x18\n \x03(\tB\t\n\x07_radiusB+\n)_enable_customer_level_location_asset_set\"-\n\x12\x43ustomAudienceInfo\x12\x17\n\x0f\x63ustom_audience\x18\x01 \x01(\t\"a\n\x14\x43ombinedAudienceInfo\x12I\n\x11\x63ombined_audience\x18\x01 \x01(\tB.\xfa\x41+\n)googleads.googleapis.com/CombinedAudience\" \n\x0c\x41udienceInfo\x12\x10\n\x08\x61udience\x18\x01 \x01(\t\"\x9c\x01\n\x10KeywordThemeInfo\x12T\n\x16keyword_theme_constant\x18\x01 \x01(\tB2\xfa\x41/\n-googleads.googleapis.com/KeywordThemeConstantH\x00\x12!\n\x17\x66ree_form_keyword_theme\x18\x02 \x01(\tH\x00\x42\x0f\n\rkeyword_theme\"(\n\x12LocalServiceIdInfo\x12\x12\n\nservice_id\x18\x01 \x01(\t\"\x1f\n\x0fSearchThemeInfo\x12\x0c\n\x04text\x18\x01 \x01(\t\"\x87\x03\n\tBrandInfo\x12\x1e\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\x16\n\tentity_id\x18\x01 \x01(\tH\x01\x88\x01\x01\x12\x1d\n\x0bprimary_url\x18\x03 \x01(\tB\x03\xe0\x41\x03H\x02\x88\x01\x01\x12\x7f\n\x10rejection_reason\x18\x04 \x01(\x0e\x32[.google.ads.googleads.v24.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReasonB\x03\xe0\x41\x03H\x03\x88\x01\x01\x12S\n\x06status\x18\x05 \x01(\x0e\x32\x39.google.ads.googleads.v24.enums.BrandStateEnum.BrandStateB\x03\xe0\x41\x03H\x04\x88\x01\x01\x42\x0f\n\r_display_nameB\x0c\n\n_entity_idB\x0e\n\x0c_primary_urlB\x13\n\x11_rejection_reasonB\t\n\x07_status\"7\n\rBrandListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"=\n\rLifeEventInfo\x12\x1a\n\rlife_event_id\x18\x01 \x01(\x03H\x00\x88\x01\x01\x42\x10\n\x0e_life_event_id\"[\n\x17\x45xtendedDemographicInfo\x12$\n\x17\x65xtended_demographic_id\x18\x01 \x01(\x03H\x00\x88\x01\x01\x42\x1a\n\x18_extended_demographic_id\"C\n\x0fVideoLineupInfo\x12\x1c\n\x0fvideo_lineup_id\x18\x01 \x01(\x03H\x00\x88\x01\x01\x42\x12\n\x10_video_lineup_id\";\n\x11PlacementListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"J\n VerticalAdsItemGroupRuleListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"\xb3\x01\n\x1cVerticalAdsItemGroupRuleInfo\x12\x13\n\titem_code\x18\x01 \x01(\tH\x00\x12\x1e\n\x14\x63ountry_criterion_id\x18\x02 \x01(\tH\x00\x12\x1d\n\x13region_criterion_id\x18\x03 \x01(\tH\x00\x12\x1b\n\x11\x63ity_criterion_id\x18\x04 \x01(\tH\x00\x12\x15\n\x0bhotel_class\x18\x06 \x01(\x03H\x00\x42\x0b\n\tdimension\"<\n\x12RetailFilterBundle\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"\xa0\x01\n\x0cRetailFilter\x12M\n\nexpression\x18\x01 \x01(\x0b\x32\x37.google.ads.googleads.v24.common.RetailFilterExpressionH\x00\x12\x39\n\x03tag\x18\x02 \x01(\x0b\x32*.google.ads.googleads.v24.common.RetailTagH\x00\x42\x06\n\x04node\"4\n\x16RetailFilterExpression\x12\x11\n\x04name\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_name\"[\n\tRetailTag\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1c\n\x0f\x65xpression_name\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06_valueB\x12\n\x10_expression_nameB\xed\x01\n#com.google.ads.googleads.v24.commonB\rCriteriaProtoP\x01ZEgoogle.golang.org/genproto/googleapis/ads/googleads/v24/common;common\xa2\x02\x03GAA\xaa\x02\x1fGoogle.Ads.GoogleAds.V24.Common\xca\x02\x1fGoogle\\Ads\\GoogleAds\\V24\\Common\xea\x02#Google::Ads::GoogleAds::V24::Commonb\x06proto3"
|
|
36
|
+
descriptor_data = "\n.google/ads/googleads/v24/common/criteria.proto\x12\x1fgoogle.ads.googleads.v24.common\x1a\x33google/ads/googleads/v24/enums/age_range_type.proto\x1a;google/ads/googleads/v24/enums/app_payment_model_type.proto\x1a\x43google/ads/googleads/v24/enums/brand_request_rejection_reason.proto\x1a\x30google/ads/googleads/v24/enums/brand_state.proto\x1a\x37google/ads/googleads/v24/enums/content_label_type.proto\x1a\x30google/ads/googleads/v24/enums/day_of_week.proto\x1a+google/ads/googleads/v24/enums/device.proto\x1a\x30google/ads/googleads/v24/enums/gender_type.proto\x1a>google/ads/googleads/v24/enums/hotel_date_selection_type.proto\x1a\x36google/ads/googleads/v24/enums/income_range_type.proto\x1a\x35google/ads/googleads/v24/enums/interaction_type.proto\x1a\x37google/ads/googleads/v24/enums/keyword_match_type.proto\x1a\x37google/ads/googleads/v24/enums/listing_group_type.proto\x1a@google/ads/googleads/v24/enums/location_group_radius_units.proto\x1a\x33google/ads/googleads/v24/enums/minute_of_hour.proto\x1a\x39google/ads/googleads/v24/enums/parental_status_type.proto\x1a;google/ads/googleads/v24/enums/product_category_level.proto\x1a\x34google/ads/googleads/v24/enums/product_channel.proto\x1a@google/ads/googleads/v24/enums/product_channel_exclusivity.proto\x1a\x36google/ads/googleads/v24/enums/product_condition.proto\x1a\x43google/ads/googleads/v24/enums/product_custom_attribute_index.proto\x1a\x37google/ads/googleads/v24/enums/product_type_level.proto\x1a;google/ads/googleads/v24/enums/proximity_radius_units.proto\x1a>google/ads/googleads/v24/enums/webpage_condition_operand.proto\x1a?google/ads/googleads/v24/enums/webpage_condition_operator.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\x84\x01\n\x0bKeywordInfo\x12\x11\n\x04text\x18\x03 \x01(\tH\x00\x88\x01\x01\x12Y\n\nmatch_type\x18\x02 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.KeywordMatchTypeEnum.KeywordMatchTypeB\x07\n\x05_text\")\n\rPlacementInfo\x12\x10\n\x03url\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x06\n\x04_url\"A\n\x17NegativeKeywordListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"\x9c\x01\n\x15MobileAppCategoryInfo\x12\x62\n\x1cmobile_app_category_constant\x18\x02 \x01(\tB7\xfa\x41\x34\n2googleads.googleapis.com/MobileAppCategoryConstantH\x00\x88\x01\x01\x42\x1f\n\x1d_mobile_app_category_constant\"S\n\x15MobileApplicationInfo\x12\x13\n\x06\x61pp_id\x18\x04 \x01(\tH\x00\x88\x01\x01\x12\x11\n\x04name\x18\x05 \x01(\tH\x01\x88\x01\x01\x42\t\n\x07_app_idB\x07\n\x05_name\"H\n\x0cLocationInfo\x12 \n\x13geo_target_constant\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x16\n\x14_geo_target_constant\"M\n\nDeviceInfo\x12?\n\x04type\x18\x01 \x01(\x0e\x32\x31.google.ads.googleads.v24.enums.DeviceEnum.Device\"\xcb\x02\n\x10ListingGroupInfo\x12S\n\x04type\x18\x01 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.ListingGroupTypeEnum.ListingGroupType\x12I\n\ncase_value\x18\x02 \x01(\x0b\x32\x35.google.ads.googleads.v24.common.ListingDimensionInfo\x12&\n\x19parent_ad_group_criterion\x18\x04 \x01(\tH\x00\x88\x01\x01\x12H\n\x04path\x18\x05 \x01(\x0b\x32\x35.google.ads.googleads.v24.common.ListingDimensionPathH\x01\x88\x01\x01\x42\x1c\n\x1a_parent_ad_group_criterionB\x07\n\x05_path\"a\n\x14ListingDimensionPath\x12I\n\ndimensions\x18\x01 \x03(\x0b\x32\x35.google.ads.googleads.v24.common.ListingDimensionInfo\"]\n\x10ListingScopeInfo\x12I\n\ndimensions\x18\x02 \x03(\x0b\x32\x35.google.ads.googleads.v24.common.ListingDimensionInfo\"\xf2\x0e\n\x14ListingDimensionInfo\x12@\n\x08hotel_id\x18\x02 \x01(\x0b\x32,.google.ads.googleads.v24.common.HotelIdInfoH\x00\x12\x46\n\x0bhotel_class\x18\x03 \x01(\x0b\x32/.google.ads.googleads.v24.common.HotelClassInfoH\x00\x12W\n\x14hotel_country_region\x18\x04 \x01(\x0b\x32\x37.google.ads.googleads.v24.common.HotelCountryRegionInfoH\x00\x12\x46\n\x0bhotel_state\x18\x05 \x01(\x0b\x32/.google.ads.googleads.v24.common.HotelStateInfoH\x00\x12\x44\n\nhotel_city\x18\x06 \x01(\x0b\x32..google.ads.googleads.v24.common.HotelCityInfoH\x00\x12P\n\x10product_category\x18\x18 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.ProductCategoryInfoH\x00\x12J\n\rproduct_brand\x18\x0f \x01(\x0b\x32\x31.google.ads.googleads.v24.common.ProductBrandInfoH\x00\x12N\n\x0fproduct_channel\x18\x08 \x01(\x0b\x32\x33.google.ads.googleads.v24.common.ProductChannelInfoH\x00\x12\x65\n\x1bproduct_channel_exclusivity\x18\t \x01(\x0b\x32>.google.ads.googleads.v24.common.ProductChannelExclusivityInfoH\x00\x12R\n\x11product_condition\x18\n \x01(\x0b\x32\x35.google.ads.googleads.v24.common.ProductConditionInfoH\x00\x12_\n\x18product_custom_attribute\x18\x10 \x01(\x0b\x32;.google.ads.googleads.v24.common.ProductCustomAttributeInfoH\x00\x12M\n\x0fproduct_item_id\x18\x0b \x01(\x0b\x32\x32.google.ads.googleads.v24.common.ProductItemIdInfoH\x00\x12H\n\x0cproduct_type\x18\x0c \x01(\x0b\x32\x30.google.ads.googleads.v24.common.ProductTypeInfoH\x00\x12P\n\x10product_grouping\x18\x11 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.ProductGroupingInfoH\x00\x12L\n\x0eproduct_labels\x18\x12 \x01(\x0b\x32\x32.google.ads.googleads.v24.common.ProductLabelsInfoH\x00\x12_\n\x18product_legacy_condition\x18\x13 \x01(\x0b\x32;.google.ads.googleads.v24.common.ProductLegacyConditionInfoH\x00\x12Q\n\x11product_type_full\x18\x14 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.ProductTypeFullInfoH\x00\x12\x46\n\x0b\x61\x63tivity_id\x18\x15 \x01(\x0b\x32/.google.ads.googleads.v24.common.ActivityIdInfoH\x00\x12N\n\x0f\x61\x63tivity_rating\x18\x16 \x01(\x0b\x32\x33.google.ads.googleads.v24.common.ActivityRatingInfoH\x00\x12P\n\x10\x61\x63tivity_country\x18\x17 \x01(\x0b\x32\x34.google.ads.googleads.v24.common.ActivityCountryInfoH\x00\x12L\n\x0e\x61\x63tivity_state\x18\x19 \x01(\x0b\x32\x32.google.ads.googleads.v24.common.ActivityStateInfoH\x00\x12J\n\ractivity_city\x18\x1a \x01(\x0b\x32\x31.google.ads.googleads.v24.common.ActivityCityInfoH\x00\x12\x61\n\x19unknown_listing_dimension\x18\x0e \x01(\x0b\x32<.google.ads.googleads.v24.common.UnknownListingDimensionInfoH\x00\x42\x0b\n\tdimension\"+\n\x0bHotelIdInfo\x12\x12\n\x05value\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\".\n\x0eHotelClassInfo\x12\x12\n\x05value\x18\x02 \x01(\x03H\x00\x88\x01\x01\x42\x08\n\x06_value\"\\\n\x16HotelCountryRegionInfo\x12%\n\x18\x63ountry_region_criterion\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x1b\n\x19_country_region_criterion\"B\n\x0eHotelStateInfo\x12\x1c\n\x0fstate_criterion\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x12\n\x10_state_criterion\"?\n\rHotelCityInfo\x12\x1b\n\x0e\x63ity_criterion\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x11\n\x0f_city_criterion\"\x9d\x01\n\x13ProductCategoryInfo\x12\x18\n\x0b\x63\x61tegory_id\x18\x01 \x01(\x03H\x00\x88\x01\x01\x12\\\n\x05level\x18\x02 \x01(\x0e\x32M.google.ads.googleads.v24.enums.ProductCategoryLevelEnum.ProductCategoryLevelB\x0e\n\x0c_category_id\"0\n\x10ProductBrandInfo\x12\x12\n\x05value\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"h\n\x12ProductChannelInfo\x12R\n\x07\x63hannel\x18\x01 \x01(\x0e\x32\x41.google.ads.googleads.v24.enums.ProductChannelEnum.ProductChannel\"\x95\x01\n\x1dProductChannelExclusivityInfo\x12t\n\x13\x63hannel_exclusivity\x18\x01 \x01(\x0e\x32W.google.ads.googleads.v24.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity\"p\n\x14ProductConditionInfo\x12X\n\tcondition\x18\x01 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.ProductConditionEnum.ProductCondition\"\xa6\x01\n\x1aProductCustomAttributeInfo\x12\x12\n\x05value\x18\x03 \x01(\tH\x00\x88\x01\x01\x12j\n\x05index\x18\x02 \x01(\x0e\x32[.google.ads.googleads.v24.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndexB\x08\n\x06_value\"1\n\x11ProductItemIdInfo\x12\x12\n\x05value\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"\x85\x01\n\x0fProductTypeInfo\x12\x12\n\x05value\x18\x03 \x01(\tH\x00\x88\x01\x01\x12T\n\x05level\x18\x02 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.ProductTypeLevelEnum.ProductTypeLevelB\x08\n\x06_value\"3\n\x13ProductGroupingInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"1\n\x11ProductLabelsInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\":\n\x1aProductLegacyConditionInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"3\n\x13ProductTypeFullInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"\x1d\n\x1bUnknownListingDimensionInfo\"}\n\x1aHotelDateSelectionTypeInfo\x12_\n\x04type\x18\x01 \x01(\x0e\x32Q.google.ads.googleads.v24.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType\"g\n\x1dHotelAdvanceBookingWindowInfo\x12\x15\n\x08min_days\x18\x03 \x01(\x03H\x00\x88\x01\x01\x12\x15\n\x08max_days\x18\x04 \x01(\x03H\x01\x88\x01\x01\x42\x0b\n\t_min_daysB\x0b\n\t_max_days\"g\n\x15HotelLengthOfStayInfo\x12\x17\n\nmin_nights\x18\x03 \x01(\x03H\x00\x88\x01\x01\x12\x17\n\nmax_nights\x18\x04 \x01(\x03H\x01\x88\x01\x01\x42\r\n\x0b_min_nightsB\r\n\x0b_max_nights\"A\n\x19HotelCheckInDateRangeInfo\x12\x12\n\nstart_date\x18\x01 \x01(\t\x12\x10\n\x08\x65nd_date\x18\x02 \x01(\t\"c\n\x13HotelCheckInDayInfo\x12L\n\x0b\x64\x61y_of_week\x18\x01 \x01(\x0e\x32\x37.google.ads.googleads.v24.enums.DayOfWeekEnum.DayOfWeek\".\n\x0e\x41\x63tivityIdInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"2\n\x12\x41\x63tivityRatingInfo\x12\x12\n\x05value\x18\x01 \x01(\x03H\x00\x88\x01\x01\x42\x08\n\x06_value\"3\n\x13\x41\x63tivityCountryInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"1\n\x11\x41\x63tivityStateInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"0\n\x10\x41\x63tivityCityInfo\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_value\"h\n\x13InteractionTypeInfo\x12Q\n\x04type\x18\x01 \x01(\x0e\x32\x43.google.ads.googleads.v24.enums.InteractionTypeEnum.InteractionType\"\xd2\x02\n\x0e\x41\x64ScheduleInfo\x12S\n\x0cstart_minute\x18\x01 \x01(\x0e\x32=.google.ads.googleads.v24.enums.MinuteOfHourEnum.MinuteOfHour\x12Q\n\nend_minute\x18\x02 \x01(\x0e\x32=.google.ads.googleads.v24.enums.MinuteOfHourEnum.MinuteOfHour\x12\x17\n\nstart_hour\x18\x06 \x01(\x05H\x00\x88\x01\x01\x12\x15\n\x08\x65nd_hour\x18\x07 \x01(\x05H\x01\x88\x01\x01\x12L\n\x0b\x64\x61y_of_week\x18\x05 \x01(\x0e\x32\x37.google.ads.googleads.v24.enums.DayOfWeekEnum.DayOfWeekB\r\n\x0b_start_hourB\x0b\n\t_end_hour\"[\n\x0c\x41geRangeInfo\x12K\n\x04type\x18\x01 \x01(\x0e\x32=.google.ads.googleads.v24.enums.AgeRangeTypeEnum.AgeRangeType\"U\n\nGenderInfo\x12G\n\x04type\x18\x01 \x01(\x0e\x32\x39.google.ads.googleads.v24.enums.GenderTypeEnum.GenderType\"d\n\x0fIncomeRangeInfo\x12Q\n\x04type\x18\x01 \x01(\x0e\x32\x43.google.ads.googleads.v24.enums.IncomeRangeTypeEnum.IncomeRangeType\"m\n\x12ParentalStatusInfo\x12W\n\x04type\x18\x01 \x01(\x0e\x32I.google.ads.googleads.v24.enums.ParentalStatusTypeEnum.ParentalStatusType\"6\n\x10YouTubeVideoInfo\x12\x15\n\x08video_id\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x0b\n\t_video_id\"<\n\x12YouTubeChannelInfo\x12\x17\n\nchannel_id\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_channel_id\"4\n\x0cUserListInfo\x12\x16\n\tuser_list\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x0c\n\n_user_list\"\x95\x02\n\rProximityInfo\x12@\n\tgeo_point\x18\x01 \x01(\x0b\x32-.google.ads.googleads.v24.common.GeoPointInfo\x12\x13\n\x06radius\x18\x05 \x01(\x01H\x00\x88\x01\x01\x12\x63\n\x0cradius_units\x18\x03 \x01(\x0e\x32M.google.ads.googleads.v24.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits\x12=\n\x07\x61\x64\x64ress\x18\x04 \x01(\x0b\x32,.google.ads.googleads.v24.common.AddressInfoB\t\n\x07_radius\"\x9c\x01\n\x0cGeoPointInfo\x12\'\n\x1alongitude_in_micro_degrees\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12&\n\x19latitude_in_micro_degrees\x18\x04 \x01(\x05H\x01\x88\x01\x01\x42\x1d\n\x1b_longitude_in_micro_degreesB\x1c\n\x1a_latitude_in_micro_degrees\"\xc7\x02\n\x0b\x41\x64\x64ressInfo\x12\x18\n\x0bpostal_code\x18\x08 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rprovince_code\x18\t \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x63ountry_code\x18\n \x01(\tH\x02\x88\x01\x01\x12\x1a\n\rprovince_name\x18\x0b \x01(\tH\x03\x88\x01\x01\x12\x1b\n\x0estreet_address\x18\x0c \x01(\tH\x04\x88\x01\x01\x12\x1c\n\x0fstreet_address2\x18\r \x01(\tH\x05\x88\x01\x01\x12\x16\n\tcity_name\x18\x0e \x01(\tH\x06\x88\x01\x01\x42\x0e\n\x0c_postal_codeB\x10\n\x0e_province_codeB\x0f\n\r_country_codeB\x10\n\x0e_province_nameB\x11\n\x0f_street_addressB\x12\n\x10_street_address2B\x0c\n\n_city_name\"v\n\tTopicInfo\x12H\n\x0etopic_constant\x18\x03 \x01(\tB+\xfa\x41(\n&googleads.googleapis.com/TopicConstantH\x00\x88\x01\x01\x12\x0c\n\x04path\x18\x04 \x03(\tB\x11\n\x0f_topic_constant\"D\n\x0cLanguageInfo\x12\x1e\n\x11language_constant\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x14\n\x12_language_constant\"5\n\x0bIpBlockInfo\x12\x17\n\nip_address\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_ip_address\"g\n\x10\x43ontentLabelInfo\x12S\n\x04type\x18\x01 \x01(\x0e\x32\x45.google.ads.googleads.v24.enums.ContentLabelTypeEnum.ContentLabelType\"p\n\x0b\x43\x61rrierInfo\x12L\n\x10\x63\x61rrier_constant\x18\x02 \x01(\tB-\xfa\x41*\n(googleads.googleapis.com/CarrierConstantH\x00\x88\x01\x01\x42\x13\n\x11_carrier_constant\"R\n\x10UserInterestInfo\x12#\n\x16user_interest_category\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x19\n\x17_user_interest_category\"\xe9\x01\n\x0bWebpageInfo\x12\x1b\n\x0e\x63riterion_name\x18\x03 \x01(\tH\x00\x88\x01\x01\x12I\n\nconditions\x18\x02 \x03(\x0b\x32\x35.google.ads.googleads.v24.common.WebpageConditionInfo\x12\x1b\n\x13\x63overage_percentage\x18\x04 \x01(\x01\x12\x42\n\x06sample\x18\x05 \x01(\x0b\x32\x32.google.ads.googleads.v24.common.WebpageSampleInfoB\x11\n\x0f_criterion_name\"\x89\x02\n\x14WebpageConditionInfo\x12\x64\n\x07operand\x18\x01 \x01(\x0e\x32S.google.ads.googleads.v24.enums.WebpageConditionOperandEnum.WebpageConditionOperand\x12g\n\x08operator\x18\x02 \x01(\x0e\x32U.google.ads.googleads.v24.enums.WebpageConditionOperatorEnum.WebpageConditionOperator\x12\x15\n\x08\x61rgument\x18\x04 \x01(\tH\x00\x88\x01\x01\x42\x0b\n\t_argument\"9\n\x0fWebpageListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"(\n\x11WebpageSampleInfo\x12\x13\n\x0bsample_urls\x18\x01 \x03(\t\"\xb0\x01\n\x1aOperatingSystemVersionInfo\x12l\n!operating_system_version_constant\x18\x02 \x01(\tB<\xfa\x41\x39\n7googleads.googleapis.com/OperatingSystemVersionConstantH\x00\x88\x01\x01\x42$\n\"_operating_system_version_constant\"p\n\x13\x41ppPaymentModelInfo\x12Y\n\x04type\x18\x01 \x01(\x0e\x32K.google.ads.googleads.v24.enums.AppPaymentModelTypeEnum.AppPaymentModelType\"\x86\x01\n\x10MobileDeviceInfo\x12W\n\x16mobile_device_constant\x18\x02 \x01(\tB2\xfa\x41/\n-googleads.googleapis.com/MobileDeviceConstantH\x00\x88\x01\x01\x42\x19\n\x17_mobile_device_constant\"F\n\x12\x43ustomAffinityInfo\x12\x1c\n\x0f\x63ustom_affinity\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x12\n\x10_custom_affinity\"@\n\x10\x43ustomIntentInfo\x12\x1a\n\rcustom_intent\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x10\n\x0e_custom_intent\"\xdd\x02\n\x11LocationGroupInfo\x12\x1c\n\x14geo_target_constants\x18\x06 \x03(\t\x12\x13\n\x06radius\x18\x07 \x01(\x03H\x00\x88\x01\x01\x12k\n\x0cradius_units\x18\x04 \x01(\x0e\x32U.google.ads.googleads.v24.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits\x12\x16\n\x0e\x66\x65\x65\x64_item_sets\x18\x08 \x03(\t\x12\x35\n(enable_customer_level_location_asset_set\x18\t \x01(\x08H\x01\x88\x01\x01\x12!\n\x19location_group_asset_sets\x18\n \x03(\tB\t\n\x07_radiusB+\n)_enable_customer_level_location_asset_set\"-\n\x12\x43ustomAudienceInfo\x12\x17\n\x0f\x63ustom_audience\x18\x01 \x01(\t\"a\n\x14\x43ombinedAudienceInfo\x12I\n\x11\x63ombined_audience\x18\x01 \x01(\tB.\xfa\x41+\n)googleads.googleapis.com/CombinedAudience\" \n\x0c\x41udienceInfo\x12\x10\n\x08\x61udience\x18\x01 \x01(\t\"\x9c\x01\n\x10KeywordThemeInfo\x12T\n\x16keyword_theme_constant\x18\x01 \x01(\tB2\xfa\x41/\n-googleads.googleapis.com/KeywordThemeConstantH\x00\x12!\n\x17\x66ree_form_keyword_theme\x18\x02 \x01(\tH\x00\x42\x0f\n\rkeyword_theme\"(\n\x12LocalServiceIdInfo\x12\x12\n\nservice_id\x18\x01 \x01(\t\"\x1f\n\x0fSearchThemeInfo\x12\x0c\n\x04text\x18\x01 \x01(\t\"\x87\x03\n\tBrandInfo\x12\x1e\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\x16\n\tentity_id\x18\x01 \x01(\tH\x01\x88\x01\x01\x12\x1d\n\x0bprimary_url\x18\x03 \x01(\tB\x03\xe0\x41\x03H\x02\x88\x01\x01\x12\x7f\n\x10rejection_reason\x18\x04 \x01(\x0e\x32[.google.ads.googleads.v24.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReasonB\x03\xe0\x41\x03H\x03\x88\x01\x01\x12S\n\x06status\x18\x05 \x01(\x0e\x32\x39.google.ads.googleads.v24.enums.BrandStateEnum.BrandStateB\x03\xe0\x41\x03H\x04\x88\x01\x01\x42\x0f\n\r_display_nameB\x0c\n\n_entity_idB\x0e\n\x0c_primary_urlB\x13\n\x11_rejection_reasonB\t\n\x07_status\"7\n\rBrandListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"=\n\rLifeEventInfo\x12\x1a\n\rlife_event_id\x18\x01 \x01(\x03H\x00\x88\x01\x01\x42\x10\n\x0e_life_event_id\"[\n\x17\x45xtendedDemographicInfo\x12$\n\x17\x65xtended_demographic_id\x18\x01 \x01(\x03H\x00\x88\x01\x01\x42\x1a\n\x18_extended_demographic_id\"C\n\x0fVideoLineupInfo\x12\x1c\n\x0fvideo_lineup_id\x18\x01 \x01(\x03H\x00\x88\x01\x01\x42\x12\n\x10_video_lineup_id\";\n\x11PlacementListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"J\n VerticalAdsItemGroupRuleListInfo\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"\x85\x02\n\x1cVerticalAdsItemGroupRuleInfo\x12\x13\n\titem_code\x18\x01 \x01(\tH\x00\x12\x1e\n\x14\x63ountry_criterion_id\x18\x02 \x01(\tH\x00\x12\x1d\n\x13region_criterion_id\x18\x03 \x01(\tH\x00\x12\x1b\n\x11\x63ity_criterion_id\x18\x04 \x01(\tH\x00\x12\x15\n\x0bhotel_class\x18\x06 \x01(\x03H\x00\x12\x15\n\x0buser_rating\x18\x07 \x01(\x03H\x00\x12\x0f\n\x05venue\x18\x08 \x01(\tH\x00\x12(\n\x1e\x65vent_participant_display_name\x18\t \x01(\tH\x00\x42\x0b\n\tdimension\"<\n\x12RetailFilterBundle\x12\x17\n\nshared_set\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\r\n\x0b_shared_set\"\xa0\x01\n\x0cRetailFilter\x12M\n\nexpression\x18\x01 \x01(\x0b\x32\x37.google.ads.googleads.v24.common.RetailFilterExpressionH\x00\x12\x39\n\x03tag\x18\x02 \x01(\x0b\x32*.google.ads.googleads.v24.common.RetailTagH\x00\x42\x06\n\x04node\"4\n\x16RetailFilterExpression\x12\x11\n\x04name\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_name\"[\n\tRetailTag\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1c\n\x0f\x65xpression_name\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06_valueB\x12\n\x10_expression_nameB\xed\x01\n#com.google.ads.googleads.v24.commonB\rCriteriaProtoP\x01ZEgoogle.golang.org/genproto/googleapis/ads/googleads/v24/common;common\xa2\x02\x03GAA\xaa\x02\x1fGoogle.Ads.GoogleAds.V24.Common\xca\x02\x1fGoogle\\Ads\\GoogleAds\\V24\\Common\xea\x02#Google::Ads::GoogleAds::V24::Commonb\x06proto3"
|
|
37
37
|
|
|
38
38
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
39
39
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: google/ads/googleads/v24/common/experiment_types.proto
|
|
4
|
+
|
|
5
|
+
require 'google/protobuf'
|
|
6
|
+
|
|
7
|
+
require 'google/ads/google_ads/v24/enums/optimize_assets_experiment_subtype_pb'
|
|
8
|
+
require 'google/ads/google_ads/v24/enums/video_experiment_subtype_pb'
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
descriptor_data = "\n6google/ads/googleads/v24/common/experiment_types.proto\x12\x1fgoogle.ads.googleads.v24.common\x1aGgoogle/ads/googleads/v24/enums/optimize_assets_experiment_subtype.proto\x1a=google/ads/googleads/v24/enums/video_experiment_subtype.proto\"\x8a\x01\n\x13VideoExperimentInfo\x12s\n\x18video_experiment_subtype\x18\x01 \x01(\x0e\x32Q.google.ads.googleads.v24.enums.VideoExperimentSubtypeEnum.VideoExperimentSubtype\"\xb0\x01\n\x1cOptimizeAssetsExperimentInfo\x12\x8f\x01\n\"optimize_assets_experiment_subtype\x18\x01 \x01(\x0e\x32\x63.google.ads.googleads.v24.enums.OptimizeAssetsExperimentSubtypeEnum.OptimizeAssetsExperimentSubtypeB\xf4\x01\n#com.google.ads.googleads.v24.commonB\x14\x45xperimentTypesProtoP\x01ZEgoogle.golang.org/genproto/googleapis/ads/googleads/v24/common;common\xa2\x02\x03GAA\xaa\x02\x1fGoogle.Ads.GoogleAds.V24.Common\xca\x02\x1fGoogle\\Ads\\GoogleAds\\V24\\Common\xea\x02#Google::Ads::GoogleAds::V24::Commonb\x06proto3"
|
|
12
|
+
|
|
13
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
14
|
+
pool.add_serialized_file(descriptor_data)
|
|
15
|
+
|
|
16
|
+
module Google
|
|
17
|
+
module Ads
|
|
18
|
+
module GoogleAds
|
|
19
|
+
module V24
|
|
20
|
+
module Common
|
|
21
|
+
VideoExperimentInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.ads.googleads.v24.common.VideoExperimentInfo").msgclass
|
|
22
|
+
OptimizeAssetsExperimentInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.ads.googleads.v24.common.OptimizeAssetsExperimentInfo").msgclass
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -8,7 +8,7 @@ require 'google/ads/google_ads/v24/enums/interaction_event_type_pb'
|
|
|
8
8
|
require 'google/ads/google_ads/v24/enums/quality_score_bucket_pb'
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
descriptor_data = "\n-google/ads/googleads/v24/common/metrics.proto\x12\x1fgoogle.ads.googleads.v24.common\x1a;google/ads/googleads/v24/enums/interaction_event_type.proto\x1a\x39google/ads/googleads/v24/enums/quality_score_bucket.proto\"\xc6\xa0\x01\n\x07Metrics\x12\x30\n\"absolute_top_impression_percentage\x18\xb7\x01 \x01(\x01H\x00\x88\x01\x01\x12\x1d\n\x0f\x61\x63tive_view_cpm\x18\xb8\x01 \x01(\x01H\x01\x88\x01\x01\x12\x1d\n\x0f\x61\x63tive_view_ctr\x18\xb9\x01 \x01(\x01H\x02\x88\x01\x01\x12%\n\x17\x61\x63tive_view_impressions\x18\xba\x01 \x01(\x03H\x03\x88\x01\x01\x12\'\n\x19\x61\x63tive_view_measurability\x18\xbb\x01 \x01(\x01H\x04\x88\x01\x01\x12\x30\n\"active_view_measurable_cost_micros\x18\xbc\x01 \x01(\x03H\x05\x88\x01\x01\x12\x30\n\"active_view_measurable_impressions\x18\xbd\x01 \x01(\x03H\x06\x88\x01\x01\x12%\n\x17\x61\x63tive_view_viewability\x18\xbe\x01 \x01(\x01H\x07\x88\x01\x01\x12\x34\n&all_conversions_from_interactions_rate\x18\xbf\x01 \x01(\x01H\x08\x88\x01\x01\x12#\n\x15\x61ll_conversions_value\x18\xc0\x01 \x01(\x01H\t\x88\x01\x01\x12\x36\n(all_conversions_value_by_conversion_date\x18\xf0\x01 \x01(\x01H\n\x88\x01\x01\x12-\n\x1f\x61ll_new_customer_lifetime_value\x18\xa6\x02 \x01(\x01H\x0b\x88\x01\x01\x12\x1d\n\x0f\x61ll_conversions\x18\xc1\x01 \x01(\x01H\x0c\x88\x01\x01\x12\x30\n\"all_conversions_by_conversion_date\x18\xf1\x01 \x01(\x01H\r\x88\x01\x01\x12,\n\x1e\x61ll_conversions_value_per_cost\x18\xc2\x01 \x01(\x01H\x0e\x88\x01\x01\x12\x30\n\"all_conversions_from_click_to_call\x18\xc3\x01 \x01(\x01H\x0f\x88\x01\x01\x12-\n\x1f\x61ll_conversions_from_directions\x18\xc4\x01 \x01(\x01H\x10\x88\x01\x01\x12\x45\n7all_conversions_from_interactions_value_per_interaction\x18\xc5\x01 \x01(\x01H\x11\x88\x01\x01\x12\'\n\x19\x61ll_conversions_from_menu\x18\xc6\x01 \x01(\x01H\x12\x88\x01\x01\x12(\n\x1a\x61ll_conversions_from_order\x18\xc7\x01 \x01(\x01H\x13\x88\x01\x01\x12\x33\n%all_conversions_from_other_engagement\x18\xc8\x01 \x01(\x01H\x14\x88\x01\x01\x12.\n all_conversions_from_store_visit\x18\xc9\x01 \x01(\x01H\x15\x88\x01\x01\x12\x30\n\"all_conversions_from_store_website\x18\xca\x01 \x01(\x01H\x16\x88\x01\x01\x12G\n9auction_insight_search_absolute_top_impression_percentage\x18\x82\x02 \x01(\x01H\x17\x88\x01\x01\x12\x35\n\'auction_insight_search_impression_share\x18\x83\x02 \x01(\x01H\x18\x88\x01\x01\x12\x35\n\'auction_insight_search_outranking_share\x18\x84\x02 \x01(\x01H\x19\x88\x01\x01\x12\x31\n#auction_insight_search_overlap_rate\x18\x85\x02 \x01(\x01H\x1a\x88\x01\x01\x12\x38\n*auction_insight_search_position_above_rate\x18\x86\x02 \x01(\x01H\x1b\x88\x01\x01\x12>\n0auction_insight_search_top_impression_percentage\x18\x87\x02 \x01(\x01H\x1c\x88\x01\x01\x12\x1a\n\x0c\x61verage_cost\x18\xcb\x01 \x01(\x01H\x1d\x88\x01\x01\x12\x19\n\x0b\x61verage_cpc\x18\xcc\x01 \x01(\x01H\x1e\x88\x01\x01\x12\x19\n\x0b\x61verage_cpe\x18\xcd\x01 \x01(\x01H\x1f\x88\x01\x01\x12\x19\n\x0b\x61verage_cpm\x18\xce\x01 \x01(\x01H \x88\x01\x01\x12\"\n\x14trueview_average_cpv\x18\x95\x03 \x01(\x01H!\x88\x01\x01\x12 \n\x12\x61verage_page_views\x18\xd0\x01 \x01(\x01H\"\x88\x01\x01\x12\"\n\x14\x61verage_time_on_site\x18\xd1\x01 \x01(\x01H#\x88\x01\x01\x12\'\n\x19\x62\x65nchmark_average_max_cpc\x18\xd2\x01 \x01(\x01H$\x88\x01\x01\x12.\n biddable_app_install_conversions\x18\xfe\x01 \x01(\x01H%\x88\x01\x01\x12\x33\n%biddable_app_post_install_conversions\x18\xff\x01 \x01(\x01H&\x88\x01\x01\x12:\n,biddable_cohort_app_post_install_conversions\x18\xfa\x02 \x01(\x01H\'\x88\x01\x01\x12\x1b\n\rbenchmark_ctr\x18\xd3\x01 \x01(\x01H(\x88\x01\x01\x12\x19\n\x0b\x62ounce_rate\x18\xd4\x01 \x01(\x01H)\x88\x01\x01\x12\x14\n\x06\x63licks\x18\x83\x01 \x01(\x03H*\x88\x01\x01\x12\x1d\n\x0f\x63ombined_clicks\x18\x9c\x01 \x01(\x03H+\x88\x01\x01\x12\'\n\x19\x63ombined_clicks_per_query\x18\x9d\x01 \x01(\x01H,\x88\x01\x01\x12\x1e\n\x10\x63ombined_queries\x18\x9e\x01 \x01(\x03H-\x88\x01\x01\x12\x32\n$content_budget_lost_impression_share\x18\x9f\x01 \x01(\x01H.\x88\x01\x01\x12&\n\x18\x63ontent_impression_share\x18\xa0\x01 \x01(\x01H/\x88\x01\x01\x12\x38\n*conversion_last_received_request_date_time\x18\xa1\x01 \x01(\tH0\x88\x01\x01\x12-\n\x1f\x63onversion_last_conversion_date\x18\xa2\x01 \x01(\tH1\x88\x01\x01\x12\x30\n\"content_rank_lost_impression_share\x18\xa3\x01 \x01(\x01H2\x88\x01\x01\x12\x30\n\"conversions_from_interactions_rate\x18\xa4\x01 \x01(\x01H3\x88\x01\x01\x12\x1f\n\x11\x63onversions_value\x18\xa5\x01 \x01(\x01H4\x88\x01\x01\x12\x32\n$conversions_value_by_conversion_date\x18\xf2\x01 \x01(\x01H5\x88\x01\x01\x12)\n\x1bnew_customer_lifetime_value\x18\xa5\x02 \x01(\x01H6\x88\x01\x01\x12(\n\x1a\x63onversions_value_per_cost\x18\xa6\x01 \x01(\x01H7\x88\x01\x01\x12\x41\n3conversions_from_interactions_value_per_interaction\x18\xa7\x01 \x01(\x01H8\x88\x01\x01\x12\x19\n\x0b\x63onversions\x18\xa8\x01 \x01(\x01H9\x88\x01\x01\x12,\n\x1e\x63onversions_by_conversion_date\x18\xf3\x01 \x01(\x01H:\x88\x01\x01\x12\x19\n\x0b\x63ost_micros\x18\xa9\x01 \x01(\x03H;\x88\x01\x01\x12&\n\x18\x63ost_per_all_conversions\x18\xaa\x01 \x01(\x01H<\x88\x01\x01\x12!\n\x13\x63ost_per_conversion\x18\xab\x01 \x01(\x01H=\x88\x01\x01\x12:\n,cost_per_current_model_attributed_conversion\x18\xac\x01 \x01(\x01H>\x88\x01\x01\x12&\n\x18\x63ross_device_conversions\x18\xad\x01 \x01(\x01H?\x88\x01\x01\x12\x39\n+cross_device_conversions_by_conversion_date\x18\xf4\x02 \x01(\x01H@\x88\x01\x01\x12,\n\x1e\x63ross_device_conversions_value\x18\xfd\x01 \x01(\x01HA\x88\x01\x01\x12\x33\n%cross_device_conversions_value_micros\x18\xb8\x02 \x01(\x03HB\x88\x01\x01\x12?\n1cross_device_conversions_value_by_conversion_date\x18\xf5\x02 \x01(\x01HC\x88\x01\x01\x12\x11\n\x03\x63tr\x18\xae\x01 \x01(\x01HD\x88\x01\x01\x12\x32\n$current_model_attributed_conversions\x18\xaf\x01 \x01(\x01HE\x88\x01\x01\x12I\n;current_model_attributed_conversions_from_interactions_rate\x18\xb0\x01 \x01(\x01HF\x88\x01\x01\x12Z\nLcurrent_model_attributed_conversions_from_interactions_value_per_interaction\x18\xb1\x01 \x01(\x01HG\x88\x01\x01\x12\x38\n*current_model_attributed_conversions_value\x18\xb2\x01 \x01(\x01HH\x88\x01\x01\x12\x41\n3current_model_attributed_conversions_value_per_cost\x18\xb3\x01 \x01(\x01HI\x88\x01\x01\x12\x1d\n\x0f\x65ngagement_rate\x18\xb4\x01 \x01(\x01HJ\x88\x01\x01\x12\x19\n\x0b\x65ngagements\x18\xb5\x01 \x01(\x03HK\x88\x01\x01\x12-\n\x1fhotel_average_lead_value_micros\x18\xd5\x01 \x01(\x01HL\x88\x01\x01\x12*\n\x1chotel_commission_rate_micros\x18\x80\x02 \x01(\x03HM\x88\x01\x01\x12,\n\x1ehotel_expected_commission_cost\x18\x81\x02 \x01(\x01HN\x88\x01\x01\x12/\n!hotel_price_difference_percentage\x18\xd6\x01 \x01(\x01HO\x88\x01\x01\x12(\n\x1ahotel_eligible_impressions\x18\xd7\x01 \x01(\x03HP\x88\x01\x01\x12t\n!historical_creative_quality_score\x18P \x01(\x0e\x32I.google.ads.googleads.v24.enums.QualityScoreBucketEnum.QualityScoreBucket\x12x\n%historical_landing_page_quality_score\x18Q \x01(\x0e\x32I.google.ads.googleads.v24.enums.QualityScoreBucketEnum.QualityScoreBucket\x12&\n\x18historical_quality_score\x18\xd8\x01 \x01(\x03HQ\x88\x01\x01\x12r\n\x1fhistorical_search_predicted_ctr\x18S \x01(\x0e\x32I.google.ads.googleads.v24.enums.QualityScoreBucketEnum.QualityScoreBucket\x12\x1c\n\x0egmail_forwards\x18\xd9\x01 \x01(\x03HR\x88\x01\x01\x12\x19\n\x0bgmail_saves\x18\xda\x01 \x01(\x03HS\x88\x01\x01\x12$\n\x16gmail_secondary_clicks\x18\xdb\x01 \x01(\x03HT\x88\x01\x01\x12*\n\x1cimpressions_from_store_reach\x18\xdc\x01 \x01(\x03HU\x88\x01\x01\x12\x19\n\x0bimpressions\x18\xdd\x01 \x01(\x03HV\x88\x01\x01\x12\x1e\n\x10interaction_rate\x18\xde\x01 \x01(\x01HW\x88\x01\x01\x12\x1a\n\x0cinteractions\x18\xdf\x01 \x01(\x03HX\x88\x01\x01\x12n\n\x17interaction_event_types\x18\x64 \x03(\x0e\x32M.google.ads.googleads.v24.enums.InteractionEventTypeEnum.InteractionEventType\x12 \n\x12invalid_click_rate\x18\xe0\x01 \x01(\x01HY\x88\x01\x01\x12\x1c\n\x0einvalid_clicks\x18\xe1\x01 \x01(\x03HZ\x88\x01\x01\x12(\n\x1ageneral_invalid_click_rate\x18\xf2\x02 \x01(\x01H[\x88\x01\x01\x12$\n\x16general_invalid_clicks\x18\xf3\x02 \x01(\x03H\\\x88\x01\x01\x12\x1b\n\rmessage_chats\x18\xe2\x01 \x01(\x03H]\x88\x01\x01\x12!\n\x13message_impressions\x18\xe3\x01 \x01(\x03H^\x88\x01\x01\x12\x1f\n\x11message_chat_rate\x18\xe4\x01 \x01(\x01H_\x88\x01\x01\x12/\n!mobile_friendly_clicks_percentage\x18\xe5\x01 \x01(\x01H`\x88\x01\x01\x12\'\n\x19optimization_score_uplift\x18\xf7\x01 \x01(\x01Ha\x88\x01\x01\x12$\n\x16optimization_score_url\x18\xf8\x01 \x01(\tHb\x88\x01\x01\x12\x1c\n\x0eorganic_clicks\x18\xe6\x01 \x01(\x03Hc\x88\x01\x01\x12&\n\x18organic_clicks_per_query\x18\xe7\x01 \x01(\x01Hd\x88\x01\x01\x12!\n\x13organic_impressions\x18\xe8\x01 \x01(\x03He\x88\x01\x01\x12+\n\x1dorganic_impressions_per_query\x18\xe9\x01 \x01(\x01Hf\x88\x01\x01\x12\x1d\n\x0forganic_queries\x18\xea\x01 \x01(\x03Hg\x88\x01\x01\x12\"\n\x14percent_new_visitors\x18\xeb\x01 \x01(\x01Hh\x88\x01\x01\x12\x19\n\x0bphone_calls\x18\xec\x01 \x01(\x03Hi\x88\x01\x01\x12\x1f\n\x11phone_impressions\x18\xed\x01 \x01(\x03Hj\x88\x01\x01\x12 \n\x12phone_through_rate\x18\xee\x01 \x01(\x01Hk\x88\x01\x01\x12\x1a\n\x0crelative_ctr\x18\xef\x01 \x01(\x01Hl\x88\x01\x01\x12\x32\n$search_absolute_top_impression_share\x18\x88\x01 \x01(\x01Hm\x88\x01\x01\x12>\n0search_budget_lost_absolute_top_impression_share\x18\x89\x01 \x01(\x01Hn\x88\x01\x01\x12\x31\n#search_budget_lost_impression_share\x18\x8a\x01 \x01(\x01Ho\x88\x01\x01\x12\x35\n\'search_budget_lost_top_impression_share\x18\x8b\x01 \x01(\x01Hp\x88\x01\x01\x12 \n\x12search_click_share\x18\x8c\x01 \x01(\x01Hq\x88\x01\x01\x12\x31\n#search_exact_match_impression_share\x18\x8d\x01 \x01(\x01Hr\x88\x01\x01\x12%\n\x17search_impression_share\x18\x8e\x01 \x01(\x01Hs\x88\x01\x01\x12<\n.search_rank_lost_absolute_top_impression_share\x18\x8f\x01 \x01(\x01Ht\x88\x01\x01\x12/\n!search_rank_lost_impression_share\x18\x90\x01 \x01(\x01Hu\x88\x01\x01\x12\x33\n%search_rank_lost_top_impression_share\x18\x91\x01 \x01(\x01Hv\x88\x01\x01\x12)\n\x1bsearch_top_impression_share\x18\x92\x01 \x01(\x01Hw\x88\x01\x01\x12O\n\rsearch_volume\x18\xa7\x02 \x01(\x0b\x32\x32.google.ads.googleads.v24.common.SearchVolumeRangeHx\x88\x01\x01\x12\x19\n\x0bspeed_score\x18\x93\x01 \x01(\x03Hy\x88\x01\x01\x12\'\n\x19\x61verage_target_cpa_micros\x18\xa2\x02 \x01(\x03Hz\x88\x01\x01\x12!\n\x13\x61verage_target_roas\x18\xfa\x01 \x01(\x01H{\x88\x01\x01\x12\'\n\x19top_impression_percentage\x18\x94\x01 \x01(\x01H|\x88\x01\x01\x12>\n0valid_accelerated_mobile_pages_clicks_percentage\x18\x95\x01 \x01(\x01H}\x88\x01\x01\x12\'\n\x19value_per_all_conversions\x18\x96\x01 \x01(\x01H~\x88\x01\x01\x12:\n,value_per_all_conversions_by_conversion_date\x18\xf4\x01 \x01(\x01H\x7f\x88\x01\x01\x12#\n\x14value_per_conversion\x18\x97\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12\x37\n(value_per_conversions_by_conversion_date\x18\xf5\x01 \x01(\x01H\x81\x01\x88\x01\x01\x12<\n-value_per_current_model_attributed_conversion\x18\x98\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12\'\n\x18video_quartile_p100_rate\x18\x84\x01 \x01(\x01H\x83\x01\x88\x01\x01\x12&\n\x17video_quartile_p25_rate\x18\x85\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12&\n\x17video_quartile_p50_rate\x18\x86\x01 \x01(\x01H\x85\x01\x88\x01\x01\x12&\n\x17video_quartile_p75_rate\x18\x87\x01 \x01(\x01H\x86\x01\x88\x01\x01\x12\'\n\x18video_trueview_view_rate\x18\x96\x03 \x01(\x01H\x87\x01\x88\x01\x01\x12#\n\x14video_trueview_views\x18\x97\x03 \x01(\x03H\x88\x01\x88\x01\x01\x12\'\n\x18view_through_conversions\x18\x9b\x01 \x01(\x03H\x89\x01\x88\x01\x01\x12\x1f\n\x16sk_ad_network_installs\x18\xf6\x01 \x01(\x03\x12(\n\x1fsk_ad_network_total_conversions\x18\xa4\x02 \x01(\x03\x12#\n\x1apublisher_purchased_clicks\x18\x88\x02 \x01(\x03\x12!\n\x18publisher_organic_clicks\x18\x89\x02 \x01(\x03\x12!\n\x18publisher_unknown_clicks\x18\x8a\x02 \x01(\x03\x12@\n1all_conversions_from_location_asset_click_to_call\x18\x8b\x02 \x01(\x01H\x8a\x01\x88\x01\x01\x12=\n.all_conversions_from_location_asset_directions\x18\x8c\x02 \x01(\x01H\x8b\x01\x88\x01\x01\x12\x37\n(all_conversions_from_location_asset_menu\x18\x8d\x02 \x01(\x01H\x8c\x01\x88\x01\x01\x12\x38\n)all_conversions_from_location_asset_order\x18\x8e\x02 \x01(\x01H\x8d\x01\x88\x01\x01\x12\x43\n4all_conversions_from_location_asset_other_engagement\x18\x8f\x02 \x01(\x01H\x8e\x01\x88\x01\x01\x12?\n0all_conversions_from_location_asset_store_visits\x18\x90\x02 \x01(\x01H\x8f\x01\x88\x01\x01\x12:\n+all_conversions_from_location_asset_website\x18\x91\x02 \x01(\x01H\x90\x01\x88\x01\x01\x12\x43\n4eligible_impressions_from_location_asset_store_reach\x18\x92\x02 \x01(\x03H\x91\x01\x88\x01\x01\x12I\n:view_through_conversions_from_location_asset_click_to_call\x18\x93\x02 \x01(\x01H\x92\x01\x88\x01\x01\x12\x46\n7view_through_conversions_from_location_asset_directions\x18\x94\x02 \x01(\x01H\x93\x01\x88\x01\x01\x12@\n1view_through_conversions_from_location_asset_menu\x18\x95\x02 \x01(\x01H\x94\x01\x88\x01\x01\x12\x41\n2view_through_conversions_from_location_asset_order\x18\x96\x02 \x01(\x01H\x95\x01\x88\x01\x01\x12L\n=view_through_conversions_from_location_asset_other_engagement\x18\x97\x02 \x01(\x01H\x96\x01\x88\x01\x01\x12H\n9view_through_conversions_from_location_asset_store_visits\x18\x98\x02 \x01(\x01H\x97\x01\x88\x01\x01\x12\x43\n4view_through_conversions_from_location_asset_website\x18\x99\x02 \x01(\x01H\x98\x01\x88\x01\x01\x12\x15\n\x06orders\x18\xa8\x02 \x01(\x01H\x99\x01\x88\x01\x01\x12)\n\x1a\x61verage_order_value_micros\x18\xa9\x02 \x01(\x03H\x9a\x01\x88\x01\x01\x12 \n\x11\x61verage_cart_size\x18\xaa\x02 \x01(\x01H\x9b\x01\x88\x01\x01\x12(\n\x19\x63ost_of_goods_sold_micros\x18\xab\x02 \x01(\x03H\x9c\x01\x88\x01\x01\x12\"\n\x13gross_profit_micros\x18\xac\x02 \x01(\x03H\x9d\x01\x88\x01\x01\x12\"\n\x13gross_profit_margin\x18\xad\x02 \x01(\x01H\x9e\x01\x88\x01\x01\x12\x1d\n\x0erevenue_micros\x18\xae\x02 \x01(\x03H\x9f\x01\x88\x01\x01\x12\x19\n\nunits_sold\x18\xaf\x02 \x01(\x01H\xa0\x01\x88\x01\x01\x12\x33\n$cross_sell_cost_of_goods_sold_micros\x18\xb0\x02 \x01(\x03H\xa1\x01\x88\x01\x01\x12-\n\x1e\x63ross_sell_gross_profit_micros\x18\xb1\x02 \x01(\x03H\xa2\x01\x88\x01\x01\x12(\n\x19\x63ross_sell_revenue_micros\x18\xb2\x02 \x01(\x03H\xa3\x01\x88\x01\x01\x12$\n\x15\x63ross_sell_units_sold\x18\xb3\x02 \x01(\x01H\xa4\x01\x88\x01\x01\x12-\n\x1elead_cost_of_goods_sold_micros\x18\xb4\x02 \x01(\x03H\xa5\x01\x88\x01\x01\x12\'\n\x18lead_gross_profit_micros\x18\xb5\x02 \x01(\x03H\xa6\x01\x88\x01\x01\x12\"\n\x13lead_revenue_micros\x18\xb6\x02 \x01(\x03H\xa7\x01\x88\x01\x01\x12\x1e\n\x0flead_units_sold\x18\xb7\x02 \x01(\x01H\xa8\x01\x88\x01\x01\x12\x1b\n\x0cunique_users\x18\xbf\x02 \x01(\x03H\xa9\x01\x88\x01\x01\x12\x34\n%average_impression_frequency_per_user\x18\xc0\x02 \x01(\x01H\xaa\x01\x88\x01\x01\x12$\n\x15linked_entities_count\x18\xd5\x02 \x01(\x03H\xab\x01\x88\x01\x01\x12\x1f\n\x16linked_sample_entities\x18\xd6\x02 \x03(\t\x12\'\n\x18\x61sset_pinned_total_count\x18\xdc\x02 \x01(\x03H\xac\x01\x88\x01\x01\x12:\n+asset_pinned_as_headline_position_one_count\x18\xdd\x02 \x01(\x03H\xad\x01\x88\x01\x01\x12:\n+asset_pinned_as_headline_position_two_count\x18\xde\x02 \x01(\x03H\xae\x01\x88\x01\x01\x12<\n-asset_pinned_as_headline_position_three_count\x18\xdf\x02 \x01(\x03H\xaf\x01\x88\x01\x01\x12=\n.asset_pinned_as_description_position_one_count\x18\xe0\x02 \x01(\x03H\xb0\x01\x88\x01\x01\x12=\n.asset_pinned_as_description_position_two_count\x18\xe1\x02 \x01(\x03H\xb1\x01\x88\x01\x01\x12\x43\n4store_visits_last_click_model_attributed_conversions\x18\xed\x02 \x01(\x01H\xb2\x01\x88\x01\x01\x12+\n\x1cresults_conversions_purchase\x18\xee\x02 \x01(\x01H\xb3\x01\x88\x01\x01\x12/\n video_trueview_view_rate_in_feed\x18\x98\x03 \x01(\x01H\xb4\x01\x88\x01\x01\x12\x31\n\"video_trueview_view_rate_in_stream\x18\x99\x03 \x01(\x01H\xb5\x01\x88\x01\x01\x12.\n\x1fvideo_trueview_view_rate_shorts\x18\x9a\x03 \x01(\x01H\xb6\x01\x88\x01\x01\x12#\n\x14\x63oviewed_impressions\x18\xfc\x02 \x01(\x03H\xb7\x01\x88\x01\x01\x12\"\n\x13primary_impressions\x18\xfd\x02 \x01(\x03H\xb8\x01\x88\x01\x01\x12\x45\n6platform_comparable_conversions_from_interactions_rate\x18\xfe\x02 \x01(\x01H\xb9\x01\x88\x01\x01\x12.\n\x1fplatform_comparable_conversions\x18\xff\x02 \x01(\x01H\xba\x01\x88\x01\x01\x12\x34\n%platform_comparable_conversions_value\x18\x80\x03 \x01(\x01H\xbb\x01\x88\x01\x01\x12=\n.platform_comparable_conversions_value_per_cost\x18\x81\x03 \x01(\x01H\xbc\x01\x88\x01\x01\x12\x41\n2platform_comparable_conversions_by_conversion_date\x18\x82\x03 \x01(\x01H\xbd\x01\x88\x01\x01\x12G\n8platform_comparable_conversions_value_by_conversion_date\x18\x83\x03 \x01(\x01H\xbe\x01\x88\x01\x01\x12V\nGplatform_comparable_conversions_from_interactions_value_per_interaction\x18\x84\x03 \x01(\x01H\xbf\x01\x88\x01\x01\x12\x36\n\'cost_per_platform_comparable_conversion\x18\x85\x03 \x01(\x01H\xc0\x01\x88\x01\x01\x12\x37\n(value_per_platform_comparable_conversion\x18\x86\x03 \x01(\x01H\xc1\x01\x88\x01\x01\x12K\n<value_per_platform_comparable_conversions_by_conversion_date\x18\x87\x03 \x01(\x01H\xc2\x01\x88\x01\x01\x12I\n:cost_converted_currency_per_platform_comparable_conversion\x18\x88\x03 \x01(\x01H\xc3\x01\x88\x01\x01\x12$\n\x15unique_users_two_plus\x18\x89\x03 \x01(\x03H\xc4\x01\x88\x01\x01\x12&\n\x17unique_users_three_plus\x18\x8a\x03 \x01(\x03H\xc5\x01\x88\x01\x01\x12%\n\x16unique_users_four_plus\x18\x8b\x03 \x01(\x03H\xc6\x01\x88\x01\x01\x12%\n\x16unique_users_five_plus\x18\x8c\x03 \x01(\x03H\xc7\x01\x88\x01\x01\x12$\n\x15unique_users_ten_plus\x18\x8d\x03 \x01(\x03H\xc8\x01\x88\x01\x01\x12\x1f\n\x10value_adjustment\x18\x8e\x03 \x01(\x01H\xc9\x01\x88\x01\x01\x12#\n\x14\x61ll_value_adjustment\x18\x8f\x03 \x01(\x01H\xca\x01\x88\x01\x01\x12+\n\x1c\x63licks_unique_query_clusters\x18\x90\x03 \x01(\x03H\xcb\x01\x88\x01\x01\x12\x30\n!conversions_unique_query_clusters\x18\x91\x03 \x01(\x03H\xcc\x01\x88\x01\x01\x12\x30\n!impressions_unique_query_clusters\x18\x92\x03 \x01(\x03H\xcd\x01\x88\x01\x01\x12/\n video_watch_time_duration_millis\x18\x93\x03 \x01(\x03H\xce\x01\x88\x01\x01\x12\x37\n(average_video_watch_time_duration_millis\x18\x94\x03 \x01(\x03H\xcf\x01\x88\x01\x01\x12\x12\n\x03svr\x18\x9b\x03 \x01(\x03H\xd0\x01\x88\x01\x01\x12<\n-active_view_audibility_measurable_impressions\x18\x9c\x03 \x01(\x03H\xd1\x01\x88\x01\x01\x12\x41\n2active_view_audibility_measurable_impressions_rate\x18\x9d\x03 \x01(\x01H\xd2\x01\x88\x01\x01\x12I\n:active_view_audibility_invalid_measurable_impressions_rate\x18\x9e\x03 \x01(\x01H\xd3\x01\x88\x01\x01\x12N\n?active_view_audibility_invalid_givt_measurable_impressions_rate\x18\x9f\x03 \x01(\x01H\xd4\x01\x88\x01\x01\x12.\n\x1f\x61\x63tive_view_audible_impressions\x18\xa0\x03 \x01(\x03H\xd5\x01\x88\x01\x01\x12\x33\n$active_view_audible_impressions_rate\x18\xa1\x03 \x01(\x01H\xd6\x01\x88\x01\x01\x12:\n+active_view_audible_two_seconds_impressions\x18\xa2\x03 \x01(\x03H\xd7\x01\x88\x01\x01\x12?\n0active_view_audible_two_seconds_impressions_rate\x18\xa3\x03 \x01(\x01H\xd8\x01\x88\x01\x01\x12=\n.active_view_audible_thirty_seconds_impressions\x18\xa4\x03 \x01(\x03H\xd9\x01\x88\x01\x01\x12\x42\n3active_view_audible_thirty_seconds_impressions_rate\x18\xa5\x03 \x01(\x01H\xda\x01\x88\x01\x01\x12\x34\n%active_view_audible_quartile_p25_rate\x18\xa6\x03 \x01(\x01H\xdb\x01\x88\x01\x01\x12\x34\n%active_view_audible_quartile_p50_rate\x18\xa7\x03 \x01(\x01H\xdc\x01\x88\x01\x01\x12\x34\n%active_view_audible_quartile_p75_rate\x18\xa8\x03 \x01(\x01H\xdd\x01\x88\x01\x01\x12\x35\n&active_view_audible_quartile_p100_rate\x18\xa9\x03 \x01(\x01H\xde\x01\x88\x01\x01\x12G\n8biddable_indirect_install_first_in_app_conversion_micros\x18\xaa\x03 \x01(\x03H\xdf\x01\x88\x01\x01\x12$\n\x15\x61ll_average_cart_size\x18\xab\x03 \x01(\x01H\xe0\x01\x88\x01\x01\x12-\n\x1e\x61ll_average_order_value_micros\x18\xac\x03 \x01(\x03H\xe1\x01\x88\x01\x01\x12,\n\x1d\x61ll_cost_of_goods_sold_micros\x18\xad\x03 \x01(\x03H\xe2\x01\x88\x01\x01\x12\x37\n(all_cross_sell_cost_of_goods_sold_micros\x18\xae\x03 \x01(\x03H\xe3\x01\x88\x01\x01\x12\x31\n\"all_cross_sell_gross_profit_micros\x18\xaf\x03 \x01(\x03H\xe4\x01\x88\x01\x01\x12,\n\x1d\x61ll_cross_sell_revenue_micros\x18\xb0\x03 \x01(\x03H\xe5\x01\x88\x01\x01\x12(\n\x19\x61ll_cross_sell_units_sold\x18\xb1\x03 \x01(\x01H\xe6\x01\x88\x01\x01\x12&\n\x17\x61ll_gross_profit_margin\x18\xb2\x03 \x01(\x01H\xe7\x01\x88\x01\x01\x12&\n\x17\x61ll_gross_profit_micros\x18\xb3\x03 \x01(\x03H\xe8\x01\x88\x01\x01\x12\x31\n\"all_lead_cost_of_goods_sold_micros\x18\xb4\x03 \x01(\x03H\xe9\x01\x88\x01\x01\x12+\n\x1c\x61ll_lead_gross_profit_micros\x18\xb5\x03 \x01(\x03H\xea\x01\x88\x01\x01\x12&\n\x17\x61ll_lead_revenue_micros\x18\xb6\x03 \x01(\x03H\xeb\x01\x88\x01\x01\x12\"\n\x13\x61ll_lead_units_sold\x18\xb7\x03 \x01(\x01H\xec\x01\x88\x01\x01\x12\x19\n\nall_orders\x18\xb8\x03 \x01(\x01H\xed\x01\x88\x01\x01\x12!\n\x12\x61ll_revenue_micros\x18\xb9\x03 \x01(\x03H\xee\x01\x88\x01\x01\x12\x1d\n\x0e\x61ll_units_sold\x18\xba\x03 \x01(\x01H\xef\x01\x88\x01\x01\x42%\n#_absolute_top_impression_percentageB\x12\n\x10_active_view_cpmB\x12\n\x10_active_view_ctrB\x1a\n\x18_active_view_impressionsB\x1c\n\x1a_active_view_measurabilityB%\n#_active_view_measurable_cost_microsB%\n#_active_view_measurable_impressionsB\x1a\n\x18_active_view_viewabilityB)\n\'_all_conversions_from_interactions_rateB\x18\n\x16_all_conversions_valueB+\n)_all_conversions_value_by_conversion_dateB\"\n _all_new_customer_lifetime_valueB\x12\n\x10_all_conversionsB%\n#_all_conversions_by_conversion_dateB!\n\x1f_all_conversions_value_per_costB%\n#_all_conversions_from_click_to_callB\"\n _all_conversions_from_directionsB:\n8_all_conversions_from_interactions_value_per_interactionB\x1c\n\x1a_all_conversions_from_menuB\x1d\n\x1b_all_conversions_from_orderB(\n&_all_conversions_from_other_engagementB#\n!_all_conversions_from_store_visitB%\n#_all_conversions_from_store_websiteB<\n:_auction_insight_search_absolute_top_impression_percentageB*\n(_auction_insight_search_impression_shareB*\n(_auction_insight_search_outranking_shareB&\n$_auction_insight_search_overlap_rateB-\n+_auction_insight_search_position_above_rateB3\n1_auction_insight_search_top_impression_percentageB\x0f\n\r_average_costB\x0e\n\x0c_average_cpcB\x0e\n\x0c_average_cpeB\x0e\n\x0c_average_cpmB\x17\n\x15_trueview_average_cpvB\x15\n\x13_average_page_viewsB\x17\n\x15_average_time_on_siteB\x1c\n\x1a_benchmark_average_max_cpcB#\n!_biddable_app_install_conversionsB(\n&_biddable_app_post_install_conversionsB/\n-_biddable_cohort_app_post_install_conversionsB\x10\n\x0e_benchmark_ctrB\x0e\n\x0c_bounce_rateB\t\n\x07_clicksB\x12\n\x10_combined_clicksB\x1c\n\x1a_combined_clicks_per_queryB\x13\n\x11_combined_queriesB\'\n%_content_budget_lost_impression_shareB\x1b\n\x19_content_impression_shareB-\n+_conversion_last_received_request_date_timeB\"\n _conversion_last_conversion_dateB%\n#_content_rank_lost_impression_shareB%\n#_conversions_from_interactions_rateB\x14\n\x12_conversions_valueB\'\n%_conversions_value_by_conversion_dateB\x1e\n\x1c_new_customer_lifetime_valueB\x1d\n\x1b_conversions_value_per_costB6\n4_conversions_from_interactions_value_per_interactionB\x0e\n\x0c_conversionsB!\n\x1f_conversions_by_conversion_dateB\x0e\n\x0c_cost_microsB\x1b\n\x19_cost_per_all_conversionsB\x16\n\x14_cost_per_conversionB/\n-_cost_per_current_model_attributed_conversionB\x1b\n\x19_cross_device_conversionsB.\n,_cross_device_conversions_by_conversion_dateB!\n\x1f_cross_device_conversions_valueB(\n&_cross_device_conversions_value_microsB4\n2_cross_device_conversions_value_by_conversion_dateB\x06\n\x04_ctrB\'\n%_current_model_attributed_conversionsB>\n<_current_model_attributed_conversions_from_interactions_rateBO\nM_current_model_attributed_conversions_from_interactions_value_per_interactionB-\n+_current_model_attributed_conversions_valueB6\n4_current_model_attributed_conversions_value_per_costB\x12\n\x10_engagement_rateB\x0e\n\x0c_engagementsB\"\n _hotel_average_lead_value_microsB\x1f\n\x1d_hotel_commission_rate_microsB!\n\x1f_hotel_expected_commission_costB$\n\"_hotel_price_difference_percentageB\x1d\n\x1b_hotel_eligible_impressionsB\x1b\n\x19_historical_quality_scoreB\x11\n\x0f_gmail_forwardsB\x0e\n\x0c_gmail_savesB\x19\n\x17_gmail_secondary_clicksB\x1f\n\x1d_impressions_from_store_reachB\x0e\n\x0c_impressionsB\x13\n\x11_interaction_rateB\x0f\n\r_interactionsB\x15\n\x13_invalid_click_rateB\x11\n\x0f_invalid_clicksB\x1d\n\x1b_general_invalid_click_rateB\x19\n\x17_general_invalid_clicksB\x10\n\x0e_message_chatsB\x16\n\x14_message_impressionsB\x14\n\x12_message_chat_rateB$\n\"_mobile_friendly_clicks_percentageB\x1c\n\x1a_optimization_score_upliftB\x19\n\x17_optimization_score_urlB\x11\n\x0f_organic_clicksB\x1b\n\x19_organic_clicks_per_queryB\x16\n\x14_organic_impressionsB \n\x1e_organic_impressions_per_queryB\x12\n\x10_organic_queriesB\x17\n\x15_percent_new_visitorsB\x0e\n\x0c_phone_callsB\x14\n\x12_phone_impressionsB\x15\n\x13_phone_through_rateB\x0f\n\r_relative_ctrB\'\n%_search_absolute_top_impression_shareB3\n1_search_budget_lost_absolute_top_impression_shareB&\n$_search_budget_lost_impression_shareB*\n(_search_budget_lost_top_impression_shareB\x15\n\x13_search_click_shareB&\n$_search_exact_match_impression_shareB\x1a\n\x18_search_impression_shareB1\n/_search_rank_lost_absolute_top_impression_shareB$\n\"_search_rank_lost_impression_shareB(\n&_search_rank_lost_top_impression_shareB\x1e\n\x1c_search_top_impression_shareB\x10\n\x0e_search_volumeB\x0e\n\x0c_speed_scoreB\x1c\n\x1a_average_target_cpa_microsB\x16\n\x14_average_target_roasB\x1c\n\x1a_top_impression_percentageB3\n1_valid_accelerated_mobile_pages_clicks_percentageB\x1c\n\x1a_value_per_all_conversionsB/\n-_value_per_all_conversions_by_conversion_dateB\x17\n\x15_value_per_conversionB+\n)_value_per_conversions_by_conversion_dateB0\n._value_per_current_model_attributed_conversionB\x1b\n\x19_video_quartile_p100_rateB\x1a\n\x18_video_quartile_p25_rateB\x1a\n\x18_video_quartile_p50_rateB\x1a\n\x18_video_quartile_p75_rateB\x1b\n\x19_video_trueview_view_rateB\x17\n\x15_video_trueview_viewsB\x1b\n\x19_view_through_conversionsB4\n2_all_conversions_from_location_asset_click_to_callB1\n/_all_conversions_from_location_asset_directionsB+\n)_all_conversions_from_location_asset_menuB,\n*_all_conversions_from_location_asset_orderB7\n5_all_conversions_from_location_asset_other_engagementB3\n1_all_conversions_from_location_asset_store_visitsB.\n,_all_conversions_from_location_asset_websiteB7\n5_eligible_impressions_from_location_asset_store_reachB=\n;_view_through_conversions_from_location_asset_click_to_callB:\n8_view_through_conversions_from_location_asset_directionsB4\n2_view_through_conversions_from_location_asset_menuB5\n3_view_through_conversions_from_location_asset_orderB@\n>_view_through_conversions_from_location_asset_other_engagementB<\n:_view_through_conversions_from_location_asset_store_visitsB7\n5_view_through_conversions_from_location_asset_websiteB\t\n\x07_ordersB\x1d\n\x1b_average_order_value_microsB\x14\n\x12_average_cart_sizeB\x1c\n\x1a_cost_of_goods_sold_microsB\x16\n\x14_gross_profit_microsB\x16\n\x14_gross_profit_marginB\x11\n\x0f_revenue_microsB\r\n\x0b_units_soldB\'\n%_cross_sell_cost_of_goods_sold_microsB!\n\x1f_cross_sell_gross_profit_microsB\x1c\n\x1a_cross_sell_revenue_microsB\x18\n\x16_cross_sell_units_soldB!\n\x1f_lead_cost_of_goods_sold_microsB\x1b\n\x19_lead_gross_profit_microsB\x16\n\x14_lead_revenue_microsB\x12\n\x10_lead_units_soldB\x0f\n\r_unique_usersB(\n&_average_impression_frequency_per_userB\x18\n\x16_linked_entities_countB\x1b\n\x19_asset_pinned_total_countB.\n,_asset_pinned_as_headline_position_one_countB.\n,_asset_pinned_as_headline_position_two_countB0\n._asset_pinned_as_headline_position_three_countB1\n/_asset_pinned_as_description_position_one_countB1\n/_asset_pinned_as_description_position_two_countB7\n5_store_visits_last_click_model_attributed_conversionsB\x1f\n\x1d_results_conversions_purchaseB#\n!_video_trueview_view_rate_in_feedB%\n#_video_trueview_view_rate_in_streamB\"\n _video_trueview_view_rate_shortsB\x17\n\x15_coviewed_impressionsB\x16\n\x14_primary_impressionsB9\n7_platform_comparable_conversions_from_interactions_rateB\"\n _platform_comparable_conversionsB(\n&_platform_comparable_conversions_valueB1\n/_platform_comparable_conversions_value_per_costB5\n3_platform_comparable_conversions_by_conversion_dateB;\n9_platform_comparable_conversions_value_by_conversion_dateBJ\nH_platform_comparable_conversions_from_interactions_value_per_interactionB*\n(_cost_per_platform_comparable_conversionB+\n)_value_per_platform_comparable_conversionB?\n=_value_per_platform_comparable_conversions_by_conversion_dateB=\n;_cost_converted_currency_per_platform_comparable_conversionB\x18\n\x16_unique_users_two_plusB\x1a\n\x18_unique_users_three_plusB\x19\n\x17_unique_users_four_plusB\x19\n\x17_unique_users_five_plusB\x18\n\x16_unique_users_ten_plusB\x13\n\x11_value_adjustmentB\x17\n\x15_all_value_adjustmentB\x1f\n\x1d_clicks_unique_query_clustersB$\n\"_conversions_unique_query_clustersB$\n\"_impressions_unique_query_clustersB#\n!_video_watch_time_duration_millisB+\n)_average_video_watch_time_duration_millisB\x06\n\x04_svrB0\n._active_view_audibility_measurable_impressionsB5\n3_active_view_audibility_measurable_impressions_rateB=\n;_active_view_audibility_invalid_measurable_impressions_rateBB\n@_active_view_audibility_invalid_givt_measurable_impressions_rateB\"\n _active_view_audible_impressionsB\'\n%_active_view_audible_impressions_rateB.\n,_active_view_audible_two_seconds_impressionsB3\n1_active_view_audible_two_seconds_impressions_rateB1\n/_active_view_audible_thirty_seconds_impressionsB6\n4_active_view_audible_thirty_seconds_impressions_rateB(\n&_active_view_audible_quartile_p25_rateB(\n&_active_view_audible_quartile_p50_rateB(\n&_active_view_audible_quartile_p75_rateB)\n\'_active_view_audible_quartile_p100_rateB;\n9_biddable_indirect_install_first_in_app_conversion_microsB\x18\n\x16_all_average_cart_sizeB!\n\x1f_all_average_order_value_microsB \n\x1e_all_cost_of_goods_sold_microsB+\n)_all_cross_sell_cost_of_goods_sold_microsB%\n#_all_cross_sell_gross_profit_microsB \n\x1e_all_cross_sell_revenue_microsB\x1c\n\x1a_all_cross_sell_units_soldB\x1a\n\x18_all_gross_profit_marginB\x1a\n\x18_all_gross_profit_microsB%\n#_all_lead_cost_of_goods_sold_microsB\x1f\n\x1d_all_lead_gross_profit_microsB\x1a\n\x18_all_lead_revenue_microsB\x16\n\x14_all_lead_units_soldB\r\n\x0b_all_ordersB\x15\n\x13_all_revenue_microsB\x11\n\x0f_all_units_sold\"G\n\x11SearchVolumeRange\x12\x10\n\x03min\x18\x01 \x01(\x03H\x00\x88\x01\x01\x12\x10\n\x03max\x18\x02 \x01(\x03H\x01\x88\x01\x01\x42\x06\n\x04_minB\x06\n\x04_maxB\xec\x01\n#com.google.ads.googleads.v24.commonB\x0cMetricsProtoP\x01ZEgoogle.golang.org/genproto/googleapis/ads/googleads/v24/common;common\xa2\x02\x03GAA\xaa\x02\x1fGoogle.Ads.GoogleAds.V24.Common\xca\x02\x1fGoogle\\Ads\\GoogleAds\\V24\\Common\xea\x02#Google::Ads::GoogleAds::V24::Commonb\x06proto3"
|
|
11
|
+
descriptor_data = "\n-google/ads/googleads/v24/common/metrics.proto\x12\x1fgoogle.ads.googleads.v24.common\x1a;google/ads/googleads/v24/enums/interaction_event_type.proto\x1a\x39google/ads/googleads/v24/enums/quality_score_bucket.proto\"\xf0\xb1\x01\n\x07Metrics\x12\x30\n\"absolute_top_impression_percentage\x18\xb7\x01 \x01(\x01H\x00\x88\x01\x01\x12\x1d\n\x0f\x61\x63tive_view_cpm\x18\xb8\x01 \x01(\x01H\x01\x88\x01\x01\x12\x1d\n\x0f\x61\x63tive_view_ctr\x18\xb9\x01 \x01(\x01H\x02\x88\x01\x01\x12%\n\x17\x61\x63tive_view_impressions\x18\xba\x01 \x01(\x03H\x03\x88\x01\x01\x12\'\n\x19\x61\x63tive_view_measurability\x18\xbb\x01 \x01(\x01H\x04\x88\x01\x01\x12\x30\n\"active_view_measurable_cost_micros\x18\xbc\x01 \x01(\x03H\x05\x88\x01\x01\x12\x30\n\"active_view_measurable_impressions\x18\xbd\x01 \x01(\x03H\x06\x88\x01\x01\x12%\n\x17\x61\x63tive_view_viewability\x18\xbe\x01 \x01(\x01H\x07\x88\x01\x01\x12\x34\n&all_conversions_from_interactions_rate\x18\xbf\x01 \x01(\x01H\x08\x88\x01\x01\x12#\n\x15\x61ll_conversions_value\x18\xc0\x01 \x01(\x01H\t\x88\x01\x01\x12\x36\n(all_conversions_value_by_conversion_date\x18\xf0\x01 \x01(\x01H\n\x88\x01\x01\x12-\n\x1f\x61ll_new_customer_lifetime_value\x18\xa6\x02 \x01(\x01H\x0b\x88\x01\x01\x12\x1d\n\x0f\x61ll_conversions\x18\xc1\x01 \x01(\x01H\x0c\x88\x01\x01\x12\x30\n\"all_conversions_by_conversion_date\x18\xf1\x01 \x01(\x01H\r\x88\x01\x01\x12,\n\x1e\x61ll_conversions_value_per_cost\x18\xc2\x01 \x01(\x01H\x0e\x88\x01\x01\x12\x30\n\"all_conversions_from_click_to_call\x18\xc3\x01 \x01(\x01H\x0f\x88\x01\x01\x12-\n\x1f\x61ll_conversions_from_directions\x18\xc4\x01 \x01(\x01H\x10\x88\x01\x01\x12\x45\n7all_conversions_from_interactions_value_per_interaction\x18\xc5\x01 \x01(\x01H\x11\x88\x01\x01\x12\'\n\x19\x61ll_conversions_from_menu\x18\xc6\x01 \x01(\x01H\x12\x88\x01\x01\x12(\n\x1a\x61ll_conversions_from_order\x18\xc7\x01 \x01(\x01H\x13\x88\x01\x01\x12\x33\n%all_conversions_from_other_engagement\x18\xc8\x01 \x01(\x01H\x14\x88\x01\x01\x12.\n all_conversions_from_store_visit\x18\xc9\x01 \x01(\x01H\x15\x88\x01\x01\x12\x30\n\"all_conversions_from_store_website\x18\xca\x01 \x01(\x01H\x16\x88\x01\x01\x12G\n9auction_insight_search_absolute_top_impression_percentage\x18\x82\x02 \x01(\x01H\x17\x88\x01\x01\x12\x35\n\'auction_insight_search_impression_share\x18\x83\x02 \x01(\x01H\x18\x88\x01\x01\x12\x35\n\'auction_insight_search_outranking_share\x18\x84\x02 \x01(\x01H\x19\x88\x01\x01\x12\x31\n#auction_insight_search_overlap_rate\x18\x85\x02 \x01(\x01H\x1a\x88\x01\x01\x12\x38\n*auction_insight_search_position_above_rate\x18\x86\x02 \x01(\x01H\x1b\x88\x01\x01\x12>\n0auction_insight_search_top_impression_percentage\x18\x87\x02 \x01(\x01H\x1c\x88\x01\x01\x12\x1a\n\x0c\x61verage_cost\x18\xcb\x01 \x01(\x01H\x1d\x88\x01\x01\x12\x19\n\x0b\x61verage_cpc\x18\xcc\x01 \x01(\x01H\x1e\x88\x01\x01\x12\x19\n\x0b\x61verage_cpe\x18\xcd\x01 \x01(\x01H\x1f\x88\x01\x01\x12\x19\n\x0b\x61verage_cpm\x18\xce\x01 \x01(\x01H \x88\x01\x01\x12\"\n\x14trueview_average_cpv\x18\x95\x03 \x01(\x01H!\x88\x01\x01\x12 \n\x12\x61verage_page_views\x18\xd0\x01 \x01(\x01H\"\x88\x01\x01\x12\"\n\x14\x61verage_time_on_site\x18\xd1\x01 \x01(\x01H#\x88\x01\x01\x12\'\n\x19\x62\x65nchmark_average_max_cpc\x18\xd2\x01 \x01(\x01H$\x88\x01\x01\x12.\n biddable_app_install_conversions\x18\xfe\x01 \x01(\x01H%\x88\x01\x01\x12\x33\n%biddable_app_post_install_conversions\x18\xff\x01 \x01(\x01H&\x88\x01\x01\x12:\n,biddable_cohort_app_post_install_conversions\x18\xfa\x02 \x01(\x01H\'\x88\x01\x01\x12\x1b\n\rbenchmark_ctr\x18\xd3\x01 \x01(\x01H(\x88\x01\x01\x12\x19\n\x0b\x62ounce_rate\x18\xd4\x01 \x01(\x01H)\x88\x01\x01\x12\x14\n\x06\x63licks\x18\x83\x01 \x01(\x03H*\x88\x01\x01\x12\x1c\n\x0e\x63ontrol_clicks\x18\xbb\x03 \x01(\x03H+\x88\x01\x01\x12\x1d\n\x0f\x63ombined_clicks\x18\x9c\x01 \x01(\x03H,\x88\x01\x01\x12\'\n\x19\x63ombined_clicks_per_query\x18\x9d\x01 \x01(\x01H-\x88\x01\x01\x12\x1e\n\x10\x63ombined_queries\x18\x9e\x01 \x01(\x03H.\x88\x01\x01\x12\x32\n$content_budget_lost_impression_share\x18\x9f\x01 \x01(\x01H/\x88\x01\x01\x12&\n\x18\x63ontent_impression_share\x18\xa0\x01 \x01(\x01H0\x88\x01\x01\x12\x38\n*conversion_last_received_request_date_time\x18\xa1\x01 \x01(\tH1\x88\x01\x01\x12-\n\x1f\x63onversion_last_conversion_date\x18\xa2\x01 \x01(\tH2\x88\x01\x01\x12\x30\n\"content_rank_lost_impression_share\x18\xa3\x01 \x01(\x01H3\x88\x01\x01\x12\x30\n\"conversions_from_interactions_rate\x18\xa4\x01 \x01(\x01H4\x88\x01\x01\x12\x1f\n\x11\x63onversions_value\x18\xa5\x01 \x01(\x01H5\x88\x01\x01\x12\x32\n$conversions_value_by_conversion_date\x18\xf2\x01 \x01(\x01H6\x88\x01\x01\x12)\n\x1bnew_customer_lifetime_value\x18\xa5\x02 \x01(\x01H7\x88\x01\x01\x12(\n\x1a\x63onversions_value_per_cost\x18\xa6\x01 \x01(\x01H8\x88\x01\x01\x12\x41\n3conversions_from_interactions_value_per_interaction\x18\xa7\x01 \x01(\x01H9\x88\x01\x01\x12\x19\n\x0b\x63onversions\x18\xa8\x01 \x01(\x01H:\x88\x01\x01\x12,\n\x1e\x63onversions_by_conversion_date\x18\xf3\x01 \x01(\x01H;\x88\x01\x01\x12\x19\n\x0b\x63ost_micros\x18\xa9\x01 \x01(\x03H<\x88\x01\x01\x12&\n\x18\x63ost_per_all_conversions\x18\xaa\x01 \x01(\x01H=\x88\x01\x01\x12!\n\x13\x63ost_per_conversion\x18\xab\x01 \x01(\x01H>\x88\x01\x01\x12:\n,cost_per_current_model_attributed_conversion\x18\xac\x01 \x01(\x01H?\x88\x01\x01\x12&\n\x18\x63ross_device_conversions\x18\xad\x01 \x01(\x01H@\x88\x01\x01\x12\x39\n+cross_device_conversions_by_conversion_date\x18\xf4\x02 \x01(\x01HA\x88\x01\x01\x12,\n\x1e\x63ross_device_conversions_value\x18\xfd\x01 \x01(\x01HB\x88\x01\x01\x12\x33\n%cross_device_conversions_value_micros\x18\xb8\x02 \x01(\x03HC\x88\x01\x01\x12?\n1cross_device_conversions_value_by_conversion_date\x18\xf5\x02 \x01(\x01HD\x88\x01\x01\x12\x11\n\x03\x63tr\x18\xae\x01 \x01(\x01HE\x88\x01\x01\x12\x32\n$current_model_attributed_conversions\x18\xaf\x01 \x01(\x01HF\x88\x01\x01\x12I\n;current_model_attributed_conversions_from_interactions_rate\x18\xb0\x01 \x01(\x01HG\x88\x01\x01\x12Z\nLcurrent_model_attributed_conversions_from_interactions_value_per_interaction\x18\xb1\x01 \x01(\x01HH\x88\x01\x01\x12\x38\n*current_model_attributed_conversions_value\x18\xb2\x01 \x01(\x01HI\x88\x01\x01\x12\x41\n3current_model_attributed_conversions_value_per_cost\x18\xb3\x01 \x01(\x01HJ\x88\x01\x01\x12\x1d\n\x0f\x65ngagement_rate\x18\xb4\x01 \x01(\x01HK\x88\x01\x01\x12\x19\n\x0b\x65ngagements\x18\xb5\x01 \x01(\x03HL\x88\x01\x01\x12-\n\x1fhotel_average_lead_value_micros\x18\xd5\x01 \x01(\x01HM\x88\x01\x01\x12*\n\x1chotel_commission_rate_micros\x18\x80\x02 \x01(\x03HN\x88\x01\x01\x12,\n\x1ehotel_expected_commission_cost\x18\x81\x02 \x01(\x01HO\x88\x01\x01\x12/\n!hotel_price_difference_percentage\x18\xd6\x01 \x01(\x01HP\x88\x01\x01\x12(\n\x1ahotel_eligible_impressions\x18\xd7\x01 \x01(\x03HQ\x88\x01\x01\x12t\n!historical_creative_quality_score\x18P \x01(\x0e\x32I.google.ads.googleads.v24.enums.QualityScoreBucketEnum.QualityScoreBucket\x12x\n%historical_landing_page_quality_score\x18Q \x01(\x0e\x32I.google.ads.googleads.v24.enums.QualityScoreBucketEnum.QualityScoreBucket\x12&\n\x18historical_quality_score\x18\xd8\x01 \x01(\x03HR\x88\x01\x01\x12r\n\x1fhistorical_search_predicted_ctr\x18S \x01(\x0e\x32I.google.ads.googleads.v24.enums.QualityScoreBucketEnum.QualityScoreBucket\x12\x1c\n\x0egmail_forwards\x18\xd9\x01 \x01(\x03HS\x88\x01\x01\x12\x19\n\x0bgmail_saves\x18\xda\x01 \x01(\x03HT\x88\x01\x01\x12$\n\x16gmail_secondary_clicks\x18\xdb\x01 \x01(\x03HU\x88\x01\x01\x12*\n\x1cimpressions_from_store_reach\x18\xdc\x01 \x01(\x03HV\x88\x01\x01\x12\x19\n\x0bimpressions\x18\xdd\x01 \x01(\x03HW\x88\x01\x01\x12\x1e\n\x10interaction_rate\x18\xde\x01 \x01(\x01HX\x88\x01\x01\x12\x1a\n\x0cinteractions\x18\xdf\x01 \x01(\x03HY\x88\x01\x01\x12n\n\x17interaction_event_types\x18\x64 \x03(\x0e\x32M.google.ads.googleads.v24.enums.InteractionEventTypeEnum.InteractionEventType\x12 \n\x12invalid_click_rate\x18\xe0\x01 \x01(\x01HZ\x88\x01\x01\x12\x1c\n\x0einvalid_clicks\x18\xe1\x01 \x01(\x03H[\x88\x01\x01\x12(\n\x1ageneral_invalid_click_rate\x18\xf2\x02 \x01(\x01H\\\x88\x01\x01\x12$\n\x16general_invalid_clicks\x18\xf3\x02 \x01(\x03H]\x88\x01\x01\x12\x1b\n\rmessage_chats\x18\xe2\x01 \x01(\x03H^\x88\x01\x01\x12!\n\x13message_impressions\x18\xe3\x01 \x01(\x03H_\x88\x01\x01\x12\x1f\n\x11message_chat_rate\x18\xe4\x01 \x01(\x01H`\x88\x01\x01\x12/\n!mobile_friendly_clicks_percentage\x18\xe5\x01 \x01(\x01Ha\x88\x01\x01\x12\'\n\x19optimization_score_uplift\x18\xf7\x01 \x01(\x01Hb\x88\x01\x01\x12$\n\x16optimization_score_url\x18\xf8\x01 \x01(\tHc\x88\x01\x01\x12\x1c\n\x0eorganic_clicks\x18\xe6\x01 \x01(\x03Hd\x88\x01\x01\x12&\n\x18organic_clicks_per_query\x18\xe7\x01 \x01(\x01He\x88\x01\x01\x12!\n\x13organic_impressions\x18\xe8\x01 \x01(\x03Hf\x88\x01\x01\x12+\n\x1dorganic_impressions_per_query\x18\xe9\x01 \x01(\x01Hg\x88\x01\x01\x12\x1d\n\x0forganic_queries\x18\xea\x01 \x01(\x03Hh\x88\x01\x01\x12\"\n\x14percent_new_visitors\x18\xeb\x01 \x01(\x01Hi\x88\x01\x01\x12\x19\n\x0bphone_calls\x18\xec\x01 \x01(\x03Hj\x88\x01\x01\x12\x1f\n\x11phone_impressions\x18\xed\x01 \x01(\x03Hk\x88\x01\x01\x12 \n\x12phone_through_rate\x18\xee\x01 \x01(\x01Hl\x88\x01\x01\x12\x1a\n\x0crelative_ctr\x18\xef\x01 \x01(\x01Hm\x88\x01\x01\x12\x32\n$search_absolute_top_impression_share\x18\x88\x01 \x01(\x01Hn\x88\x01\x01\x12>\n0search_budget_lost_absolute_top_impression_share\x18\x89\x01 \x01(\x01Ho\x88\x01\x01\x12\x31\n#search_budget_lost_impression_share\x18\x8a\x01 \x01(\x01Hp\x88\x01\x01\x12\x35\n\'search_budget_lost_top_impression_share\x18\x8b\x01 \x01(\x01Hq\x88\x01\x01\x12 \n\x12search_click_share\x18\x8c\x01 \x01(\x01Hr\x88\x01\x01\x12\x31\n#search_exact_match_impression_share\x18\x8d\x01 \x01(\x01Hs\x88\x01\x01\x12%\n\x17search_impression_share\x18\x8e\x01 \x01(\x01Ht\x88\x01\x01\x12<\n.search_rank_lost_absolute_top_impression_share\x18\x8f\x01 \x01(\x01Hu\x88\x01\x01\x12/\n!search_rank_lost_impression_share\x18\x90\x01 \x01(\x01Hv\x88\x01\x01\x12\x33\n%search_rank_lost_top_impression_share\x18\x91\x01 \x01(\x01Hw\x88\x01\x01\x12)\n\x1bsearch_top_impression_share\x18\x92\x01 \x01(\x01Hx\x88\x01\x01\x12O\n\rsearch_volume\x18\xa7\x02 \x01(\x0b\x32\x32.google.ads.googleads.v24.common.SearchVolumeRangeHy\x88\x01\x01\x12\x19\n\x0bspeed_score\x18\x93\x01 \x01(\x03Hz\x88\x01\x01\x12\'\n\x19\x61verage_target_cpa_micros\x18\xa2\x02 \x01(\x03H{\x88\x01\x01\x12!\n\x13\x61verage_target_roas\x18\xfa\x01 \x01(\x01H|\x88\x01\x01\x12\'\n\x19top_impression_percentage\x18\x94\x01 \x01(\x01H}\x88\x01\x01\x12>\n0valid_accelerated_mobile_pages_clicks_percentage\x18\x95\x01 \x01(\x01H~\x88\x01\x01\x12\'\n\x19value_per_all_conversions\x18\x96\x01 \x01(\x01H\x7f\x88\x01\x01\x12;\n,value_per_all_conversions_by_conversion_date\x18\xf4\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12#\n\x14value_per_conversion\x18\x97\x01 \x01(\x01H\x81\x01\x88\x01\x01\x12\x37\n(value_per_conversions_by_conversion_date\x18\xf5\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12<\n-value_per_current_model_attributed_conversion\x18\x98\x01 \x01(\x01H\x83\x01\x88\x01\x01\x12\'\n\x18video_quartile_p100_rate\x18\x84\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12&\n\x17video_quartile_p25_rate\x18\x85\x01 \x01(\x01H\x85\x01\x88\x01\x01\x12&\n\x17video_quartile_p50_rate\x18\x86\x01 \x01(\x01H\x86\x01\x88\x01\x01\x12&\n\x17video_quartile_p75_rate\x18\x87\x01 \x01(\x01H\x87\x01\x88\x01\x01\x12\'\n\x18video_trueview_view_rate\x18\x96\x03 \x01(\x01H\x88\x01\x88\x01\x01\x12#\n\x14video_trueview_views\x18\x97\x03 \x01(\x03H\x89\x01\x88\x01\x01\x12\'\n\x18view_through_conversions\x18\x9b\x01 \x01(\x03H\x8a\x01\x88\x01\x01\x12\x1f\n\x16sk_ad_network_installs\x18\xf6\x01 \x01(\x03\x12(\n\x1fsk_ad_network_total_conversions\x18\xa4\x02 \x01(\x03\x12#\n\x1apublisher_purchased_clicks\x18\x88\x02 \x01(\x03\x12!\n\x18publisher_organic_clicks\x18\x89\x02 \x01(\x03\x12!\n\x18publisher_unknown_clicks\x18\x8a\x02 \x01(\x03\x12@\n1all_conversions_from_location_asset_click_to_call\x18\x8b\x02 \x01(\x01H\x8b\x01\x88\x01\x01\x12=\n.all_conversions_from_location_asset_directions\x18\x8c\x02 \x01(\x01H\x8c\x01\x88\x01\x01\x12\x37\n(all_conversions_from_location_asset_menu\x18\x8d\x02 \x01(\x01H\x8d\x01\x88\x01\x01\x12\x38\n)all_conversions_from_location_asset_order\x18\x8e\x02 \x01(\x01H\x8e\x01\x88\x01\x01\x12\x43\n4all_conversions_from_location_asset_other_engagement\x18\x8f\x02 \x01(\x01H\x8f\x01\x88\x01\x01\x12?\n0all_conversions_from_location_asset_store_visits\x18\x90\x02 \x01(\x01H\x90\x01\x88\x01\x01\x12:\n+all_conversions_from_location_asset_website\x18\x91\x02 \x01(\x01H\x91\x01\x88\x01\x01\x12\x43\n4eligible_impressions_from_location_asset_store_reach\x18\x92\x02 \x01(\x03H\x92\x01\x88\x01\x01\x12I\n:view_through_conversions_from_location_asset_click_to_call\x18\x93\x02 \x01(\x01H\x93\x01\x88\x01\x01\x12\x46\n7view_through_conversions_from_location_asset_directions\x18\x94\x02 \x01(\x01H\x94\x01\x88\x01\x01\x12@\n1view_through_conversions_from_location_asset_menu\x18\x95\x02 \x01(\x01H\x95\x01\x88\x01\x01\x12\x41\n2view_through_conversions_from_location_asset_order\x18\x96\x02 \x01(\x01H\x96\x01\x88\x01\x01\x12L\n=view_through_conversions_from_location_asset_other_engagement\x18\x97\x02 \x01(\x01H\x97\x01\x88\x01\x01\x12H\n9view_through_conversions_from_location_asset_store_visits\x18\x98\x02 \x01(\x01H\x98\x01\x88\x01\x01\x12\x43\n4view_through_conversions_from_location_asset_website\x18\x99\x02 \x01(\x01H\x99\x01\x88\x01\x01\x12\x15\n\x06orders\x18\xa8\x02 \x01(\x01H\x9a\x01\x88\x01\x01\x12)\n\x1a\x61verage_order_value_micros\x18\xa9\x02 \x01(\x03H\x9b\x01\x88\x01\x01\x12 \n\x11\x61verage_cart_size\x18\xaa\x02 \x01(\x01H\x9c\x01\x88\x01\x01\x12(\n\x19\x63ost_of_goods_sold_micros\x18\xab\x02 \x01(\x03H\x9d\x01\x88\x01\x01\x12\"\n\x13gross_profit_micros\x18\xac\x02 \x01(\x03H\x9e\x01\x88\x01\x01\x12\"\n\x13gross_profit_margin\x18\xad\x02 \x01(\x01H\x9f\x01\x88\x01\x01\x12\x1d\n\x0erevenue_micros\x18\xae\x02 \x01(\x03H\xa0\x01\x88\x01\x01\x12\x19\n\nunits_sold\x18\xaf\x02 \x01(\x01H\xa1\x01\x88\x01\x01\x12\x33\n$cross_sell_cost_of_goods_sold_micros\x18\xb0\x02 \x01(\x03H\xa2\x01\x88\x01\x01\x12-\n\x1e\x63ross_sell_gross_profit_micros\x18\xb1\x02 \x01(\x03H\xa3\x01\x88\x01\x01\x12(\n\x19\x63ross_sell_revenue_micros\x18\xb2\x02 \x01(\x03H\xa4\x01\x88\x01\x01\x12$\n\x15\x63ross_sell_units_sold\x18\xb3\x02 \x01(\x01H\xa5\x01\x88\x01\x01\x12-\n\x1elead_cost_of_goods_sold_micros\x18\xb4\x02 \x01(\x03H\xa6\x01\x88\x01\x01\x12\'\n\x18lead_gross_profit_micros\x18\xb5\x02 \x01(\x03H\xa7\x01\x88\x01\x01\x12\"\n\x13lead_revenue_micros\x18\xb6\x02 \x01(\x03H\xa8\x01\x88\x01\x01\x12\x1e\n\x0flead_units_sold\x18\xb7\x02 \x01(\x01H\xa9\x01\x88\x01\x01\x12\x1b\n\x0cunique_users\x18\xbf\x02 \x01(\x03H\xaa\x01\x88\x01\x01\x12\x34\n%average_impression_frequency_per_user\x18\xc0\x02 \x01(\x01H\xab\x01\x88\x01\x01\x12$\n\x15linked_entities_count\x18\xd5\x02 \x01(\x03H\xac\x01\x88\x01\x01\x12\x1f\n\x16linked_sample_entities\x18\xd6\x02 \x03(\t\x12\'\n\x18\x61sset_pinned_total_count\x18\xdc\x02 \x01(\x03H\xad\x01\x88\x01\x01\x12:\n+asset_pinned_as_headline_position_one_count\x18\xdd\x02 \x01(\x03H\xae\x01\x88\x01\x01\x12:\n+asset_pinned_as_headline_position_two_count\x18\xde\x02 \x01(\x03H\xaf\x01\x88\x01\x01\x12<\n-asset_pinned_as_headline_position_three_count\x18\xdf\x02 \x01(\x03H\xb0\x01\x88\x01\x01\x12=\n.asset_pinned_as_description_position_one_count\x18\xe0\x02 \x01(\x03H\xb1\x01\x88\x01\x01\x12=\n.asset_pinned_as_description_position_two_count\x18\xe1\x02 \x01(\x03H\xb2\x01\x88\x01\x01\x12\x43\n4store_visits_last_click_model_attributed_conversions\x18\xed\x02 \x01(\x01H\xb3\x01\x88\x01\x01\x12+\n\x1cresults_conversions_purchase\x18\xee\x02 \x01(\x01H\xb4\x01\x88\x01\x01\x12/\n video_trueview_view_rate_in_feed\x18\x98\x03 \x01(\x01H\xb5\x01\x88\x01\x01\x12\x31\n\"video_trueview_view_rate_in_stream\x18\x99\x03 \x01(\x01H\xb6\x01\x88\x01\x01\x12.\n\x1fvideo_trueview_view_rate_shorts\x18\x9a\x03 \x01(\x01H\xb7\x01\x88\x01\x01\x12#\n\x14\x63oviewed_impressions\x18\xfc\x02 \x01(\x03H\xb8\x01\x88\x01\x01\x12\"\n\x13primary_impressions\x18\xfd\x02 \x01(\x03H\xb9\x01\x88\x01\x01\x12\x45\n6platform_comparable_conversions_from_interactions_rate\x18\xfe\x02 \x01(\x01H\xba\x01\x88\x01\x01\x12.\n\x1fplatform_comparable_conversions\x18\xff\x02 \x01(\x01H\xbb\x01\x88\x01\x01\x12\x34\n%platform_comparable_conversions_value\x18\x80\x03 \x01(\x01H\xbc\x01\x88\x01\x01\x12=\n.platform_comparable_conversions_value_per_cost\x18\x81\x03 \x01(\x01H\xbd\x01\x88\x01\x01\x12\x41\n2platform_comparable_conversions_by_conversion_date\x18\x82\x03 \x01(\x01H\xbe\x01\x88\x01\x01\x12G\n8platform_comparable_conversions_value_by_conversion_date\x18\x83\x03 \x01(\x01H\xbf\x01\x88\x01\x01\x12V\nGplatform_comparable_conversions_from_interactions_value_per_interaction\x18\x84\x03 \x01(\x01H\xc0\x01\x88\x01\x01\x12\x36\n\'cost_per_platform_comparable_conversion\x18\x85\x03 \x01(\x01H\xc1\x01\x88\x01\x01\x12\x37\n(value_per_platform_comparable_conversion\x18\x86\x03 \x01(\x01H\xc2\x01\x88\x01\x01\x12K\n<value_per_platform_comparable_conversions_by_conversion_date\x18\x87\x03 \x01(\x01H\xc3\x01\x88\x01\x01\x12I\n:cost_converted_currency_per_platform_comparable_conversion\x18\x88\x03 \x01(\x01H\xc4\x01\x88\x01\x01\x12$\n\x15unique_users_two_plus\x18\x89\x03 \x01(\x03H\xc5\x01\x88\x01\x01\x12&\n\x17unique_users_three_plus\x18\x8a\x03 \x01(\x03H\xc6\x01\x88\x01\x01\x12%\n\x16unique_users_four_plus\x18\x8b\x03 \x01(\x03H\xc7\x01\x88\x01\x01\x12%\n\x16unique_users_five_plus\x18\x8c\x03 \x01(\x03H\xc8\x01\x88\x01\x01\x12$\n\x15unique_users_ten_plus\x18\x8d\x03 \x01(\x03H\xc9\x01\x88\x01\x01\x12\x1f\n\x10value_adjustment\x18\x8e\x03 \x01(\x01H\xca\x01\x88\x01\x01\x12#\n\x14\x61ll_value_adjustment\x18\x8f\x03 \x01(\x01H\xcb\x01\x88\x01\x01\x12+\n\x1c\x63licks_unique_query_clusters\x18\x90\x03 \x01(\x03H\xcc\x01\x88\x01\x01\x12\x30\n!conversions_unique_query_clusters\x18\x91\x03 \x01(\x03H\xcd\x01\x88\x01\x01\x12\x30\n!impressions_unique_query_clusters\x18\x92\x03 \x01(\x03H\xce\x01\x88\x01\x01\x12/\n video_watch_time_duration_millis\x18\x93\x03 \x01(\x03H\xcf\x01\x88\x01\x01\x12\x37\n(average_video_watch_time_duration_millis\x18\x94\x03 \x01(\x03H\xd0\x01\x88\x01\x01\x12\x12\n\x03svr\x18\x9b\x03 \x01(\x03H\xd1\x01\x88\x01\x01\x12<\n-active_view_audibility_measurable_impressions\x18\x9c\x03 \x01(\x03H\xd2\x01\x88\x01\x01\x12\x41\n2active_view_audibility_measurable_impressions_rate\x18\x9d\x03 \x01(\x01H\xd3\x01\x88\x01\x01\x12I\n:active_view_audibility_invalid_measurable_impressions_rate\x18\x9e\x03 \x01(\x01H\xd4\x01\x88\x01\x01\x12N\n?active_view_audibility_invalid_givt_measurable_impressions_rate\x18\x9f\x03 \x01(\x01H\xd5\x01\x88\x01\x01\x12.\n\x1f\x61\x63tive_view_audible_impressions\x18\xa0\x03 \x01(\x03H\xd6\x01\x88\x01\x01\x12\x33\n$active_view_audible_impressions_rate\x18\xa1\x03 \x01(\x01H\xd7\x01\x88\x01\x01\x12:\n+active_view_audible_two_seconds_impressions\x18\xa2\x03 \x01(\x03H\xd8\x01\x88\x01\x01\x12?\n0active_view_audible_two_seconds_impressions_rate\x18\xa3\x03 \x01(\x01H\xd9\x01\x88\x01\x01\x12=\n.active_view_audible_thirty_seconds_impressions\x18\xa4\x03 \x01(\x03H\xda\x01\x88\x01\x01\x12\x42\n3active_view_audible_thirty_seconds_impressions_rate\x18\xa5\x03 \x01(\x01H\xdb\x01\x88\x01\x01\x12\x34\n%active_view_audible_quartile_p25_rate\x18\xa6\x03 \x01(\x01H\xdc\x01\x88\x01\x01\x12\x34\n%active_view_audible_quartile_p50_rate\x18\xa7\x03 \x01(\x01H\xdd\x01\x88\x01\x01\x12\x34\n%active_view_audible_quartile_p75_rate\x18\xa8\x03 \x01(\x01H\xde\x01\x88\x01\x01\x12\x35\n&active_view_audible_quartile_p100_rate\x18\xa9\x03 \x01(\x01H\xdf\x01\x88\x01\x01\x12G\n8biddable_indirect_install_first_in_app_conversion_micros\x18\xaa\x03 \x01(\x03H\xe0\x01\x88\x01\x01\x12$\n\x15\x61ll_average_cart_size\x18\xab\x03 \x01(\x01H\xe1\x01\x88\x01\x01\x12-\n\x1e\x61ll_average_order_value_micros\x18\xac\x03 \x01(\x03H\xe2\x01\x88\x01\x01\x12,\n\x1d\x61ll_cost_of_goods_sold_micros\x18\xad\x03 \x01(\x03H\xe3\x01\x88\x01\x01\x12\x37\n(all_cross_sell_cost_of_goods_sold_micros\x18\xae\x03 \x01(\x03H\xe4\x01\x88\x01\x01\x12\x31\n\"all_cross_sell_gross_profit_micros\x18\xaf\x03 \x01(\x03H\xe5\x01\x88\x01\x01\x12,\n\x1d\x61ll_cross_sell_revenue_micros\x18\xb0\x03 \x01(\x03H\xe6\x01\x88\x01\x01\x12(\n\x19\x61ll_cross_sell_units_sold\x18\xb1\x03 \x01(\x01H\xe7\x01\x88\x01\x01\x12&\n\x17\x61ll_gross_profit_margin\x18\xb2\x03 \x01(\x01H\xe8\x01\x88\x01\x01\x12&\n\x17\x61ll_gross_profit_micros\x18\xb3\x03 \x01(\x03H\xe9\x01\x88\x01\x01\x12\x31\n\"all_lead_cost_of_goods_sold_micros\x18\xb4\x03 \x01(\x03H\xea\x01\x88\x01\x01\x12+\n\x1c\x61ll_lead_gross_profit_micros\x18\xb5\x03 \x01(\x03H\xeb\x01\x88\x01\x01\x12&\n\x17\x61ll_lead_revenue_micros\x18\xb6\x03 \x01(\x03H\xec\x01\x88\x01\x01\x12\"\n\x13\x61ll_lead_units_sold\x18\xb7\x03 \x01(\x01H\xed\x01\x88\x01\x01\x12\x19\n\nall_orders\x18\xb8\x03 \x01(\x01H\xee\x01\x88\x01\x01\x12!\n\x12\x61ll_revenue_micros\x18\xb9\x03 \x01(\x03H\xef\x01\x88\x01\x01\x12\x1d\n\x0e\x61ll_units_sold\x18\xba\x03 \x01(\x01H\xf0\x01\x88\x01\x01\x12*\n\x1b\x63ontrol_cost_per_conversion\x18\xbe\x03 \x01(\x01H\xf1\x01\x88\x01\x01\x12\x32\n#cost_per_conversion_margin_of_error\x18\xbf\x03 \x01(\x01H\xf2\x01\x88\x01\x01\x12*\n\x1b\x63ost_per_conversion_p_value\x18\xc0\x03 \x01(\x01H\xf3\x01\x88\x01\x01\x12\x38\n)cost_per_conversion_change_point_estimate\x18\xc1\x03 \x01(\x01H\xf4\x01\x88\x01\x01\x12\"\n\x13\x63ontrol_conversions\x18\xc2\x03 \x01(\x01H\xf5\x01\x88\x01\x01\x12:\n+conversions_absolute_change_margin_of_error\x18\xc3\x03 \x01(\x01H\xf6\x01\x88\x01\x01\x12\x32\n#conversions_absolute_change_p_value\x18\xc4\x03 \x01(\x01H\xf7\x01\x88\x01\x01\x12\x39\n*conversions_absolute_change_point_estimate\x18\xc5\x03 \x01(\x01H\xf8\x01\x88\x01\x01\x12\x30\n!control_conversion_value_per_cost\x18\xc6\x03 \x01(\x01H\xf9\x01\x88\x01\x01\x12\x38\n)conversion_value_per_cost_margin_of_error\x18\xc7\x03 \x01(\x01H\xfa\x01\x88\x01\x01\x12\x30\n!conversion_value_per_cost_p_value\x18\xc8\x03 \x01(\x01H\xfb\x01\x88\x01\x01\x12>\n/conversion_value_per_cost_change_point_estimate\x18\xc9\x03 \x01(\x01H\xfc\x01\x88\x01\x01\x12\"\n\x13\x63ontrol_cost_micros\x18\xca\x03 \x01(\x03H\xfd\x01\x88\x01\x01\x12*\n\x1b\x63ost_micros_margin_of_error\x18\xcb\x03 \x01(\x01H\xfe\x01\x88\x01\x01\x12\"\n\x13\x63ost_micros_p_value\x18\xcc\x03 \x01(\x01H\xff\x01\x88\x01\x01\x12\x30\n!cost_micros_change_point_estimate\x18\xcd\x03 \x01(\x01H\x80\x02\x88\x01\x01\x12\"\n\x13\x63ontrol_impressions\x18\xce\x03 \x01(\x03H\x81\x02\x88\x01\x01\x12*\n\x1bimpressions_margin_of_error\x18\xcf\x03 \x01(\x01H\x82\x02\x88\x01\x01\x12\"\n\x13impressions_p_value\x18\xd0\x03 \x01(\x01H\x83\x02\x88\x01\x01\x12)\n\x1aimpressions_point_estimate\x18\xd1\x03 \x01(\x01H\x84\x02\x88\x01\x01\x12%\n\x16\x63licks_margin_of_error\x18\xd2\x03 \x01(\x01H\x85\x02\x88\x01\x01\x12\x1d\n\x0e\x63licks_p_value\x18\xd3\x03 \x01(\x01H\x86\x02\x88\x01\x01\x12$\n\x15\x63licks_point_estimate\x18\xd4\x03 \x01(\x01H\x87\x02\x88\x01\x01\x12\'\n\x18\x63ontrol_conversion_value\x18\xd5\x03 \x01(\x01H\x88\x02\x88\x01\x01\x12/\n conversion_value_margin_of_error\x18\xd6\x03 \x01(\x01H\x89\x02\x88\x01\x01\x12\'\n\x18\x63onversion_value_p_value\x18\xd7\x03 \x01(\x01H\x8a\x02\x88\x01\x01\x12\x35\n&conversion_value_change_point_estimate\x18\xd8\x03 \x01(\x01H\x8b\x02\x88\x01\x01\x42%\n#_absolute_top_impression_percentageB\x12\n\x10_active_view_cpmB\x12\n\x10_active_view_ctrB\x1a\n\x18_active_view_impressionsB\x1c\n\x1a_active_view_measurabilityB%\n#_active_view_measurable_cost_microsB%\n#_active_view_measurable_impressionsB\x1a\n\x18_active_view_viewabilityB)\n\'_all_conversions_from_interactions_rateB\x18\n\x16_all_conversions_valueB+\n)_all_conversions_value_by_conversion_dateB\"\n _all_new_customer_lifetime_valueB\x12\n\x10_all_conversionsB%\n#_all_conversions_by_conversion_dateB!\n\x1f_all_conversions_value_per_costB%\n#_all_conversions_from_click_to_callB\"\n _all_conversions_from_directionsB:\n8_all_conversions_from_interactions_value_per_interactionB\x1c\n\x1a_all_conversions_from_menuB\x1d\n\x1b_all_conversions_from_orderB(\n&_all_conversions_from_other_engagementB#\n!_all_conversions_from_store_visitB%\n#_all_conversions_from_store_websiteB<\n:_auction_insight_search_absolute_top_impression_percentageB*\n(_auction_insight_search_impression_shareB*\n(_auction_insight_search_outranking_shareB&\n$_auction_insight_search_overlap_rateB-\n+_auction_insight_search_position_above_rateB3\n1_auction_insight_search_top_impression_percentageB\x0f\n\r_average_costB\x0e\n\x0c_average_cpcB\x0e\n\x0c_average_cpeB\x0e\n\x0c_average_cpmB\x17\n\x15_trueview_average_cpvB\x15\n\x13_average_page_viewsB\x17\n\x15_average_time_on_siteB\x1c\n\x1a_benchmark_average_max_cpcB#\n!_biddable_app_install_conversionsB(\n&_biddable_app_post_install_conversionsB/\n-_biddable_cohort_app_post_install_conversionsB\x10\n\x0e_benchmark_ctrB\x0e\n\x0c_bounce_rateB\t\n\x07_clicksB\x11\n\x0f_control_clicksB\x12\n\x10_combined_clicksB\x1c\n\x1a_combined_clicks_per_queryB\x13\n\x11_combined_queriesB\'\n%_content_budget_lost_impression_shareB\x1b\n\x19_content_impression_shareB-\n+_conversion_last_received_request_date_timeB\"\n _conversion_last_conversion_dateB%\n#_content_rank_lost_impression_shareB%\n#_conversions_from_interactions_rateB\x14\n\x12_conversions_valueB\'\n%_conversions_value_by_conversion_dateB\x1e\n\x1c_new_customer_lifetime_valueB\x1d\n\x1b_conversions_value_per_costB6\n4_conversions_from_interactions_value_per_interactionB\x0e\n\x0c_conversionsB!\n\x1f_conversions_by_conversion_dateB\x0e\n\x0c_cost_microsB\x1b\n\x19_cost_per_all_conversionsB\x16\n\x14_cost_per_conversionB/\n-_cost_per_current_model_attributed_conversionB\x1b\n\x19_cross_device_conversionsB.\n,_cross_device_conversions_by_conversion_dateB!\n\x1f_cross_device_conversions_valueB(\n&_cross_device_conversions_value_microsB4\n2_cross_device_conversions_value_by_conversion_dateB\x06\n\x04_ctrB\'\n%_current_model_attributed_conversionsB>\n<_current_model_attributed_conversions_from_interactions_rateBO\nM_current_model_attributed_conversions_from_interactions_value_per_interactionB-\n+_current_model_attributed_conversions_valueB6\n4_current_model_attributed_conversions_value_per_costB\x12\n\x10_engagement_rateB\x0e\n\x0c_engagementsB\"\n _hotel_average_lead_value_microsB\x1f\n\x1d_hotel_commission_rate_microsB!\n\x1f_hotel_expected_commission_costB$\n\"_hotel_price_difference_percentageB\x1d\n\x1b_hotel_eligible_impressionsB\x1b\n\x19_historical_quality_scoreB\x11\n\x0f_gmail_forwardsB\x0e\n\x0c_gmail_savesB\x19\n\x17_gmail_secondary_clicksB\x1f\n\x1d_impressions_from_store_reachB\x0e\n\x0c_impressionsB\x13\n\x11_interaction_rateB\x0f\n\r_interactionsB\x15\n\x13_invalid_click_rateB\x11\n\x0f_invalid_clicksB\x1d\n\x1b_general_invalid_click_rateB\x19\n\x17_general_invalid_clicksB\x10\n\x0e_message_chatsB\x16\n\x14_message_impressionsB\x14\n\x12_message_chat_rateB$\n\"_mobile_friendly_clicks_percentageB\x1c\n\x1a_optimization_score_upliftB\x19\n\x17_optimization_score_urlB\x11\n\x0f_organic_clicksB\x1b\n\x19_organic_clicks_per_queryB\x16\n\x14_organic_impressionsB \n\x1e_organic_impressions_per_queryB\x12\n\x10_organic_queriesB\x17\n\x15_percent_new_visitorsB\x0e\n\x0c_phone_callsB\x14\n\x12_phone_impressionsB\x15\n\x13_phone_through_rateB\x0f\n\r_relative_ctrB\'\n%_search_absolute_top_impression_shareB3\n1_search_budget_lost_absolute_top_impression_shareB&\n$_search_budget_lost_impression_shareB*\n(_search_budget_lost_top_impression_shareB\x15\n\x13_search_click_shareB&\n$_search_exact_match_impression_shareB\x1a\n\x18_search_impression_shareB1\n/_search_rank_lost_absolute_top_impression_shareB$\n\"_search_rank_lost_impression_shareB(\n&_search_rank_lost_top_impression_shareB\x1e\n\x1c_search_top_impression_shareB\x10\n\x0e_search_volumeB\x0e\n\x0c_speed_scoreB\x1c\n\x1a_average_target_cpa_microsB\x16\n\x14_average_target_roasB\x1c\n\x1a_top_impression_percentageB3\n1_valid_accelerated_mobile_pages_clicks_percentageB\x1c\n\x1a_value_per_all_conversionsB/\n-_value_per_all_conversions_by_conversion_dateB\x17\n\x15_value_per_conversionB+\n)_value_per_conversions_by_conversion_dateB0\n._value_per_current_model_attributed_conversionB\x1b\n\x19_video_quartile_p100_rateB\x1a\n\x18_video_quartile_p25_rateB\x1a\n\x18_video_quartile_p50_rateB\x1a\n\x18_video_quartile_p75_rateB\x1b\n\x19_video_trueview_view_rateB\x17\n\x15_video_trueview_viewsB\x1b\n\x19_view_through_conversionsB4\n2_all_conversions_from_location_asset_click_to_callB1\n/_all_conversions_from_location_asset_directionsB+\n)_all_conversions_from_location_asset_menuB,\n*_all_conversions_from_location_asset_orderB7\n5_all_conversions_from_location_asset_other_engagementB3\n1_all_conversions_from_location_asset_store_visitsB.\n,_all_conversions_from_location_asset_websiteB7\n5_eligible_impressions_from_location_asset_store_reachB=\n;_view_through_conversions_from_location_asset_click_to_callB:\n8_view_through_conversions_from_location_asset_directionsB4\n2_view_through_conversions_from_location_asset_menuB5\n3_view_through_conversions_from_location_asset_orderB@\n>_view_through_conversions_from_location_asset_other_engagementB<\n:_view_through_conversions_from_location_asset_store_visitsB7\n5_view_through_conversions_from_location_asset_websiteB\t\n\x07_ordersB\x1d\n\x1b_average_order_value_microsB\x14\n\x12_average_cart_sizeB\x1c\n\x1a_cost_of_goods_sold_microsB\x16\n\x14_gross_profit_microsB\x16\n\x14_gross_profit_marginB\x11\n\x0f_revenue_microsB\r\n\x0b_units_soldB\'\n%_cross_sell_cost_of_goods_sold_microsB!\n\x1f_cross_sell_gross_profit_microsB\x1c\n\x1a_cross_sell_revenue_microsB\x18\n\x16_cross_sell_units_soldB!\n\x1f_lead_cost_of_goods_sold_microsB\x1b\n\x19_lead_gross_profit_microsB\x16\n\x14_lead_revenue_microsB\x12\n\x10_lead_units_soldB\x0f\n\r_unique_usersB(\n&_average_impression_frequency_per_userB\x18\n\x16_linked_entities_countB\x1b\n\x19_asset_pinned_total_countB.\n,_asset_pinned_as_headline_position_one_countB.\n,_asset_pinned_as_headline_position_two_countB0\n._asset_pinned_as_headline_position_three_countB1\n/_asset_pinned_as_description_position_one_countB1\n/_asset_pinned_as_description_position_two_countB7\n5_store_visits_last_click_model_attributed_conversionsB\x1f\n\x1d_results_conversions_purchaseB#\n!_video_trueview_view_rate_in_feedB%\n#_video_trueview_view_rate_in_streamB\"\n _video_trueview_view_rate_shortsB\x17\n\x15_coviewed_impressionsB\x16\n\x14_primary_impressionsB9\n7_platform_comparable_conversions_from_interactions_rateB\"\n _platform_comparable_conversionsB(\n&_platform_comparable_conversions_valueB1\n/_platform_comparable_conversions_value_per_costB5\n3_platform_comparable_conversions_by_conversion_dateB;\n9_platform_comparable_conversions_value_by_conversion_dateBJ\nH_platform_comparable_conversions_from_interactions_value_per_interactionB*\n(_cost_per_platform_comparable_conversionB+\n)_value_per_platform_comparable_conversionB?\n=_value_per_platform_comparable_conversions_by_conversion_dateB=\n;_cost_converted_currency_per_platform_comparable_conversionB\x18\n\x16_unique_users_two_plusB\x1a\n\x18_unique_users_three_plusB\x19\n\x17_unique_users_four_plusB\x19\n\x17_unique_users_five_plusB\x18\n\x16_unique_users_ten_plusB\x13\n\x11_value_adjustmentB\x17\n\x15_all_value_adjustmentB\x1f\n\x1d_clicks_unique_query_clustersB$\n\"_conversions_unique_query_clustersB$\n\"_impressions_unique_query_clustersB#\n!_video_watch_time_duration_millisB+\n)_average_video_watch_time_duration_millisB\x06\n\x04_svrB0\n._active_view_audibility_measurable_impressionsB5\n3_active_view_audibility_measurable_impressions_rateB=\n;_active_view_audibility_invalid_measurable_impressions_rateBB\n@_active_view_audibility_invalid_givt_measurable_impressions_rateB\"\n _active_view_audible_impressionsB\'\n%_active_view_audible_impressions_rateB.\n,_active_view_audible_two_seconds_impressionsB3\n1_active_view_audible_two_seconds_impressions_rateB1\n/_active_view_audible_thirty_seconds_impressionsB6\n4_active_view_audible_thirty_seconds_impressions_rateB(\n&_active_view_audible_quartile_p25_rateB(\n&_active_view_audible_quartile_p50_rateB(\n&_active_view_audible_quartile_p75_rateB)\n\'_active_view_audible_quartile_p100_rateB;\n9_biddable_indirect_install_first_in_app_conversion_microsB\x18\n\x16_all_average_cart_sizeB!\n\x1f_all_average_order_value_microsB \n\x1e_all_cost_of_goods_sold_microsB+\n)_all_cross_sell_cost_of_goods_sold_microsB%\n#_all_cross_sell_gross_profit_microsB \n\x1e_all_cross_sell_revenue_microsB\x1c\n\x1a_all_cross_sell_units_soldB\x1a\n\x18_all_gross_profit_marginB\x1a\n\x18_all_gross_profit_microsB%\n#_all_lead_cost_of_goods_sold_microsB\x1f\n\x1d_all_lead_gross_profit_microsB\x1a\n\x18_all_lead_revenue_microsB\x16\n\x14_all_lead_units_soldB\r\n\x0b_all_ordersB\x15\n\x13_all_revenue_microsB\x11\n\x0f_all_units_soldB\x1e\n\x1c_control_cost_per_conversionB&\n$_cost_per_conversion_margin_of_errorB\x1e\n\x1c_cost_per_conversion_p_valueB,\n*_cost_per_conversion_change_point_estimateB\x16\n\x14_control_conversionsB.\n,_conversions_absolute_change_margin_of_errorB&\n$_conversions_absolute_change_p_valueB-\n+_conversions_absolute_change_point_estimateB$\n\"_control_conversion_value_per_costB,\n*_conversion_value_per_cost_margin_of_errorB$\n\"_conversion_value_per_cost_p_valueB2\n0_conversion_value_per_cost_change_point_estimateB\x16\n\x14_control_cost_microsB\x1e\n\x1c_cost_micros_margin_of_errorB\x16\n\x14_cost_micros_p_valueB$\n\"_cost_micros_change_point_estimateB\x16\n\x14_control_impressionsB\x1e\n\x1c_impressions_margin_of_errorB\x16\n\x14_impressions_p_valueB\x1d\n\x1b_impressions_point_estimateB\x19\n\x17_clicks_margin_of_errorB\x11\n\x0f_clicks_p_valueB\x18\n\x16_clicks_point_estimateB\x1b\n\x19_control_conversion_valueB#\n!_conversion_value_margin_of_errorB\x1b\n\x19_conversion_value_p_valueB)\n\'_conversion_value_change_point_estimate\"G\n\x11SearchVolumeRange\x12\x10\n\x03min\x18\x01 \x01(\x03H\x00\x88\x01\x01\x12\x10\n\x03max\x18\x02 \x01(\x03H\x01\x88\x01\x01\x42\x06\n\x04_minB\x06\n\x04_maxB\xec\x01\n#com.google.ads.googleads.v24.commonB\x0cMetricsProtoP\x01ZEgoogle.golang.org/genproto/googleapis/ads/googleads/v24/common;common\xa2\x02\x03GAA\xaa\x02\x1fGoogle.Ads.GoogleAds.V24.Common\xca\x02\x1fGoogle\\Ads\\GoogleAds\\V24\\Common\xea\x02#Google::Ads::GoogleAds::V24::Commonb\x06proto3"
|
|
12
12
|
|
|
13
13
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
14
14
|
pool.add_serialized_file(descriptor_data)
|