google-apis-searchads360_v0 0.22.0 → 0.23.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: da5110732e87a9dfb6fb16a8c2a2cc6ed8cd96d25895acd565b59a226bb3e771
4
- data.tar.gz: c01bab92c5b231ff80e3aa1b6c75b1448610809d62ff5315e861c0b1e07a8ca2
3
+ metadata.gz: 9410d16206bd1cd9098a1b619b5383b51cd6f2331e17c018f9a56048df3a661c
4
+ data.tar.gz: bf2ec7d3f93f4b6311d1dba63e50e120627e78c21a4ba26b9166fbc42264e2a5
5
5
  SHA512:
6
- metadata.gz: 58ad620ace41778a63f1f7dcb21acafb758e539dba15874214ac6590b6c7c19f17d49f146d8510b8d65cde51e3d3054f63bdff78184c1b7f90db456e1f2111ab
7
- data.tar.gz: 2687e39bafdc14cd3f74c081cce2986b67b64e7d1be8c817622b9461533762cd43b73b9fc46369d6789f499d090c7ccb004916ca9f44ad1ead69fe1869468e40
6
+ metadata.gz: fdcd560c84a71417bbf32317e8e955a08ed727378e7e7262fff55258a44824a03cf0e00d3cda50e54986f7a639afec68eeabf1306b392a17e66363aeecc83560
7
+ data.tar.gz: a6a496ee10cd9599251ee5f3b3deb477a18f6bd6f59d12d12195af61e84cd6b4d89c57500b4ff3fa01bc62704a2ab05ccea56e1c9b66b04fd6f41f35c50c94df
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-searchads360_v0
2
2
 
3
+ ### v0.23.0 (2025-11-23)
4
+
5
+ * Regenerated from discovery document revision 20251116
6
+
3
7
  ### v0.22.0 (2025-07-27)
4
8
 
5
9
  * 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)
@@ -4043,6 +4199,23 @@ module Google
4043
4199
  # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo]
4044
4200
  attr_accessor :expanded_text_ad
4045
4201
 
4202
+ # A list of final app URLs that will be used on mobile if the user has the
4203
+ # specific app installed.
4204
+ # Corresponds to the JSON property `finalAppUrls`
4205
+ # @return [Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFinalAppUrl>]
4206
+ attr_accessor :final_app_urls
4207
+
4208
+ # The list of possible final mobile URLs after all cross-domain redirects for
4209
+ # the ad.
4210
+ # Corresponds to the JSON property `finalMobileUrls`
4211
+ # @return [Array<String>]
4212
+ attr_accessor :final_mobile_urls
4213
+
4214
+ # The suffix to use when constructing a final URL.
4215
+ # Corresponds to the JSON property `finalUrlSuffix`
4216
+ # @return [String]
4217
+ attr_accessor :final_url_suffix
4218
+
4046
4219
  # The list of possible final URLs after all cross-domain redirects for the ad.
4047
4220
  # Corresponds to the JSON property `finalUrls`
4048
4221
  # @return [Array<String>]
@@ -4080,6 +4253,11 @@ module Google
4080
4253
  # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo]
4081
4254
  attr_accessor :text_ad
4082
4255
 
4256
+ # The URL template for constructing a tracking URL.
4257
+ # Corresponds to the JSON property `trackingUrlTemplate`
4258
+ # @return [String]
4259
+ attr_accessor :tracking_url_template
4260
+
4083
4261
  # Output only. The type of ad.
4084
4262
  # Corresponds to the JSON property `type`
4085
4263
  # @return [String]
@@ -4094,6 +4272,9 @@ module Google
4094
4272
  @display_url = args[:display_url] if args.key?(:display_url)
4095
4273
  @expanded_dynamic_search_ad = args[:expanded_dynamic_search_ad] if args.key?(:expanded_dynamic_search_ad)
4096
4274
  @expanded_text_ad = args[:expanded_text_ad] if args.key?(:expanded_text_ad)
4275
+ @final_app_urls = args[:final_app_urls] if args.key?(:final_app_urls)
4276
+ @final_mobile_urls = args[:final_mobile_urls] if args.key?(:final_mobile_urls)
4277
+ @final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
4097
4278
  @final_urls = args[:final_urls] if args.key?(:final_urls)
4098
4279
  @id = args[:id] if args.key?(:id)
