google-apis-searchads360_v0 0.22.0 → 0.24.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 824215de2ed3728ecc5b68b30152e36df107843702dec4c471fee28b0c8b67d8
|
|
4
|
+
data.tar.gz: 5289aac114e094f7c6b7fb41bd9d41c86f8fee7a1304f3a098ef6497704958c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2fc359b05f8e9e1e8a3b663304d041a3eecdd29b1450ae027f32313f158a22b1199241624479ce3640525766812a7c8619796ac191487ce21a19d05117c0ffb
|
|
7
|
+
data.tar.gz: 1ef04a058fa3c56c6dd0324debb50c75d2596c0a0c0db65c5b30871296061d0f454feeefc5fe282a72e3da1c2e65bf11c3a73fc59c34ec42571e5bd9de9b9763
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-searchads360_v0
|
|
2
2
|
|
|
3
|
+
### v0.24.0 (2025-12-07)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251204
|
|
6
|
+
|
|
7
|
+
### v0.23.0 (2025-11-23)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251116
|
|
10
|
+
|
|
3
11
|
### v0.22.0 (2025-07-27)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250721
|
|
@@ -299,6 +299,36 @@ module Google
|
|
|
299
299
|
end
|
|
300
300
|
end
|
|
301
301
|
|
|
302
|
+
# A URL for deep linking into an app for the given operating system.
|
|
303
|
+
class GoogleAdsSearchads360V0CommonFinalAppUrl
|
|
304
|
+
include Google::Apis::Core::Hashable
|
|
305
|
+
|
|
306
|
+
# The operating system targeted by this URL. Required.
|
|
307
|
+
# Corresponds to the JSON property `osType`
|
|
308
|
+
# @return [String]
|
|
309
|
+
attr_accessor :os_type
|
|
310
|
+
|
|
311
|
+
# The app deep link URL. Deep links specify a location in an app that
|
|
312
|
+
# corresponds to the content you'd like to show, and should be of the form `
|
|
313
|
+
# scheme`://`host_path` The scheme identifies which app to open. For your app,
|
|
314
|
+
# you can use a custom scheme that starts with the app's name. The host and path
|
|
315
|
+
# specify the unique location in the app where your content exists. Example: "
|
|
316
|
+
# exampleapp://productid_1234". Required.
|
|
317
|
+
# Corresponds to the JSON property `url`
|
|
318
|
+
# @return [String]
|
|
319
|
+
attr_accessor :url
|
|
320
|
+
|
|
321
|
+
def initialize(**args)
|
|
322
|
+
update!(**args)
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
# Update properties of this object
|
|
326
|
+
def update!(**args)
|
|
327
|
+
@os_type = args[:os_type] if args.key?(:os_type)
|
|
328
|
+
@url = args[:url] if args.key?(:url)
|
|
329
|
+
end
|
|
330
|
+
end
|
|
331
|
+
|
|
302
332
|
# A rule specifying the maximum number of times an ad (or some set of ads) can
|
|
303
333
|
# be shown to a user over a particular time period.
|
|
304
334
|
class GoogleAdsSearchads360V0CommonFrequencyCapEntry
|
|
@@ -774,6 +804,17 @@ module Google
|
|
|
774
804
|
# @return [Float]
|
|
775
805
|
attr_accessor :all_conversions_value_per_cost
|
|
776
806
|
|
|
807
|
+
# Average cart size is the average number of products in each order attributed
|
|
808
|
+
# to your ads. How it works: You report conversions with cart data for completed
|
|
809
|
+
# purchases on your website. Average cart size is the total number of products
|
|
810
|
+
# sold divided by the total number of orders you received. Example: You received
|
|
811
|
+
# 2 orders, the first included 3 products and the second included 2. The average
|
|
812
|
+
# cart size is 2.5 products = (3+2)/2. This metric is only available if you
|
|
813
|
+
# report conversions with cart data.
|
|
814
|
+
# Corresponds to the JSON property `averageCartSize`
|
|
815
|
+
# @return [Float]
|
|
816
|
+
attr_accessor :average_cart_size
|
|
817
|
+
|
|
777
818
|
# The average amount you pay per interaction. This amount is the total cost of
|
|
778
819
|
# your ads divided by the total number of interactions.
|
|
779
820
|
# Corresponds to the JSON property `averageCost`
|
|
@@ -796,6 +837,25 @@ module Google
|
|
|
796
837
|
# @return [Float]
|
|
797
838
|
attr_accessor :average_cpm
|
|
798
839
|
|
|
840
|
+
# The average number of times a unique user saw your ad during the requested
|
|
841
|
+
# time period. This metric cannot be aggregated, and can only be requested for
|
|
842
|
+
# date ranges of 92 days or less. This metric is available for following
|
|
843
|
+
# campaign types - Display, Video, Discovery and App.
|
|
844
|
+
# Corresponds to the JSON property `averageImpressionFrequencyPerUser`
|
|
845
|
+
# @return [Float]
|
|
846
|
+
attr_accessor :average_impression_frequency_per_user
|
|
847
|
+
|
|
848
|
+
# Average order value is the average revenue you made per order attributed to
|
|
849
|
+
# your ads. How it works: You report conversions with cart data for completed
|
|
850
|
+
# purchases on your website. Average order value is the total revenue from your
|
|
851
|
+
# orders divided by the total number of orders. Example: You received 3 orders
|
|
852
|
+
# which made $10, $15 and $20 worth of revenue. The average order value is $15 =
|
|
853
|
+
# ($10 + $15 + $20)/3. This metric is only available if you report conversions
|
|
854
|
+
# with cart data.
|
|
855
|
+
# Corresponds to the JSON property `averageOrderValueMicros`
|
|
856
|
+
# @return [Fixnum]
|
|
857
|
+
attr_accessor :average_order_value_micros
|
|
858
|
+
|
|
799
859
|
# The average quality score.
|
|
800
860
|
# Corresponds to the JSON property `averageQualityScore`
|
|
801
861
|
# @return [Float]
|
|
@@ -1059,6 +1119,19 @@ module Google
|
|
|
1059
1119
|
# @return [Fixnum]
|
|
1060
1120
|
attr_accessor :cost_micros
|
|
1061
1121
|
|
|
1122
|
+
# Cost of goods sold (COGS) is the total cost of the products you sold in orders
|
|
1123
|
+
# attributed to your ads. How it works: You can add a cost of goods sold value
|
|
1124
|
+
# to every product in Merchant Center. If you report conversions with cart data,
|
|
1125
|
+
# the products you sold are matched with their cost of goods sold value and this
|
|
1126
|
+
# can be used to calculate the gross profit you made on each order. Example:
|
|
1127
|
+
# Someone clicked on a Shopping ad for a hat then bought the same hat and a
|
|
1128
|
+
# shirt. The hat has a cost of goods sold value of $3, the shirt has a cost of
|
|
1129
|
+
# goods sold value of $5. The cost of goods sold for this order is $8 = $3 + $5.
|
|
1130
|
+
# This metric is only available if you report conversions with cart data.
|
|
1131
|
+
# Corresponds to the JSON property `costOfGoodsSoldMicros`
|
|
1132
|
+
# @return [Fixnum]
|
|
1133
|
+
attr_accessor :cost_of_goods_sold_micros
|
|
1134
|
+
|
|
1062
1135
|
# The cost of ad interactions divided by all conversions.
|
|
1063
1136
|
# Corresponds to the JSON property `costPerAllConversions`
|
|
1064
1137
|
# @return [Float]
|
|
@@ -1202,6 +1275,36 @@ module Google
|
|
|
1202
1275
|
# @return [Fixnum]
|
|
1203
1276
|
attr_accessor :general_invalid_clicks
|
|
1204
1277
|
|
|
1278
|
+
# Gross profit margin is the percentage gross profit you made from orders
|
|
1279
|
+
# attributed to your ads, after taking out the cost of goods sold (COGS). How it
|
|
1280
|
+
# works: You report conversions with cart data for completed purchases on your
|
|
1281
|
+
# website. Gross profit margin is the gross profit you made divided by your
|
|
1282
|
+
# total revenue and multiplied by 100%. Gross profit margin calculations only
|
|
1283
|
+
# include products that have a cost of goods sold value in Merchant Center.
|
|
1284
|
+
# Example: Someone bought a hat and a shirt in an order on your website. The hat
|
|
1285
|
+
# is priced $10 and has a cost of goods sold value of $3. The shirt is priced $
|
|
1286
|
+
# 20 but has no cost of goods sold value. Gross profit margin for this order
|
|
1287
|
+
# will only take into account the hat because it has a cost of goods sold value,
|
|
1288
|
+
# so it's 70% = ($10 - $3)/$10 x 100%. This metric is only available if you
|
|
1289
|
+
# report conversions with cart data.
|
|
1290
|
+
# Corresponds to the JSON property `grossProfitMargin`
|
|
1291
|
+
# @return [Float]
|
|
1292
|
+
attr_accessor :gross_profit_margin
|
|
1293
|
+
|
|
1294
|
+
# Gross profit is the profit you made from orders attributed to your ads minus
|
|
1295
|
+
# the cost of goods sold (COGS). How it works: Gross profit is the revenue you
|
|
1296
|
+
# made from sales attributed to your ads minus cost of goods sold. Gross profit
|
|
1297
|
+
# calculations only include products that have a cost of goods sold value in
|
|
1298
|
+
# Merchant Center. Example: Someone clicked on a Shopping ad for a hat then
|
|
1299
|
+
# bought the same hat and a shirt in an order from your website. The hat is
|
|
1300
|
+
# priced $10 and the shirt is priced $20. The hat has a cost of goods sold value
|
|
1301
|
+
# of $3, but the shirt has no cost of goods sold value. Gross profit for this
|
|
1302
|
+
# order will only take into account the hat, so it's $7 = $10 - $3. This metric
|
|
1303
|
+
# is only available if you report conversions with cart data.
|
|
1304
|
+
# Corresponds to the JSON property `grossProfitMicros`
|
|
1305
|
+
# @return [Fixnum]
|
|
1306
|
+
attr_accessor :gross_profit_micros
|
|
1307
|
+
|
|
1205
1308
|
# The creative historical quality score.
|
|
1206
1309
|
# Corresponds to the JSON property `historicalCreativeQualityScore`
|
|
1207
1310
|
# @return [String]
|
|
@@ -1331,11 +1434,35 @@ module Google
|
|
|
1331
1434
|
# @return [Float]
|
|
1332
1435
|
attr_accessor :mobile_friendly_clicks_percentage
|
|
1333
1436
|
|
|
1437
|
+
# Orders is the total number of purchase conversions you received attributed to
|
|
1438
|
+
# your ads. How it works: You report conversions with cart data for completed
|
|
1439
|
+
# purchases on your website. If a conversion is attributed to previous
|
|
1440
|
+
# interactions with your ads (clicks for text or Shopping ads, views for video
|
|
1441
|
+
# ads etc.) it's counted as an order. Example: Someone clicked on a Shopping ad
|
|
1442
|
+
# for a hat then bought the same hat and a shirt in an order on your website.
|
|
1443
|
+
# Even though they bought 2 products, this would count as 1 order. This metric
|
|
1444
|
+
# is only available if you report conversions with cart data.
|
|
1445
|
+
# Corresponds to the JSON property `orders`
|
|
1446
|
+
# @return [Float]
|
|
1447
|
+
attr_accessor :orders
|
|
1448
|
+
|
|
1334
1449
|
# The raw event conversion metrics.
|
|
1335
1450
|
# Corresponds to the JSON property `rawEventConversionMetrics`
|
|
1336
1451
|
# @return [Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonValue>]
|
|
1337
1452
|
attr_accessor :raw_event_conversion_metrics
|
|
1338
1453
|
|
|
1454
|
+
# Revenue is the total amount you made from orders attributed to your ads. How
|
|
1455
|
+
# it works: You report conversions with cart data for completed purchases on
|
|
1456
|
+
# your website. Revenue is the total value of all the orders you received
|
|
1457
|
+
# attributed to your ads, minus any discount. Example: Someone clicked on a
|
|
1458
|
+
# Shopping ad for a hat then bought the same hat and a shirt in an order from
|
|
1459
|
+
# your website. The hat is priced $10 and the shirt is priced $20. The entire
|
|
1460
|
+
# order has a $5 discount. The revenue from this order is $25 = ($10 + $20) - $5.
|
|
1461
|
+
# This metric is only available if you report conversions with cart data.
|
|
1462
|
+
# Corresponds to the JSON property `revenueMicros`
|
|
1463
|
+
# @return [Fixnum]
|
|
1464
|
+
attr_accessor :revenue_micros
|
|
1465
|
+
|
|
1339
1466
|
# The percentage of the customer's Shopping or Search ad impressions that are
|
|
1340
1467
|
# shown in the most prominent Shopping position. See https://support.google.com/
|
|
1341
1468
|
# sa360/answer/9566729 for details. Any value below 0.1 is reported as 0.0999.
|
|
@@ -1432,6 +1559,25 @@ module Google
|
|
|
1432
1559
|
# @return [Float]
|
|
1433
1560
|
attr_accessor :top_impression_percentage
|
|
1434
1561
|
|
|
1562
|
+
# The number of unique users who saw your ad during the requested time period.
|
|
1563
|
+
# This metric cannot be aggregated, and can only be requested for date ranges of
|
|
1564
|
+
# 92 days or less. This metric is available for following campaign types -
|
|
1565
|
+
# Display, Video, Discovery and App.
|
|
1566
|
+
# Corresponds to the JSON property `uniqueUsers`
|
|
1567
|
+
# @return [Fixnum]
|
|
1568
|
+
attr_accessor :unique_users
|
|
1569
|
+
|
|
1570
|
+
# Units sold is the total number of products sold from orders attributed to your
|
|
1571
|
+
# ads. How it works: You report conversions with cart data for completed
|
|
1572
|
+
# purchases on your website. Units sold is the total number of products sold
|
|
1573
|
+
# from all orders attributed to your ads. Example: Someone clicked on a Shopping
|
|
1574
|
+
# ad for a hat then bought the same hat, a shirt and a jacket. The units sold in
|
|
1575
|
+
# this order is 3. This metric is only available if you report conversions with
|
|
1576
|
+
# cart data.
|
|
1577
|
+
# Corresponds to the JSON property `unitsSold`
|
|
1578
|
+
# @return [Float]
|
|
1579
|
+
attr_accessor :units_sold
|
|
1580
|
+
|
|
1435
1581
|
# The value of all conversions divided by the number of all conversions.
|
|
1436
1582
|
# Corresponds to the JSON property `valuePerAllConversions`
|
|
1437
1583
|
# @return [Float]
|
|
@@ -1486,9 +1632,12 @@ module Google
|
|
|
1486
1632
|
@all_conversions_value = args[:all_conversions_value] if args.key?(:all_conversions_value)
|
|
1487
1633
|
@all_conversions_value_by_conversion_date = args[:all_conversions_value_by_conversion_date] if args.key?(:all_conversions_value_by_conversion_date)
|
|
1488
1634
|
@all_conversions_value_per_cost = args[:all_conversions_value_per_cost] if args.key?(:all_conversions_value_per_cost)
|
|
1635
|
+
@average_cart_size = args[:average_cart_size] if args.key?(:average_cart_size)
|
|
1489
1636
|
@average_cost = args[:average_cost] if args.key?(:average_cost)
|
|
1490
1637
|
@average_cpc = args[:average_cpc] if args.key?(:average_cpc)
|
|
1491
1638
|
@average_cpm = args[:average_cpm] if args.key?(:average_cpm)
|
|
1639
|
+
@average_impression_frequency_per_user = args[:average_impression_frequency_per_user] if args.key?(:average_impression_frequency_per_user)
|
|
1640
|
+
@average_order_value_micros = args[:average_order_value_micros] if args.key?(:average_order_value_micros)
|
|
1492
1641
|
@average_quality_score = args[:average_quality_score] if args.key?(:average_quality_score)
|
|
1493
1642
|
@clicks = args[:clicks] if args.key?(:clicks)
|
|
1494
1643
|
@client_account_conversions = args[:client_account_conversions] if args.key?(:client_account_conversions)
|
|
@@ -1514,6 +1663,7 @@ module Google
|
|
|
1514
1663
|
@conversions_value_by_conversion_date = args[:conversions_value_by_conversion_date] if args.key?(:conversions_value_by_conversion_date)
|
|
1515
1664
|
@conversions_value_per_cost = args[:conversions_value_per_cost] if args.key?(:conversions_value_per_cost)
|
|
1516
1665
|
@cost_micros = args[:cost_micros] if args.key?(:cost_micros)
|
|
1666
|
+
@cost_of_goods_sold_micros = args[:cost_of_goods_sold_micros] if args.key?(:cost_of_goods_sold_micros)
|
|
1517
1667
|
@cost_per_all_conversions = args[:cost_per_all_conversions] if args.key?(:cost_per_all_conversions)
|
|
1518
1668
|
@cost_per_conversion = args[:cost_per_conversion] if args.key?(:cost_per_conversion)
|
|
1519
1669
|
@cost_per_current_model_attributed_conversion = args[:cost_per_current_model_attributed_conversion] if args.key?(:cost_per_current_model_attributed_conversion)
|
|
@@ -1528,6 +1678,8 @@ module Google
|
|
|
1528
1678
|
@ctr = args[:ctr] if args.key?(:ctr)
|
|
1529
1679
|
@general_invalid_click_rate = args[:general_invalid_click_rate] if args.key?(:general_invalid_click_rate)
|
|
1530
1680
|
@general_invalid_clicks = args[:general_invalid_clicks] if args.key?(:general_invalid_clicks)
|
|
1681
|
+
@gross_profit_margin = args[:gross_profit_margin] if args.key?(:gross_profit_margin)
|
|
1682
|
+
@gross_profit_micros = args[:gross_profit_micros] if args.key?(:gross_profit_micros)
|
|
1531
1683
|
@historical_creative_quality_score = args[:historical_creative_quality_score] if args.key?(:historical_creative_quality_score)
|
|
1532
1684
|
@historical_landing_page_quality_score = args[:historical_landing_page_quality_score] if args.key?(:historical_landing_page_quality_score)
|
|
1533
1685
|
@historical_quality_score = args[:historical_quality_score] if args.key?(:historical_quality_score)
|
|
@@ -1543,7 +1695,9 @@ module Google
|
|
|
1543
1695
|
@lead_revenue_micros = args[:lead_revenue_micros] if args.key?(:lead_revenue_micros)
|
|
1544
1696
|
@lead_units_sold = args[:lead_units_sold] if args.key?(:lead_units_sold)
|
|
1545
1697
|
@mobile_friendly_clicks_percentage = args[:mobile_friendly_clicks_percentage] if args.key?(:mobile_friendly_clicks_percentage)
|
|
1698
|
+
@orders = args[:orders] if args.key?(:orders)
|
|
1546
1699
|
@raw_event_conversion_metrics = args[:raw_event_conversion_metrics] if args.key?(:raw_event_conversion_metrics)
|
|
1700
|
+
@revenue_micros = args[:revenue_micros] if args.key?(:revenue_micros)
|
|
1547
1701
|
@search_absolute_top_impression_share = args[:search_absolute_top_impression_share] if args.key?(:search_absolute_top_impression_share)
|
|
1548
1702
|
@search_budget_lost_absolute_top_impression_share = args[:search_budget_lost_absolute_top_impression_share] if args.key?(:search_budget_lost_absolute_top_impression_share)
|
|
1549
1703
|
@search_budget_lost_impression_share = args[:search_budget_lost_impression_share] if args.key?(:search_budget_lost_impression_share)
|
|
@@ -1556,6 +1710,8 @@ module Google
|
|
|
1556
1710
|
@search_rank_lost_top_impression_share = args[:search_rank_lost_top_impression_share] if args.key?(:search_rank_lost_top_impression_share)
|
|
1557
1711
|
@search_top_impression_share = args[:search_top_impression_share] if args.key?(:search_top_impression_share)
|
|
1558
1712
|
@top_impression_percentage = args[:top_impression_percentage] if args.key?(:top_impression_percentage)
|
|
1713
|
+
@unique_users = args[:unique_users] if args.key?(:unique_users)
|
|
1714
|
+
@units_sold = args[:units_sold] if args.key?(:units_sold)
|
|
1559
1715
|
@value_per_all_conversions = args[:value_per_all_conversions] if args.key?(:value_per_all_conversions)
|
|
1560
1716
|
@value_per_all_conversions_by_conversion_date = args[:value_per_all_conversions_by_conversion_date] if args.key?(:value_per_all_conversions_by_conversion_date)
|
|
1561
1717
|
@value_per_conversion = args[:value_per_conversion] if args.key?(:value_per_conversion)
|
|
@@ -1906,6 +2062,11 @@ module Google
|
|
|
1906
2062
|
# @return [String]
|
|
1907
2063
|
attr_accessor :geo_target_metro
|
|
1908
2064
|
|
|
2065
|
+
# Resource name of the geo target constant that represents a postal code.
|
|
2066
|
+
# Corresponds to the JSON property `geoTargetPostalCode`
|
|
2067
|
+
# @return [String]
|
|
2068
|
+
attr_accessor :geo_target_postal_code
|
|
2069
|
+
|
|
1909
2070
|
# Resource name of the geo target constant that represents a region.
|
|
1910
2071
|
# Corresponds to the JSON property `geoTargetRegion`
|
|
1911
2072
|
# @return [String]
|
|
@@ -2184,6 +2345,7 @@ module Google
|
|
|
2184
2345
|
@geo_target_city = args[:geo_target_city] if args.key?(:geo_target_city)
|
|
2185
2346
|
@geo_target_country = args[:geo_target_country] if args.key?(:geo_target_country)
|
|
2186
2347
|
@geo_target_metro = args[:geo_target_metro] if args.key?(:geo_target_metro)
|
|
2348
|
+
@geo_target_postal_code = args[:geo_target_postal_code] if args.key?(:geo_target_postal_code)
|
|
2187
2349
|
@geo_target_region = args[:geo_target_region] if args.key?(:geo_target_region)
|
|
2188
2350
|
@hour = args[:hour] if args.key?(:hour)
|
|
2189
2351
|
@keyword = args[:keyword] if args.key?(:keyword)
|
|
@@ -4043,6 +4205,23 @@ module Google
|
|
|
4043
4205
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo]
|
|
4044
4206
|
attr_accessor :expanded_text_ad
|
|
4045
4207
|
|
|
4208
|
+
# A list of final app URLs that will be used on mobile if the user has the
|
|
4209
|
+
# specific app installed.
|
|
4210
|
+
# Corresponds to the JSON property `finalAppUrls`
|
|
4211
|
+
# @return [Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFinalAppUrl>]
|
|
4212
|
+
attr_accessor :final_app_urls
|
|
4213
|
+
|
|
4214
|
+
# The list of possible final mobile URLs after all cross-domain redirects for
|
|
4215
|
+
# the ad.
|
|
4216
|
+
# Corresponds to the JSON property `finalMobileUrls`
|
|
4217
|
+
# @return [Array<String>]
|
|
4218
|
+
attr_accessor :final_mobile_urls
|
|
4219
|
+
|
|
4220
|
+
# The suffix to use when constructing a final URL.
|
|
4221
|
+
# Corresponds to the JSON property `finalUrlSuffix`
|
|
4222
|
+
# @return [String]
|
|
4223
|
+
attr_accessor :final_url_suffix
|
|
4224
|
+
|
|
4046
4225
|
# The list of possible final URLs after all cross-domain redirects for the ad.
|
|
4047
4226
|
# Corresponds to the JSON property `finalUrls`
|
|
4048
4227
|
# @return [Array<String>]
|
|
@@ -4080,6 +4259,11 @@ module Google
|
|
|
4080
4259
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo]
|
|
4081
4260
|
attr_accessor :text_ad
|
|
4082
4261
|
|
|
4262
|
+
# The URL template for constructing a tracking URL.
|
|
4263
|
+
# Corresponds to the JSON property `trackingUrlTemplate`
|
|
4264
|
+
# @return [String]
|
|
4265
|
+
attr_accessor :tracking_url_template
|
|
4266
|
+
|
|
4083
4267
|
# Output only. The type of ad.
|
|
4084
4268
|
# Corresponds to the JSON property `type`
|
|
4085
4269
|
# @return [String]
|
|
@@ -4094,6 +4278,9 @@ module Google
|
|
|
4094
4278
|
@display_url = args[:display_url] if args.key?(:display_url)
|
|
4095
4279
|
@expanded_dynamic_search_ad = args[:expanded_dynamic_search_ad] if args.key?(:expanded_dynamic_search_ad)
|
|
4096
4280
|
@expanded_text_ad = args[:expanded_text_ad] if args.key?(:expanded_text_ad)
|
|
4281
|
+
@final_app_urls = args[:final_app_urls] if args.key?(:final_app_urls)
|
|
4282
|
+
@final_mobile_urls = args[:final_mobile_urls] if args.key?(:final_mobile_urls)
|
|
4283
|
+
@final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
|
|
4097
4284
|
@final_urls = args[:final_urls] if args.key?(:final_urls)
|
|
4098
4285
|
@id = args[:id] if args.key?(:id)
|
|
4099
4286
|
@name = args[:name] if args.key?(:name)
|
|
@@ -4101,6 +4288,7 @@ module Google
|
|
|
4101
4288
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
4102
4289
|
@responsive_search_ad = args[:responsive_search_ad] if args.key?(:responsive_search_ad)
|
|
4103
4290
|
@text_ad = args[:text_ad] if args.key?(:text_ad)
|
|
4291
|
+
@tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
|
|
4104
4292
|
@type = args[:type] if args.key?(:type)
|
|
4105
4293
|
end
|
|
4106
4294
|
end
|
|
@@ -4152,6 +4340,11 @@ module Google
|
|
|
4152
4340
|
# @return [String]
|
|
4153
4341
|
attr_accessor :engine_status
|
|
4154
4342
|
|
|
4343
|
+
# URL template for appending params to Final URL.
|
|
4344
|
+
# Corresponds to the JSON property `finalUrlSuffix`
|
|
4345
|
+
# @return [String]
|
|
4346
|
+
attr_accessor :final_url_suffix
|
|
4347
|
+
|
|
4155
4348
|
# Output only. The ID of the ad group.
|
|
4156
4349
|
# Corresponds to the JSON property `id`
|
|
4157
4350
|
# @return [Fixnum]
|
|
@@ -4212,6 +4405,11 @@ module Google
|
|
|
4212
4405
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonTargetingSetting]
|
|
4213
4406
|
attr_accessor :targeting_setting
|
|
4214
4407
|
|
|
4408
|
+
# The URL template for constructing a tracking URL.
|
|
4409
|
+
# Corresponds to the JSON property `trackingUrlTemplate`
|
|
4410
|
+
# @return [String]
|
|
4411
|
+
attr_accessor :tracking_url_template
|
|
4412
|
+
|
|
4215
4413
|
# Immutable. The type of the ad group.
|
|
4216
4414
|
# Corresponds to the JSON property `type`
|
|
4217
4415
|
# @return [String]
|
|
@@ -4230,6 +4428,7 @@ module Google
|
|
|
4230
4428
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
4231
4429
|
@engine_id = args[:engine_id] if args.key?(:engine_id)
|
|
4232
4430
|
@engine_status = args[:engine_status] if args.key?(:engine_status)
|
|
4431
|
+
@final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
|
|
4233
4432
|
@id = args[:id] if args.key?(:id)
|
|
4234
4433
|
@labels = args[:labels] if args.key?(:labels)
|
|
4235
4434
|
@language_code = args[:language_code] if args.key?(:language_code)
|
|
@@ -4239,6 +4438,7 @@ module Google
|
|
|
4239
4438
|
@start_date = args[:start_date] if args.key?(:start_date)
|
|
4240
4439
|
@status = args[:status] if args.key?(:status)
|
|
4241
4440
|
@targeting_setting = args[:targeting_setting] if args.key?(:targeting_setting)
|
|
4441
|
+
@tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
|
|
4242
4442
|
@type = args[:type] if args.key?(:type)
|
|
4243
4443
|
end
|
|
4244
4444
|
end
|
|
@@ -4340,7 +4540,7 @@ module Google
|
|
|
4340
4540
|
attr_accessor :owner_customer_id
|
|
4341
4541
|
|
|
4342
4542
|
# Immutable. The resource name of the ad group ad effective label. Ad group ad
|
|
4343
|
-
# effective label resource names have the form: `customers/`
|
|
4543
|
+
# effective label resource names have the form: `customers/`owner_customer_id`/
|
|
4344
4544
|
# adGroupAdEffectiveLabels/`ad_group_id`~`ad_id`~`label_id``
|
|
4345
4545
|
# Corresponds to the JSON property `resourceName`
|
|
4346
4546
|
# @return [String]
|
|
@@ -4379,7 +4579,7 @@ module Google
|
|
|
4379
4579
|
attr_accessor :owner_customer_id
|
|
4380
4580
|
|
|
4381
4581
|
# Immutable. The resource name of the ad group ad label. Ad group ad label
|
|
4382
|
-
# resource names have the form: `customers/`
|
|
4582
|
+
# resource names have the form: `customers/`owner_customer_id`/adGroupAdLabels/`
|
|
4383
4583
|
# ad_group_id`~`ad_id`~`label_id``
|
|
4384
4584
|
# Corresponds to the JSON property `resourceName`
|
|
4385
4585
|
# @return [String]
|
|
@@ -4505,8 +4705,7 @@ module Google
|
|
|
4505
4705
|
include Google::Apis::Core::Hashable
|
|
4506
4706
|
|
|
4507
4707
|
# The modifier for the bid when the criterion matches. The modifier must be in
|
|
4508
|
-
# the range: 0.1 - 10.0.
|
|
4509
|
-
# opt out of a Device type.
|
|
4708
|
+
# the range: 0.1 - 10.0. Use 0 to opt out of a Device type.
|
|
4510
4709
|
# Corresponds to the JSON property `bidModifier`
|
|
4511
4710
|
# @return [Float]
|
|
4512
4711
|
attr_accessor :bid_modifier
|
|
@@ -4597,6 +4796,11 @@ module Google
|
|
|
4597
4796
|
# @return [String]
|
|
4598
4797
|
attr_accessor :engine_status
|
|
4599
4798
|
|
|
4799
|
+
# The list of possible final mobile URLs after all cross-domain redirects.
|
|
4800
|
+
# Corresponds to the JSON property `finalMobileUrls`
|
|
4801
|
+
# @return [Array<String>]
|
|
4802
|
+
attr_accessor :final_mobile_urls
|
|
4803
|
+
|
|
4600
4804
|
# URL template for appending params to final URL.
|
|
4601
4805
|
# Corresponds to the JSON property `finalUrlSuffix`
|
|
4602
4806
|
# @return [String]
|
|
@@ -4686,6 +4890,12 @@ module Google
|
|
|
4686
4890
|
# @return [String]
|
|
4687
4891
|
attr_accessor :type
|
|
4688
4892
|
|
|
4893
|
+
# The list of mappings used to substitute custom parameter tags in a `
|
|
4894
|
+
# tracking_url_template`, `final_urls`, or `mobile_final_urls`.
|
|
4895
|
+
# Corresponds to the JSON property `urlCustomParameters`
|
|
4896
|
+
# @return [Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter>]
|
|
4897
|
+
attr_accessor :url_custom_parameters
|
|
4898
|
+
|
|
4689
4899
|
# A User List criterion. Represents a user list that is defined by the
|
|
4690
4900
|
# advertiser to be targeted.
|
|
4691
4901
|
# Corresponds to the JSON property `userList`
|
|
@@ -4713,6 +4923,7 @@ module Google
|
|
|
4713
4923
|
@effective_labels = args[:effective_labels] if args.key?(:effective_labels)
|
|
4714
4924
|
@engine_id = args[:engine_id] if args.key?(:engine_id)
|
|
4715
4925
|
@engine_status = args[:engine_status] if args.key?(:engine_status)
|
|
4926
|
+
@final_mobile_urls = args[:final_mobile_urls] if args.key?(:final_mobile_urls)
|
|
4716
4927
|
@final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
|
|
4717
4928
|
@final_urls = args[:final_urls] if args.key?(:final_urls)
|
|
4718
4929
|
@gender = args[:gender] if args.key?(:gender)
|
|
@@ -4728,6 +4939,7 @@ module Google
|
|
|
4728
4939
|
@status = args[:status] if args.key?(:status)
|
|
4729
4940
|
@tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
|
|
4730
4941
|
@type = args[:type] if args.key?(:type)
|
|
4942
|
+
@url_custom_parameters = args[:url_custom_parameters] if args.key?(:url_custom_parameters)
|
|
4731
4943
|
@user_list = args[:user_list] if args.key?(:user_list)
|
|
4732
4944
|
@webpage = args[:webpage] if args.key?(:webpage)
|
|
4733
4945
|
end
|
|
@@ -4756,8 +4968,8 @@ module Google
|
|
|
4756
4968
|
|
|
4757
4969
|
# Immutable. The resource name of the ad group criterion effective label. Ad
|
|
4758
4970
|
# group criterion effective label resource names have the form: `customers/`
|
|
4759
|
-
#
|
|
4760
|
-
# label_id``
|
|
4971
|
+
# owner_customer_id`/adGroupCriterionEffectiveLabels/`ad_group_id`~`criterion_id`
|
|
4972
|
+
# ~`label_id``
|
|
4761
4973
|
# Corresponds to the JSON property `resourceName`
|
|
4762
4974
|
# @return [String]
|
|
4763
4975
|
attr_accessor :resource_name
|
|
@@ -4795,7 +5007,7 @@ module Google
|
|
|
4795
5007
|
attr_accessor :owner_customer_id
|
|
4796
5008
|
|
|
4797
5009
|
# Immutable. The resource name of the ad group criterion label. Ad group
|
|
4798
|
-
# criterion label resource names have the form: `customers/`
|
|
5010
|
+
# criterion label resource names have the form: `customers/`owner_customer_id`/
|
|
4799
5011
|
# adGroupCriterionLabels/`ad_group_id`~`criterion_id`~`label_id``
|
|
4800
5012
|
# Corresponds to the JSON property `resourceName`
|
|
4801
5013
|
# @return [String]
|
|
@@ -4835,7 +5047,7 @@ module Google
|
|
|
4835
5047
|
attr_accessor :owner_customer_id
|
|
4836
5048
|
|
|
4837
5049
|
# Immutable. The resource name of the ad group effective label. Ad group
|
|
4838
|
-
# effective label resource names have the form: `customers/`
|
|
5050
|
+
# effective label resource names have the form: `customers/`owner_customer_id`/
|
|
4839
5051
|
# adGroupEffectiveLabels/`ad_group_id`~`label_id``
|
|
4840
5052
|
# Corresponds to the JSON property `resourceName`
|
|
4841
5053
|
# @return [String]
|
|
@@ -4874,8 +5086,8 @@ module Google
|
|
|
4874
5086
|
attr_accessor :owner_customer_id
|
|
4875
5087
|
|
|
4876
5088
|
# Immutable. The resource name of the ad group label. Ad group label resource
|
|
4877
|
-
# names have the form: `customers/`
|
|
4878
|
-
# label_id``
|
|
5089
|
+
# names have the form: `customers/`owner_customer_id`/adGroupLabels/`ad_group_id`
|
|
5090
|
+
# ~`label_id``
|
|
4879
5091
|
# Corresponds to the JSON property `resourceName`
|
|
4880
5092
|
# @return [String]
|
|
4881
5093
|
attr_accessor :resource_name
|
|
@@ -4947,6 +5159,17 @@ module Google
|
|
|
4947
5159
|
# @return [String]
|
|
4948
5160
|
attr_accessor :engine_status
|
|
4949
5161
|
|
|
5162
|
+
# A list of possible final mobile URLs after all cross domain redirects.
|
|
5163
|
+
# Corresponds to the JSON property `finalMobileUrls`
|
|
5164
|
+
# @return [Array<String>]
|
|
5165
|
+
attr_accessor :final_mobile_urls
|
|
5166
|
+
|
|
5167
|
+
# URL template for appending params to landing page URLs served with parallel
|
|
5168
|
+
# tracking.
|
|
5169
|
+
# Corresponds to the JSON property `finalUrlSuffix`
|
|
5170
|
+
# @return [String]
|
|
5171
|
+
attr_accessor :final_url_suffix
|
|
5172
|
+
|
|
4950
5173
|
# A list of possible final URLs after all cross domain redirects.
|
|
4951
5174
|
# Corresponds to the JSON property `finalUrls`
|
|
4952
5175
|
# @return [Array<String>]
|
|
@@ -5019,6 +5242,12 @@ module Google
|
|
|
5019
5242
|
# @return [String]
|
|
5020
5243
|
attr_accessor :type
|
|
5021
5244
|
|
|
5245
|
+
# A list of mappings to be used for substituting URL custom parameter tags in
|
|
5246
|
+
# the tracking_url_template, final_urls, and/or final_mobile_urls.
|
|
5247
|
+
# Corresponds to the JSON property `urlCustomParameters`
|
|
5248
|
+
# @return [Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter>]
|
|
5249
|
+
attr_accessor :url_custom_parameters
|
|
5250
|
+
|
|
5022
5251
|
# A YouTube asset.
|
|
5023
5252
|
# Corresponds to the JSON property `youtubeVideoAsset`
|
|
5024
5253
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonYoutubeVideoAsset]
|
|
@@ -5035,6 +5264,8 @@ module Google
|
|
|
5035
5264
|
@callout_asset = args[:callout_asset] if args.key?(:callout_asset)
|
|
5036
5265
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
|
5037
5266
|
@engine_status = args[:engine_status] if args.key?(:engine_status)
|
|
5267
|
+
@final_mobile_urls = args[:final_mobile_urls] if args.key?(:final_mobile_urls)
|
|
5268
|
+
@final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
|
|
5038
5269
|
@final_urls = args[:final_urls] if args.key?(:final_urls)
|
|
5039
5270
|
@id = args[:id] if args.key?(:id)
|
|
5040
5271
|
@image_asset = args[:image_asset] if args.key?(:image_asset)
|
|
@@ -5049,6 +5280,7 @@ module Google
|
|
|
5049
5280
|
@text_asset = args[:text_asset] if args.key?(:text_asset)
|
|
5050
5281
|
@tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
|
|
5051
5282
|
@type = args[:type] if args.key?(:type)
|
|
5283
|
+
@url_custom_parameters = args[:url_custom_parameters] if args.key?(:url_custom_parameters)
|
|
5052
5284
|
@youtube_video_asset = args[:youtube_video_asset] if args.key?(:youtube_video_asset)
|
|
5053
5285
|
end
|
|
5054
5286
|
end
|
|
@@ -5687,6 +5919,11 @@ module Google
|
|
|
5687
5919
|
# @return [Array<String>]
|
|
5688
5920
|
attr_accessor :excluded_parent_asset_field_types
|
|
5689
5921
|
|
|
5922
|
+
# Output only. Types of feeds that are attached directly to this campaign.
|
|
5923
|
+
# Corresponds to the JSON property `feedTypes`
|
|
5924
|
+
# @return [Array<String>]
|
|
5925
|
+
attr_accessor :feed_types
|
|
5926
|
+
|
|
5690
5927
|
# Suffix used to append query parameters to landing pages that are served with
|
|
5691
5928
|
# parallel tracking.
|
|
5692
5929
|
# Corresponds to the JSON property `finalUrlSuffix`
|
|
@@ -5892,6 +6129,7 @@ module Google
|
|
|
5892
6129
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
5893
6130
|
@engine_id = args[:engine_id] if args.key?(:engine_id)
|
|
5894
6131
|
@excluded_parent_asset_field_types = args[:excluded_parent_asset_field_types] if args.key?(:excluded_parent_asset_field_types)
|
|
6132
|
+
@feed_types = args[:feed_types] if args.key?(:feed_types)
|
|
5895
6133
|
@final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
|
|
5896
6134
|
@frequency_caps = args[:frequency_caps] if args.key?(:frequency_caps)
|
|
5897
6135
|
@geo_target_type_setting = args[:geo_target_type_setting] if args.key?(:geo_target_type_setting)
|
|
@@ -6217,8 +6455,8 @@ module Google
|
|
|
6217
6455
|
attr_accessor :owner_customer_id
|
|
6218
6456
|
|
|
6219
6457
|
# Immutable. Name of the resource. CampaignEffectivelabel resource names have
|
|
6220
|
-
# the form: `customers/`
|
|
6221
|
-
# label_id``
|
|
6458
|
+
# the form: `customers/`owner_customer_id`/campaignEffectiveLabels/`campaign_id`~
|
|
6459
|
+
# `label_id``
|
|
6222
6460
|
# Corresponds to the JSON property `resourceName`
|
|
6223
6461
|
# @return [String]
|
|
6224
6462
|
attr_accessor :resource_name
|
|
@@ -6256,7 +6494,7 @@ module Google
|
|
|
6256
6494
|
attr_accessor :owner_customer_id
|
|
6257
6495
|
|
|
6258
6496
|
# Immutable. Name of the resource. Campaign label resource names have the form: `
|
|
6259
|
-
# customers/`
|
|
6497
|
+
# customers/`owner_customer_id`/campaignLabels/`campaign_id`~`label_id``
|
|
6260
6498
|
# Corresponds to the JSON property `resourceName`
|
|
6261
6499
|
# @return [String]
|
|
6262
6500
|
attr_accessor :resource_name
|
|
@@ -7415,7 +7653,7 @@ module Google
|
|
|
7415
7653
|
attr_accessor :name
|
|
7416
7654
|
|
|
7417
7655
|
# Immutable. Name of the resource. Label resource names have the form: `
|
|
7418
|
-
# customers/`
|
|
7656
|
+
# customers/`owner_customer_id`/labels/`label_id``
|
|
7419
7657
|
# Corresponds to the JSON property `resourceName`
|
|
7420
7658
|
# @return [String]
|
|
7421
7659
|
attr_accessor :resource_name
|
|
@@ -7799,7 +8037,15 @@ module Google
|
|
|
7799
8037
|
# several product dimension levels. Product dimension values from Merchant
|
|
7800
8038
|
# Center such as brand, category, custom attributes, product condition and
|
|
7801
8039
|
# product type will reflect the state of each dimension as of the date and time
|
|
7802
|
-
# when the corresponding event was recorded.
|
|
8040
|
+
# when the corresponding event was recorded. The number of impressions and
|
|
8041
|
+
# clicks that shopping_performance_view returns stats for may be different from
|
|
8042
|
+
# campaign reports. shopping_performance_view shows impressions and clicks on
|
|
8043
|
+
# products appearing in ads, while campaign reports show impressions and clicks
|
|
8044
|
+
# on the ads themselves. Depending on the format, an ad can show from zero to
|
|
8045
|
+
# several products, so the numbers may not match. In Google Ads UI, you can
|
|
8046
|
+
# query impressions and clicks of products appearing in ads by selecting a
|
|
8047
|
+
# column from "Product attributes" in the report editor. For example, selecting
|
|
8048
|
+
# the "Brand" column is equivalent to selecting `segments.product_brand`.
|
|
7803
8049
|
class GoogleAdsSearchads360V0ResourcesShoppingPerformanceView
|
|
7804
8050
|
include Google::Apis::Core::Hashable
|
|
7805
8051
|
|
|
@@ -8512,7 +8758,15 @@ module Google
|
|
|
8512
8758
|
# several product dimension levels. Product dimension values from Merchant
|
|
8513
8759
|
# Center such as brand, category, custom attributes, product condition and
|
|
8514
8760
|
# product type will reflect the state of each dimension as of the date and time
|
|
8515
|
-
# when the corresponding event was recorded.
|
|
8761
|
+
# when the corresponding event was recorded. The number of impressions and
|
|
8762
|
+
# clicks that shopping_performance_view returns stats for may be different from
|
|
8763
|
+
# campaign reports. shopping_performance_view shows impressions and clicks on
|
|
8764
|
+
# products appearing in ads, while campaign reports show impressions and clicks
|
|
8765
|
+
# on the ads themselves. Depending on the format, an ad can show from zero to
|
|
8766
|
+
# several products, so the numbers may not match. In Google Ads UI, you can
|
|
8767
|
+
# query impressions and clicks of products appearing in ads by selecting a
|
|
8768
|
+
# column from "Product attributes" in the report editor. For example, selecting
|
|
8769
|
+
# the "Brand" column is equivalent to selecting `segments.product_brand`.
|
|
8516
8770
|
# Corresponds to the JSON property `shoppingPerformanceView`
|
|
8517
8771
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesShoppingPerformanceView]
|
|
8518
8772
|
attr_accessor :shopping_performance_view
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module Searchads360V0
|
|
18
18
|
# Version of the google-apis-searchads360_v0 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.24.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251204"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -88,6 +88,12 @@ module Google
|
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
|
89
89
|
end
|
|
90
90
|
|
|
91
|
+
class GoogleAdsSearchads360V0CommonFinalAppUrl
|
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
93
|
+
|
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
95
|
+
end
|
|
96
|
+
|
|
91
97
|
class GoogleAdsSearchads360V0CommonFrequencyCapEntry
|
|
92
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
93
99
|
|
|
@@ -1097,6 +1103,14 @@ module Google
|
|
|
1097
1103
|
end
|
|
1098
1104
|
end
|
|
1099
1105
|
|
|
1106
|
+
class GoogleAdsSearchads360V0CommonFinalAppUrl
|
|
1107
|
+
# @private
|
|
1108
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1109
|
+
property :os_type, as: 'osType'
|
|
1110
|
+
property :url, as: 'url'
|
|
1111
|
+
end
|
|
1112
|
+
end
|
|
1113
|
+
|
|
1100
1114
|
class GoogleAdsSearchads360V0CommonFrequencyCapEntry
|
|
1101
1115
|
# @private
|
|
1102
1116
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1232,9 +1246,12 @@ module Google
|
|
|
1232
1246
|
property :all_conversions_value, as: 'allConversionsValue'
|
|
1233
1247
|
property :all_conversions_value_by_conversion_date, as: 'allConversionsValueByConversionDate'
|
|
1234
1248
|
property :all_conversions_value_per_cost, as: 'allConversionsValuePerCost'
|
|
1249
|
+
property :average_cart_size, as: 'averageCartSize'
|
|
1235
1250
|
property :average_cost, as: 'averageCost'
|
|
1236
1251
|
property :average_cpc, as: 'averageCpc'
|
|
1237
1252
|
property :average_cpm, as: 'averageCpm'
|
|
1253
|
+
property :average_impression_frequency_per_user, as: 'averageImpressionFrequencyPerUser'
|
|
1254
|
+
property :average_order_value_micros, :numeric_string => true, as: 'averageOrderValueMicros'
|
|
1238
1255
|
property :average_quality_score, as: 'averageQualityScore'
|
|
1239
1256
|
property :clicks, :numeric_string => true, as: 'clicks'
|
|
1240
1257
|
property :client_account_conversions, as: 'clientAccountConversions'
|
|
@@ -1261,6 +1278,7 @@ module Google
|
|
|
1261
1278
|
property :conversions_value_by_conversion_date, as: 'conversionsValueByConversionDate'
|
|
1262
1279
|
property :conversions_value_per_cost, as: 'conversionsValuePerCost'
|
|
1263
1280
|
property :cost_micros, :numeric_string => true, as: 'costMicros'
|
|
1281
|
+
property :cost_of_goods_sold_micros, :numeric_string => true, as: 'costOfGoodsSoldMicros'
|
|
1264
1282
|
property :cost_per_all_conversions, as: 'costPerAllConversions'
|
|
1265
1283
|
property :cost_per_conversion, as: 'costPerConversion'
|
|
1266
1284
|
property :cost_per_current_model_attributed_conversion, as: 'costPerCurrentModelAttributedConversion'
|
|
@@ -1275,6 +1293,8 @@ module Google
|
|
|
1275
1293
|
property :ctr, as: 'ctr'
|
|
1276
1294
|
property :general_invalid_click_rate, as: 'generalInvalidClickRate'
|
|
1277
1295
|
property :general_invalid_clicks, :numeric_string => true, as: 'generalInvalidClicks'
|
|
1296
|
+
property :gross_profit_margin, as: 'grossProfitMargin'
|
|
1297
|
+
property :gross_profit_micros, :numeric_string => true, as: 'grossProfitMicros'
|
|
1278
1298
|
property :historical_creative_quality_score, as: 'historicalCreativeQualityScore'
|
|
1279
1299
|
property :historical_landing_page_quality_score, as: 'historicalLandingPageQualityScore'
|
|
1280
1300
|
property :historical_quality_score, :numeric_string => true, as: 'historicalQualityScore'
|
|
@@ -1290,8 +1310,10 @@ module Google
|
|
|
1290
1310
|
property :lead_revenue_micros, :numeric_string => true, as: 'leadRevenueMicros'
|
|
1291
1311
|
property :lead_units_sold, as: 'leadUnitsSold'
|
|
1292
1312
|
property :mobile_friendly_clicks_percentage, as: 'mobileFriendlyClicksPercentage'
|
|
1313
|
+
property :orders, as: 'orders'
|
|
1293
1314
|
collection :raw_event_conversion_metrics, as: 'rawEventConversionMetrics', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonValue, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonValue::Representation
|
|
1294
1315
|
|
|
1316
|
+
property :revenue_micros, :numeric_string => true, as: 'revenueMicros'
|
|
1295
1317
|
property :search_absolute_top_impression_share, as: 'searchAbsoluteTopImpressionShare'
|
|
1296
1318
|
property :search_budget_lost_absolute_top_impression_share, as: 'searchBudgetLostAbsoluteTopImpressionShare'
|
|
1297
1319
|
property :search_budget_lost_impression_share, as: 'searchBudgetLostImpressionShare'
|
|
@@ -1304,6 +1326,8 @@ module Google
|
|
|
1304
1326
|
property :search_rank_lost_top_impression_share, as: 'searchRankLostTopImpressionShare'
|
|
1305
1327
|
property :search_top_impression_share, as: 'searchTopImpressionShare'
|
|
1306
1328
|
property :top_impression_percentage, as: 'topImpressionPercentage'
|
|
1329
|
+
property :unique_users, :numeric_string => true, as: 'uniqueUsers'
|
|
1330
|
+
property :units_sold, as: 'unitsSold'
|
|
1307
1331
|
property :value_per_all_conversions, as: 'valuePerAllConversions'
|
|
1308
1332
|
property :value_per_all_conversions_by_conversion_date, as: 'valuePerAllConversionsByConversionDate'
|
|
1309
1333
|
property :value_per_conversion, as: 'valuePerConversion'
|
|
@@ -1406,6 +1430,7 @@ module Google
|
|
|
1406
1430
|
property :geo_target_city, as: 'geoTargetCity'
|
|
1407
1431
|
property :geo_target_country, as: 'geoTargetCountry'
|
|
1408
1432
|
property :geo_target_metro, as: 'geoTargetMetro'
|
|
1433
|
+
property :geo_target_postal_code, as: 'geoTargetPostalCode'
|
|
1409
1434
|
property :geo_target_region, as: 'geoTargetRegion'
|
|
1410
1435
|
property :hour, as: 'hour'
|
|
1411
1436
|
property :keyword, as: 'keyword', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeyword, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeyword::Representation
|
|
@@ -1965,6 +1990,10 @@ module Google
|
|
|
1965
1990
|
|
|
1966
1991
|
property :expanded_text_ad, as: 'expandedTextAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo::Representation
|
|
1967
1992
|
|
|
1993
|
+
collection :final_app_urls, as: 'finalAppUrls', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFinalAppUrl, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFinalAppUrl::Representation
|
|
1994
|
+
|
|
1995
|
+
collection :final_mobile_urls, as: 'finalMobileUrls'
|
|
1996
|
+
property :final_url_suffix, as: 'finalUrlSuffix'
|
|
1968
1997
|
collection :final_urls, as: 'finalUrls'
|
|
1969
1998
|
property :id, :numeric_string => true, as: 'id'
|
|
1970
1999
|
property :name, as: 'name'
|
|
@@ -1975,6 +2004,7 @@ module Google
|
|
|
1975
2004
|
|
|
1976
2005
|
property :text_ad, as: 'textAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo::Representation
|
|
1977
2006
|
|
|
2007
|
+
property :tracking_url_template, as: 'trackingUrlTemplate'
|
|
1978
2008
|
property :type, as: 'type'
|
|
1979
2009
|
end
|
|
1980
2010
|
end
|
|
@@ -1989,6 +2019,7 @@ module Google
|
|
|
1989
2019
|
property :end_date, as: 'endDate'
|
|
1990
2020
|
property :engine_id, as: 'engineId'
|
|
1991
2021
|
property :engine_status, as: 'engineStatus'
|
|
2022
|
+
property :final_url_suffix, as: 'finalUrlSuffix'
|
|
1992
2023
|
property :id, :numeric_string => true, as: 'id'
|
|
1993
2024
|
collection :labels, as: 'labels'
|
|
1994
2025
|
property :language_code, as: 'languageCode'
|
|
@@ -1999,6 +2030,7 @@ module Google
|
|
|
1999
2030
|
property :status, as: 'status'
|
|
2000
2031
|
property :targeting_setting, as: 'targetingSetting', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonTargetingSetting, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonTargetingSetting::Representation
|
|
2001
2032
|
|
|
2033
|
+
property :tracking_url_template, as: 'trackingUrlTemplate'
|
|
2002
2034
|
property :type, as: 'type'
|
|
2003
2035
|
end
|
|
2004
2036
|
end
|
|
@@ -2090,6 +2122,7 @@ module Google
|
|
|
2090
2122
|
collection :effective_labels, as: 'effectiveLabels'
|
|
2091
2123
|
property :engine_id, as: 'engineId'
|
|
2092
2124
|
property :engine_status, as: 'engineStatus'
|
|
2125
|
+
collection :final_mobile_urls, as: 'finalMobileUrls'
|
|
2093
2126
|
property :final_url_suffix, as: 'finalUrlSuffix'
|
|
2094
2127
|
collection :final_urls, as: 'finalUrls'
|
|
2095
2128
|
property :gender, as: 'gender', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonGenderInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonGenderInfo::Representation
|
|
@@ -2111,6 +2144,8 @@ module Google
|
|
|
2111
2144
|
property :status, as: 'status'
|
|
2112
2145
|
property :tracking_url_template, as: 'trackingUrlTemplate'
|
|
2113
2146
|
property :type, as: 'type'
|
|
2147
|
+
collection :url_custom_parameters, as: 'urlCustomParameters', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter::Representation
|
|
2148
|
+
|
|
2114
2149
|
property :user_list, as: 'userList', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonUserListInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonUserListInfo::Representation
|
|
2115
2150
|
|
|
2116
2151
|
property :webpage, as: 'webpage', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonWebpageInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonWebpageInfo::Representation
|
|
@@ -2176,6 +2211,8 @@ module Google
|
|
|
2176
2211
|
|
|
2177
2212
|
property :creation_time, as: 'creationTime'
|
|
2178
2213
|
property :engine_status, as: 'engineStatus'
|
|
2214
|
+
collection :final_mobile_urls, as: 'finalMobileUrls'
|
|
2215
|
+
property :final_url_suffix, as: 'finalUrlSuffix'
|
|
2179
2216
|
collection :final_urls, as: 'finalUrls'
|
|
2180
2217
|
property :id, :numeric_string => true, as: 'id'
|
|
2181
2218
|
property :image_asset, as: 'imageAsset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonImageAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonImageAsset::Representation
|
|
@@ -2196,6 +2233,8 @@ module Google
|
|
|
2196
2233
|
|
|
2197
2234
|
property :tracking_url_template, as: 'trackingUrlTemplate'
|
|
2198
2235
|
property :type, as: 'type'
|
|
2236
|
+
collection :url_custom_parameters, as: 'urlCustomParameters', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter::Representation
|
|
2237
|
+
|
|
2199
2238
|
property :youtube_video_asset, as: 'youtubeVideoAsset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonYoutubeVideoAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonYoutubeVideoAsset::Representation
|
|
2200
2239
|
|
|
2201
2240
|
end
|
|
@@ -2349,6 +2388,7 @@ module Google
|
|
|
2349
2388
|
property :end_date, as: 'endDate'
|
|
2350
2389
|
property :engine_id, as: 'engineId'
|
|
2351
2390
|
collection :excluded_parent_asset_field_types, as: 'excludedParentAssetFieldTypes'
|
|
2391
|
+
collection :feed_types, as: 'feedTypes'
|
|
2352
2392
|
property :final_url_suffix, as: 'finalUrlSuffix'
|
|
2353
2393
|
collection :frequency_caps, as: 'frequencyCaps', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFrequencyCapEntry, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFrequencyCapEntry::Representation
|
|
2354
2394
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-searchads360_v0
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.24.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-searchads360_v0/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-searchads360_v0/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-searchads360_v0/v0.24.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-searchads360_v0
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|