4099
4280
  @name = args[:name] if args.key?(:name)
@@ -4101,6 +4282,7 @@ module Google
4101
4282
  @resource_name = args[:resource_name] if args.key?(:resource_name)
4102
4283
  @responsive_search_ad = args[:responsive_search_ad] if args.key?(:responsive_search_ad)
4103
4284
  @text_ad = args[:text_ad] if args.key?(:text_ad)
4285
+ @tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
4104
4286
  @type = args[:type] if args.key?(:type)
4105
4287
  end
4106
4288
  end
@@ -4152,6 +4334,11 @@ module Google
4152
4334
  # @return [String]
4153
4335
  attr_accessor :engine_status
4154
4336
 
4337
+ # URL template for appending params to Final URL.
4338
+ # Corresponds to the JSON property `finalUrlSuffix`
4339
+ # @return [String]
4340
+ attr_accessor :final_url_suffix
4341
+
4155
4342
  # Output only. The ID of the ad group.
4156
4343
  # Corresponds to the JSON property `id`
4157
4344
  # @return [Fixnum]
@@ -4212,6 +4399,11 @@ module Google
4212
4399
  # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonTargetingSetting]
4213
4400
  attr_accessor :targeting_setting
4214
4401
 
4402
+ # The URL template for constructing a tracking URL.
4403
+ # Corresponds to the JSON property `trackingUrlTemplate`
4404
+ # @return [String]
4405
+ attr_accessor :tracking_url_template
4406
+
4215
4407
  # Immutable. The type of the ad group.
4216
4408
  # Corresponds to the JSON property `type`
4217
4409
  # @return [String]
@@ -4230,6 +4422,7 @@ module Google
4230
4422
  @end_date = args[:end_date] if args.key?(:end_date)
4231
4423
  @engine_id = args[:engine_id] if args.key?(:engine_id)
4232
4424
  @engine_status = args[:engine_status] if args.key?(:engine_status)
4425
+ @final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
4233
4426
  @id = args[:id] if args.key?(:id)
4234
4427
  @labels = args[:labels] if args.key?(:labels)
4235
4428
  @language_code = args[:language_code] if args.key?(:language_code)
@@ -4239,6 +4432,7 @@ module Google
4239
4432
  @start_date = args[:start_date] if args.key?(:start_date)
4240
4433
  @status = args[:status] if args.key?(:status)
4241
4434
  @targeting_setting = args[:targeting_setting] if args.key?(:targeting_setting)
4435
+ @tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
4242
4436
  @type = args[:type] if args.key?(:type)
4243
4437
  end
4244
4438
  end
@@ -4340,7 +4534,7 @@ module Google
4340
4534
  attr_accessor :owner_customer_id
4341
4535
 
4342
4536
  # Immutable. The resource name of the ad group ad effective label. Ad group ad
4343
- # effective label resource names have the form: `customers/`customer_id`/
4537
+ # effective label resource names have the form: `customers/`owner_customer_id`/
4344
4538
  # adGroupAdEffectiveLabels/`ad_group_id`~`ad_id`~`label_id``
4345
4539
  # Corresponds to the JSON property `resourceName`
4346
4540
  # @return [String]
@@ -4379,7 +4573,7 @@ module Google
4379
4573
  attr_accessor :owner_customer_id
4380
4574
 
4381
4575
  # Immutable. The resource name of the ad group ad label. Ad group ad label
4382
- # resource names have the form: `customers/`customer_id`/adGroupAdLabels/`
4576
+ # resource names have the form: `customers/`owner_customer_id`/adGroupAdLabels/`
4383
4577
  # ad_group_id`~`ad_id`~`label_id``
4384
4578
  # Corresponds to the JSON property `resourceName`
4385
4579
  # @return [String]
@@ -4597,6 +4791,11 @@ module Google
4597
4791
  # @return [String]
4598
4792
  attr_accessor :engine_status
4599
4793
 
4794
+ # The list of possible final mobile URLs after all cross-domain redirects.
4795
+ # Corresponds to the JSON property `finalMobileUrls`
4796
+ # @return [Array<String>]
4797
+ attr_accessor :final_mobile_urls
4798
+
4600
4799
  # URL template for appending params to final URL.
4601
4800
  # Corresponds to the JSON property `finalUrlSuffix`
4602
4801
  # @return [String]
@@ -4686,6 +4885,12 @@ module Google
4686
4885
  # @return [String]
4687
4886
  attr_accessor :type
4688
4887
 
4888
+ # The list of mappings used to substitute custom parameter tags in a `
4889
+ # tracking_url_template`, `final_urls`, or `mobile_final_urls`.
4890
+ # Corresponds to the JSON property `urlCustomParameters`
4891
+ # @return [Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter>]
4892
+ attr_accessor :url_custom_parameters
4893
+
4689
4894
  # A User List criterion. Represents a user list that is defined by the
4690
4895
  # advertiser to be targeted.
4691
4896
  # Corresponds to the JSON property `userList`
@@ -4713,6 +4918,7 @@ module Google
4713
4918
  @effective_labels = args[:effective_labels] if args.key?(:effective_labels)
4714
4919
  @engine_id = args[:engine_id] if args.key?(:engine_id)
4715
4920
  @engine_status = args[:engine_status] if args.key?(:engine_status)
4921
+ @final_mobile_urls = args[:final_mobile_urls] if args.key?(:final_mobile_urls)
4716
4922
  @final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
4717
4923
  @final_urls = args[:final_urls] if args.key?(:final_urls)
4718
4924
  @gender = args[:gender] if args.key?(:gender)
@@ -4728,6 +4934,7 @@ module Google
4728
4934
  @status = args[:status] if args.key?(:status)
4729
4935
  @tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
4730
4936
  @type = args[:type] if args.key?(:type)
4937
+ @url_custom_parameters = args[:url_custom_parameters] if args.key?(:url_custom_parameters)
4731
4938
  @user_list = args[:user_list] if args.key?(:user_list)
4732
4939
  @webpage = args[:webpage] if args.key?(:webpage)
4733
4940
  end
@@ -4756,8 +4963,8 @@ module Google
4756
4963
 
4757
4964
  # Immutable. The resource name of the ad group criterion effective label. Ad
4758
4965
  # group criterion effective label resource names have the form: `customers/`
4759
- # customer_id`/adGroupCriterionEffectiveLabels/`ad_group_id`~`criterion_id`~`
4760
- # label_id``
4966
+ # owner_customer_id`/adGroupCriterionEffectiveLabels/`ad_group_id`~`criterion_id`
4967
+ # ~`label_id``
4761
4968
  # Corresponds to the JSON property `resourceName`
4762
4969
  # @return [String]
4763
4970
  attr_accessor :resource_name
@@ -4795,7 +5002,7 @@ module Google
4795
5002
  attr_accessor :owner_customer_id
4796
5003
 
4797
5004
  # Immutable. The resource name of the ad group criterion label. Ad group
4798
- # criterion label resource names have the form: `customers/`customer_id`/
5005
+ # criterion label resource names have the form: `customers/`owner_customer_id`/
4799
5006
  # adGroupCriterionLabels/`ad_group_id`~`criterion_id`~`label_id``
4800
5007
  # Corresponds to the JSON property `resourceName`
4801
5008
  # @return [String]
@@ -4835,7 +5042,7 @@ module Google
4835
5042
  attr_accessor :owner_customer_id
4836
5043
 
4837
5044
  # Immutable. The resource name of the ad group effective label. Ad group
4838
- # effective label resource names have the form: `customers/`customer_id`/
5045
+ # effective label resource names have the form: `customers/`owner_customer_id`/
4839
5046
  # adGroupEffectiveLabels/`ad_group_id`~`label_id``
4840
5047
  # Corresponds to the JSON property `resourceName`
4841
5048
  # @return [String]
@@ -4874,8 +5081,8 @@ module Google
4874
5081
  attr_accessor :owner_customer_id
4875
5082
 
4876
5083
  # Immutable. The resource name of the ad group label. Ad group label resource
4877
- # names have the form: `customers/`customer_id`/adGroupLabels/`ad_group_id`~`
4878
- # label_id``
5084
+ # names have the form: `customers/`owner_customer_id`/adGroupLabels/`ad_group_id`
5085
+ # ~`label_id``
4879
5086
  # Corresponds to the JSON property `resourceName`
4880
5087
  # @return [String]
4881
5088
  attr_accessor :resource_name
@@ -4947,6 +5154,17 @@ module Google
4947
5154
  # @return [String]
4948
5155
  attr_accessor :engine_status
4949
5156
 
5157
+ # A list of possible final mobile URLs after all cross domain redirects.
5158
+ # Corresponds to the JSON property `finalMobileUrls`
5159
+ # @return [Array<String>]
5160
+ attr_accessor :final_mobile_urls
5161
+
5162
+ # URL template for appending params to landing page URLs served with parallel
5163
+ # tracking.
5164
+ # Corresponds to the JSON property `finalUrlSuffix`
5165
+ # @return [String]
5166
+ attr_accessor :final_url_suffix
5167
+
4950
5168
  # A list of possible final URLs after all cross domain redirects.
4951
5169
  # Corresponds to the JSON property `finalUrls`
4952
5170
  # @return [Array<String>]
@@ -5019,6 +5237,12 @@ module Google
5019
5237
  # @return [String]
5020
5238
  attr_accessor :type
5021
5239
 
5240
+ # A list of mappings to be used for substituting URL custom parameter tags in
5241
+ # the tracking_url_template, final_urls, and/or final_mobile_urls.
5242
+ # Corresponds to the JSON property `urlCustomParameters`
5243
+ # @return [Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter>]
5244
+ attr_accessor :url_custom_parameters
5245
+
5022
5246
  # A YouTube asset.
5023
5247
  # Corresponds to the JSON property `youtubeVideoAsset`
5024
5248
  # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonYoutubeVideoAsset]
@@ -5035,6 +5259,8 @@ module Google
5035
5259
  @callout_asset = args[:callout_asset] if args.key?(:callout_asset)
5036
5260
  @creation_time = args[:creation_time] if args.key?(:creation_time)
5037
5261
  @engine_status = args[:engine_status] if args.key?(:engine_status)
5262
+ @final_mobile_urls = args[:final_mobile_urls] if args.key?(:final_mobile_urls)
5263
+ @final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
5038
5264
  @final_urls = args[:final_urls] if args.key?(:final_urls)
5039
5265
  @id = args[:id] if args.key?(:id)
5040
5266
  @image_asset = args[:image_asset] if args.key?(:image_asset)
@@ -5049,6 +5275,7 @@ module Google
5049
5275
  @text_asset = args[:text_asset] if args.key?(:text_asset)
5050
5276
  @tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
5051
5277
  @type = args[:type] if args.key?(:type)
5278
+ @url_custom_parameters = args[:url_custom_parameters] if args.key?(:url_custom_parameters)
5052
5279
  @youtube_video_asset = args[:youtube_video_asset] if args.key?(:youtube_video_asset)
5053
5280
  end
5054
5281
  end
@@ -5687,6 +5914,11 @@ module Google
5687
5914
  # @return [Array<String>]
5688
5915
  attr_accessor :excluded_parent_asset_field_types
5689
5916
 
5917
+ # Output only. Types of feeds that are attached directly to this campaign.
5918
+ # Corresponds to the JSON property `feedTypes`
5919
+ # @return [Array<String>]
5920
+ attr_accessor :feed_types
5921
+
5690
5922
  # Suffix used to append query parameters to landing pages that are served with
5691
5923
  # parallel tracking.
5692
5924
  # Corresponds to the JSON property `finalUrlSuffix`
@@ -5892,6 +6124,7 @@ module Google
5892
6124
  @end_date = args[:end_date] if args.key?(:end_date)
5893
6125
  @engine_id = args[:engine_id] if args.key?(:engine_id)
5894
6126
  @excluded_parent_asset_field_types = args[:excluded_parent_asset_field_types] if args.key?(:excluded_parent_asset_field_types)
6127
+ @feed_types = args[:feed_types] if args.key?(:feed_types)
5895
6128
  @final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
5896
6129
  @frequency_caps = args[:frequency_caps] if args.key?(:frequency_caps)
5897
6130
  @geo_target_type_setting = args[:geo_target_type_setting] if args.key?(:geo_target_type_setting)
@@ -6217,8 +6450,8 @@ module Google
6217
6450
  attr_accessor :owner_customer_id
6218
6451
 
6219
6452
  # Immutable. Name of the resource. CampaignEffectivelabel resource names have
6220
- # the form: `customers/`customer_id`/campaignEffectiveLabels/`campaign_id`~`
6221
- # label_id``
6453
+ # the form: `customers/`owner_customer_id`/campaignEffectiveLabels/`campaign_id`~
6454
+ # `label_id``
6222
6455
  # Corresponds to the JSON property `resourceName`
6223
6456
  # @return [String]
6224
6457
  attr_accessor :resource_name
@@ -6256,7 +6489,7 @@ module Google
6256
6489
  attr_accessor :owner_customer_id
6257
6490
 
6258
6491
  # Immutable. Name of the resource. Campaign label resource names have the form: `
6259
- # customers/`customer_id`/campaignLabels/`campaign_id`~`label_id``
6492
+ # customers/`owner_customer_id`/campaignLabels/`campaign_id`~`label_id``
6260
6493
  # Corresponds to the JSON property `resourceName`
6261
6494
  # @return [String]
6262
6495
  attr_accessor :resource_name
@@ -7415,7 +7648,7 @@ module Google
7415
7648
  attr_accessor :name
7416
7649
 
7417
7650
  # Immutable. Name of the resource. Label resource names have the form: `
7418
- # customers/`customer_id`/labels/`label_id``
7651
+ # customers/`owner_customer_id`/labels/`label_id``
7419
7652
  # Corresponds to the JSON property `resourceName`
7420
7653
  # @return [String]
7421
7654
  attr_accessor :resource_name
@@ -7799,7 +8032,15 @@ module Google
7799
8032
  # several product dimension levels. Product dimension values from Merchant
7800
8033
  # Center such as brand, category, custom attributes, product condition and
7801
8034
  # product type will reflect the state of each dimension as of the date and time
7802
- # when the corresponding event was recorded.
8035
+ # when the corresponding event was recorded. The number of impressions and
8036
+ # clicks that shopping_performance_view returns stats for may be different from
8037
+ # campaign reports. shopping_performance_view shows impressions and clicks on
8038
+ # products appearing in ads, while campaign reports show impressions and clicks
8039
+ # on the ads themselves. Depending on the format, an ad can show from zero to
8040
+ # several products, so the numbers may not match. In Google Ads UI, you can
8041
+ # query impressions and clicks of products appearing in ads by selecting a
8042
+ # column from "Product attributes" in the report editor. For example, selecting
8043
+ # the "Brand" column is equivalent to selecting `segments.product_brand`.
7803
8044
  class GoogleAdsSearchads360V0ResourcesShoppingPerformanceView
7804
8045
  include Google::Apis::Core::Hashable
7805
8046
 
@@ -8512,7 +8753,15 @@ module Google
8512
8753
  # several product dimension levels. Product dimension values from Merchant
8513
8754
  # Center such as brand, category, custom attributes, product condition and
8514
8755
  # product type will reflect the state of each dimension as of the date and time
8515
- # when the corresponding event was recorded.
8756
+ # when the corresponding event was recorded. The number of impressions and
8757
+ # clicks that shopping_performance_view returns stats for may be different from
8758
+ # campaign reports. shopping_performance_view shows impressions and clicks on
8759
+ # products appearing in ads, while campaign reports show impressions and clicks
8760
+ # on the ads themselves. Depending on the format, an ad can show from zero to
8761
+ # several products, so the numbers may not match. In Google Ads UI, you can
8762
+ # query impressions and clicks of products appearing in ads by selecting a
8763
+ # column from "Product attributes" in the report editor. For example, selecting
8764
+ # the "Brand" column is equivalent to selecting `segments.product_brand`.
8516
8765
  # Corresponds to the JSON property `shoppingPerformanceView`
8517
8766
  # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesShoppingPerformanceView]
8518
8767
  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.22.0"
19
+ GEM_VERSION = "0.23.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 = "20250721"
25
+ REVISION = "20251116"
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'
@@ -1965,6 +1989,10 @@ module Google
1965
1989
 
1966
1990
  property :expanded_text_ad, as: 'expandedTextAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo::Representation
1967
1991
 
1992
+ collection :final_app_urls, as: 'finalAppUrls', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFinalAppUrl, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFinalAppUrl::Representation
1993
+
1994
+ collection :final_mobile_urls, as: 'finalMobileUrls'
1995
+ property :final_url_suffix, as: 'finalUrlSuffix'
1968
1996
  collection :final_urls, as: 'finalUrls'
1969
1997
  property :id, :numeric_string => true, as: 'id'
1970
1998
  property :name, as: 'name'
@@ -1975,6 +2003,7 @@ module Google
1975
2003
 
1976
2004
  property :text_ad, as: 'textAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo::Representation
1977
2005
 
2006
+ property :tracking_url_template, as: 'trackingUrlTemplate'
1978
2007
  property :type, as: 'type'
1979
2008
  end
1980
2009
  end
@@ -1989,6 +2018,7 @@ module Google
1989
2018
  property :end_date, as: 'endDate'
1990
2019
  property :engine_id, as: 'engineId'
1991
2020
  property :engine_status, as: 'engineStatus'
2021
+ property :final_url_suffix, as: 'finalUrlSuffix'
1992
2022
  property :id, :numeric_string => true, as: 'id'
1993
2023
  collection :labels, as: 'labels'
1994
2024
  property :language_code, as: 'languageCode'
@@ -1999,6 +2029,7 @@ module Google
1999
2029
  property :status, as: 'status'
2000
2030
  property :targeting_setting, as: 'targetingSetting', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonTargetingSetting, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonTargetingSetting::Representation
2001
2031
 
2032
+ property :tracking_url_template, as: 'trackingUrlTemplate'
2002
2033
  property :type, as: 'type'
2003
2034
  end
2004
2035
  end
@@ -2090,6 +2121,7 @@ module Google
2090
2121
  collection :effective_labels, as: 'effectiveLabels'
2091
2122
  property :engine_id, as: 'engineId'
2092
2123
  property :engine_status, as: 'engineStatus'
2124
+ collection :final_mobile_urls, as: 'finalMobileUrls'
2093
2125
  property :final_url_suffix, as: 'finalUrlSuffix'
2094
2126
  collection :final_urls, as: 'finalUrls'
2095
2127
  property :gender, as: 'gender', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonGenderInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonGenderInfo::Representation
@@ -2111,6 +2143,8 @@ module Google
2111
2143
  property :status, as: 'status'
2112
2144
  property :tracking_url_template, as: 'trackingUrlTemplate'
2113
2145
  property :type, as: 'type'
2146
+ collection :url_custom_parameters, as: 'urlCustomParameters', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter::Representation
2147
+
2114
2148
  property :user_list, as: 'userList', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonUserListInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonUserListInfo::Representation
2115
2149
 
2116
2150
  property :webpage, as: 'webpage', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonWebpageInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonWebpageInfo::Representation
@@ -2176,6 +2210,8 @@ module Google
2176
2210
 
2177
2211
  property :creation_time, as: 'creationTime'
2178
2212
  property :engine_status, as: 'engineStatus'
2213
+ collection :final_mobile_urls, as: 'finalMobileUrls'
2214
+ property :final_url_suffix, as: 'finalUrlSuffix'
2179
2215
  collection :final_urls, as: 'finalUrls'
2180
2216
  property :id, :numeric_string => true, as: 'id'
2181
2217
  property :image_asset, as: 'imageAsset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonImageAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonImageAsset::Representation
@@ -2196,6 +2232,8 @@ module Google
2196
2232
 
2197
2233
  property :tracking_url_template, as: 'trackingUrlTemplate'
2198
2234
  property :type, as: 'type'
2235
+ collection :url_custom_parameters, as: 'urlCustomParameters', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter::Representation
2236
+
2199
2237
  property :youtube_video_asset, as: 'youtubeVideoAsset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonYoutubeVideoAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonYoutubeVideoAsset::Representation
2200
2238
 
2201
2239
  end
@@ -2349,6 +2387,7 @@ module Google
2349
2387
  property :end_date, as: 'endDate'
2350
2388
  property :engine_id, as: 'engineId'
2351
2389
  collection :excluded_parent_asset_field_types, as: 'excludedParentAssetFieldTypes'
2390
+ collection :feed_types, as: 'feedTypes'
2352
2391
  property :final_url_suffix, as: 'finalUrlSuffix'
2353
2392
  collection :frequency_caps, as: 'frequencyCaps', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFrequencyCapEntry, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFrequencyCapEntry::Representation
2354
2393
 
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.22.0
4
+ version: 0.23.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.22.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-searchads360_v0/v0.23.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: