google-apis-searchads360_v0 0.21.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9410d16206bd1cd9098a1b619b5383b51cd6f2331e17c018f9a56048df3a661c
|
|
4
|
+
data.tar.gz: bf2ec7d3f93f4b6311d1dba63e50e120627e78c21a4ba26b9166fbc42264e2a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdcd560c84a71417bbf32317e8e955a08ed727378e7e7262fff55258a44824a03cf0e00d3cda50e54986f7a639afec68eeabf1306b392a17e66363aeecc83560
|
|
7
|
+
data.tar.gz: a6a496ee10cd9599251ee5f3b3deb477a18f6bd6f59d12d12195af61e84cd6b4d89c57500b4ff3fa01bc62704a2ab05ccea56e1c9b66b04fd6f41f35c50c94df
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
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
|
+
|
|
7
|
+
### v0.22.0 (2025-07-27)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250721
|
|
10
|
+
* Regenerated using generator version 0.18.0
|
|
11
|
+
|
|
3
12
|
### v0.21.0 (2025-05-04)
|
|
4
13
|
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
|
@@ -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)
|
|
@@ -2992,6 +3148,11 @@ module Google
|
|
|
2992
3148
|
# @return [String]
|
|
2993
3149
|
attr_accessor :authorization_error
|
|
2994
3150
|
|
|
3151
|
+
# The reasons for the conversion custom variable error
|
|
3152
|
+
# Corresponds to the JSON property `conversionCustomVariableError`
|
|
3153
|
+
# @return [String]
|
|
3154
|
+
attr_accessor :conversion_custom_variable_error
|
|
3155
|
+
|
|
2995
3156
|
# The reasons for the custom column error
|
|
2996
3157
|
# Corresponds to the JSON property `customColumnError`
|
|
2997
3158
|
# @return [String]
|
|
@@ -3055,6 +3216,7 @@ module Google
|
|
|
3055
3216
|
def update!(**args)
|
|
3056
3217
|
@authentication_error = args[:authentication_error] if args.key?(:authentication_error)
|
|
3057
3218
|
@authorization_error = args[:authorization_error] if args.key?(:authorization_error)
|
|
3219
|
+
@conversion_custom_variable_error = args[:conversion_custom_variable_error] if args.key?(:conversion_custom_variable_error)
|
|
3058
3220
|
@custom_column_error = args[:custom_column_error] if args.key?(:custom_column_error)
|
|
3059
3221
|
@date_error = args[:date_error] if args.key?(:date_error)
|
|
3060
3222
|
@date_range_error = args[:date_range_error] if args.key?(:date_range_error)
|
|
@@ -4037,6 +4199,23 @@ module Google
|
|
|
4037
4199
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo]
|
|
4038
4200
|
attr_accessor :expanded_text_ad
|
|
4039
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
|
+
|
|
4040
4219
|
# The list of possible final URLs after all cross-domain redirects for the ad.
|
|
4041
4220
|
# Corresponds to the JSON property `finalUrls`
|
|
4042
4221
|
# @return [Array<String>]
|
|
@@ -4048,9 +4227,7 @@ module Google
|
|
|
4048
4227
|
attr_accessor :id
|
|
4049
4228
|
|
|
4050
4229
|
# Immutable. The name of the ad. This is only used to be able to identify the ad.
|
|
4051
|
-
# It does not need to be unique and does not affect the served ad.
|
|
4052
|
-
# field is currently only supported for DisplayUploadAd, ImageAd,
|
|
4053
|
-
# ShoppingComparisonListingAd and VideoAd.
|
|
4230
|
+
# It does not need to be unique and does not affect the served ad.
|
|
4054
4231
|
# Corresponds to the JSON property `name`
|
|
4055
4232
|
# @return [String]
|
|
4056
4233
|
attr_accessor :name
|
|
@@ -4076,6 +4253,11 @@ module Google
|
|
|
4076
4253
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo]
|
|
4077
4254
|
attr_accessor :text_ad
|
|
4078
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
|
+
|
|
4079
4261
|
# Output only. The type of ad.
|
|
4080
4262
|
# Corresponds to the JSON property `type`
|
|
4081
4263
|
# @return [String]
|
|
@@ -4090,6 +4272,9 @@ module Google
|
|
|
4090
4272
|
@display_url = args[:display_url] if args.key?(:display_url)
|
|
4091
4273
|
@expanded_dynamic_search_ad = args[:expanded_dynamic_search_ad] if args.key?(:expanded_dynamic_search_ad)
|
|
4092
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)
|
|
4093
4278
|
@final_urls = args[:final_urls] if args.key?(:final_urls)
|
|
4094
4279
|
@id = args[:id] if args.key?(:id)
|
|
4095
4280
|
@name = args[:name] if args.key?(:name)
|
|
@@ -4097,6 +4282,7 @@ module Google
|
|
|
4097
4282
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
4098
4283
|
@responsive_search_ad = args[:responsive_search_ad] if args.key?(:responsive_search_ad)
|
|
4099
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)
|
|
4100
4286
|
@type = args[:type] if args.key?(:type)
|
|
4101
4287
|
end
|
|
4102
4288
|
end
|
|
@@ -4148,6 +4334,11 @@ module Google
|
|
|
4148
4334
|
# @return [String]
|
|
4149
4335
|
attr_accessor :engine_status
|
|
4150
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
|
+
|
|
4151
4342
|
# Output only. The ID of the ad group.
|
|
4152
4343
|
# Corresponds to the JSON property `id`
|
|
4153
4344
|
# @return [Fixnum]
|
|
@@ -4208,6 +4399,11 @@ module Google
|
|
|
4208
4399
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonTargetingSetting]
|
|
4209
4400
|
attr_accessor :targeting_setting
|
|
4210
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
|
+
|
|
4211
4407
|
# Immutable. The type of the ad group.
|
|
4212
4408
|
# Corresponds to the JSON property `type`
|
|
4213
4409
|
# @return [String]
|
|
@@ -4226,6 +4422,7 @@ module Google
|
|
|
4226
4422
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
4227
4423
|
@engine_id = args[:engine_id] if args.key?(:engine_id)
|
|
4228
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)
|
|
4229
4426
|
@id = args[:id] if args.key?(:id)
|
|
4230
4427
|
@labels = args[:labels] if args.key?(:labels)
|
|
4231
4428
|
@language_code = args[:language_code] if args.key?(:language_code)
|
|
@@ -4235,6 +4432,7 @@ module Google
|
|
|
4235
4432
|
@start_date = args[:start_date] if args.key?(:start_date)
|
|
4236
4433
|
@status = args[:status] if args.key?(:status)
|
|
4237
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)
|
|
4238
4436
|
@type = args[:type] if args.key?(:type)
|
|
4239
4437
|
end
|
|
4240
4438
|
end
|
|
@@ -4336,7 +4534,7 @@ module Google
|
|
|
4336
4534
|
attr_accessor :owner_customer_id
|
|
4337
4535
|
|
|
4338
4536
|
# Immutable. The resource name of the ad group ad effective label. Ad group ad
|
|
4339
|
-
# effective label resource names have the form: `customers/`
|
|
4537
|
+
# effective label resource names have the form: `customers/`owner_customer_id`/
|
|
4340
4538
|
# adGroupAdEffectiveLabels/`ad_group_id`~`ad_id`~`label_id``
|
|
4341
4539
|
# Corresponds to the JSON property `resourceName`
|
|
4342
4540
|
# @return [String]
|
|
@@ -4375,7 +4573,7 @@ module Google
|
|
|
4375
4573
|
attr_accessor :owner_customer_id
|
|
4376
4574
|
|
|
4377
4575
|
# Immutable. The resource name of the ad group ad label. Ad group ad label
|
|
4378
|
-
# resource names have the form: `customers/`
|
|
4576
|
+
# resource names have the form: `customers/`owner_customer_id`/adGroupAdLabels/`
|
|
4379
4577
|
# ad_group_id`~`ad_id`~`label_id``
|
|
4380
4578
|
# Corresponds to the JSON property `resourceName`
|
|
4381
4579
|
# @return [String]
|
|
@@ -4593,6 +4791,11 @@ module Google
|
|
|
4593
4791
|
# @return [String]
|
|
4594
4792
|
attr_accessor :engine_status
|
|
4595
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
|
+
|
|
4596
4799
|
# URL template for appending params to final URL.
|
|
4597
4800
|
# Corresponds to the JSON property `finalUrlSuffix`
|
|
4598
4801
|
# @return [String]
|
|
@@ -4682,6 +4885,12 @@ module Google
|
|
|
4682
4885
|
# @return [String]
|
|
4683
4886
|
attr_accessor :type
|
|
4684
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
|
+
|
|
4685
4894
|
# A User List criterion. Represents a user list that is defined by the
|
|
4686
4895
|
# advertiser to be targeted.
|
|
4687
4896
|
# Corresponds to the JSON property `userList`
|
|
@@ -4709,6 +4918,7 @@ module Google
|
|
|
4709
4918
|
@effective_labels = args[:effective_labels] if args.key?(:effective_labels)
|
|
4710
4919
|
@engine_id = args[:engine_id] if args.key?(:engine_id)
|
|
4711
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)
|
|
4712
4922
|
@final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
|
|
4713
4923
|
@final_urls = args[:final_urls] if args.key?(:final_urls)
|
|
4714
4924
|
@gender = args[:gender] if args.key?(:gender)
|
|
@@ -4724,6 +4934,7 @@ module Google
|
|
|
4724
4934
|
@status = args[:status] if args.key?(:status)
|
|
4725
4935
|
@tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
|
|
4726
4936
|
@type = args[:type] if args.key?(:type)
|
|
4937
|
+
@url_custom_parameters = args[:url_custom_parameters] if args.key?(:url_custom_parameters)
|
|
4727
4938
|
@user_list = args[:user_list] if args.key?(:user_list)
|
|
4728
4939
|
@webpage = args[:webpage] if args.key?(:webpage)
|
|
4729
4940
|
end
|
|
@@ -4752,8 +4963,8 @@ module Google
|
|
|
4752
4963
|
|
|
4753
4964
|
# Immutable. The resource name of the ad group criterion effective label. Ad
|
|
4754
4965
|
# group criterion effective label resource names have the form: `customers/`
|
|
4755
|
-
#
|
|
4756
|
-
# label_id``
|
|
4966
|
+
# owner_customer_id`/adGroupCriterionEffectiveLabels/`ad_group_id`~`criterion_id`
|
|
4967
|
+
# ~`label_id``
|
|
4757
4968
|
# Corresponds to the JSON property `resourceName`
|
|
4758
4969
|
# @return [String]
|
|
4759
4970
|
attr_accessor :resource_name
|
|
@@ -4791,7 +5002,7 @@ module Google
|
|
|
4791
5002
|
attr_accessor :owner_customer_id
|
|
4792
5003
|
|
|
4793
5004
|
# Immutable. The resource name of the ad group criterion label. Ad group
|
|
4794
|
-
# criterion label resource names have the form: `customers/`
|
|
5005
|
+
# criterion label resource names have the form: `customers/`owner_customer_id`/
|
|
4795
5006
|
# adGroupCriterionLabels/`ad_group_id`~`criterion_id`~`label_id``
|
|
4796
5007
|
# Corresponds to the JSON property `resourceName`
|
|
4797
5008
|
# @return [String]
|
|
@@ -4831,7 +5042,7 @@ module Google
|
|
|
4831
5042
|
attr_accessor :owner_customer_id
|
|
4832
5043
|
|
|
4833
5044
|
# Immutable. The resource name of the ad group effective label. Ad group
|
|
4834
|
-
# effective label resource names have the form: `customers/`
|
|
5045
|
+
# effective label resource names have the form: `customers/`owner_customer_id`/
|
|
4835
5046
|
# adGroupEffectiveLabels/`ad_group_id`~`label_id``
|
|
4836
5047
|
# Corresponds to the JSON property `resourceName`
|
|
4837
5048
|
# @return [String]
|
|
@@ -4870,8 +5081,8 @@ module Google
|
|
|
4870
5081
|
attr_accessor :owner_customer_id
|
|
4871
5082
|
|
|
4872
5083
|
# Immutable. The resource name of the ad group label. Ad group label resource
|
|
4873
|
-
# names have the form: `customers/`
|
|
4874
|
-
# label_id``
|
|
5084
|
+
# names have the form: `customers/`owner_customer_id`/adGroupLabels/`ad_group_id`
|
|
5085
|
+
# ~`label_id``
|
|
4875
5086
|
# Corresponds to the JSON property `resourceName`
|
|
4876
5087
|
# @return [String]
|
|
4877
5088
|
attr_accessor :resource_name
|
|
@@ -4943,6 +5154,17 @@ module Google
|
|
|
4943
5154
|
# @return [String]
|
|
4944
5155
|
attr_accessor :engine_status
|
|
4945
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
|
+
|
|
4946
5168
|
# A list of possible final URLs after all cross domain redirects.
|
|
4947
5169
|
# Corresponds to the JSON property `finalUrls`
|
|
4948
5170
|
# @return [Array<String>]
|
|
@@ -5015,6 +5237,12 @@ module Google
|
|
|
5015
5237
|
# @return [String]
|
|
5016
5238
|
attr_accessor :type
|
|
5017
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
|
+
|
|
5018
5246
|
# A YouTube asset.
|
|
5019
5247
|
# Corresponds to the JSON property `youtubeVideoAsset`
|
|
5020
5248
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonYoutubeVideoAsset]
|
|
@@ -5031,6 +5259,8 @@ module Google
|
|
|
5031
5259
|
@callout_asset = args[:callout_asset] if args.key?(:callout_asset)
|
|
5032
5260
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
|
5033
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)
|
|
5034
5264
|
@final_urls = args[:final_urls] if args.key?(:final_urls)
|
|
5035
5265
|
@id = args[:id] if args.key?(:id)
|
|
5036
5266
|
@image_asset = args[:image_asset] if args.key?(:image_asset)
|
|
@@ -5045,6 +5275,7 @@ module Google
|
|
|
5045
5275
|
@text_asset = args[:text_asset] if args.key?(:text_asset)
|
|
5046
5276
|
@tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
|
|
5047
5277
|
@type = args[:type] if args.key?(:type)
|
|
5278
|
+
@url_custom_parameters = args[:url_custom_parameters] if args.key?(:url_custom_parameters)
|
|
5048
5279
|
@youtube_video_asset = args[:youtube_video_asset] if args.key?(:youtube_video_asset)
|
|
5049
5280
|
end
|
|
5050
5281
|
end
|
|
@@ -5683,6 +5914,11 @@ module Google
|
|
|
5683
5914
|
# @return [Array<String>]
|
|
5684
5915
|
attr_accessor :excluded_parent_asset_field_types
|
|
5685
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
|
+
|
|
5686
5922
|
# Suffix used to append query parameters to landing pages that are served with
|
|
5687
5923
|
# parallel tracking.
|
|
5688
5924
|
# Corresponds to the JSON property `finalUrlSuffix`
|
|
@@ -5888,6 +6124,7 @@ module Google
|
|
|
5888
6124
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
5889
6125
|
@engine_id = args[:engine_id] if args.key?(:engine_id)
|
|
5890
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)
|
|
5891
6128
|
@final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
|
|
5892
6129
|
@frequency_caps = args[:frequency_caps] if args.key?(:frequency_caps)
|
|
5893
6130
|
@geo_target_type_setting = args[:geo_target_type_setting] if args.key?(:geo_target_type_setting)
|
|
@@ -6213,8 +6450,8 @@ module Google
|
|
|
6213
6450
|
attr_accessor :owner_customer_id
|
|
6214
6451
|
|
|
6215
6452
|
# Immutable. Name of the resource. CampaignEffectivelabel resource names have
|
|
6216
|
-
# the form: `customers/`
|
|
6217
|
-
# label_id``
|
|
6453
|
+
# the form: `customers/`owner_customer_id`/campaignEffectiveLabels/`campaign_id`~
|
|
6454
|
+
# `label_id``
|
|
6218
6455
|
# Corresponds to the JSON property `resourceName`
|
|
6219
6456
|
# @return [String]
|
|
6220
6457
|
attr_accessor :resource_name
|
|
@@ -6252,7 +6489,7 @@ module Google
|
|
|
6252
6489
|
attr_accessor :owner_customer_id
|
|
6253
6490
|
|
|
6254
6491
|
# Immutable. Name of the resource. Campaign label resource names have the form: `
|
|
6255
|
-
# customers/`
|
|
6492
|
+
# customers/`owner_customer_id`/campaignLabels/`campaign_id`~`label_id``
|
|
6256
6493
|
# Corresponds to the JSON property `resourceName`
|
|
6257
6494
|
# @return [String]
|
|
6258
6495
|
attr_accessor :resource_name
|
|
@@ -7411,7 +7648,7 @@ module Google
|
|
|
7411
7648
|
attr_accessor :name
|
|
7412
7649
|
|
|
7413
7650
|
# Immutable. Name of the resource. Label resource names have the form: `
|
|
7414
|
-
# customers/`
|
|
7651
|
+
# customers/`owner_customer_id`/labels/`label_id``
|
|
7415
7652
|
# Corresponds to the JSON property `resourceName`
|
|
7416
7653
|
# @return [String]
|
|
7417
7654
|
attr_accessor :resource_name
|
|
@@ -7795,7 +8032,15 @@ module Google
|
|
|
7795
8032
|
# several product dimension levels. Product dimension values from Merchant
|
|
7796
8033
|
# Center such as brand, category, custom attributes, product condition and
|
|
7797
8034
|
# product type will reflect the state of each dimension as of the date and time
|
|
7798
|
-
# 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`.
|
|
7799
8044
|
class GoogleAdsSearchads360V0ResourcesShoppingPerformanceView
|
|
7800
8045
|
include Google::Apis::Core::Hashable
|
|
7801
8046
|
|
|
@@ -8508,7 +8753,15 @@ module Google
|
|
|
8508
8753
|
# several product dimension levels. Product dimension values from Merchant
|
|
8509
8754
|
# Center such as brand, category, custom attributes, product condition and
|
|
8510
8755
|
# product type will reflect the state of each dimension as of the date and time
|
|
8511
|
-
# 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`.
|
|
8512
8765
|
# Corresponds to the JSON property `shoppingPerformanceView`
|
|
8513
8766
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesShoppingPerformanceView]
|
|
8514
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.
|
|
19
|
+
GEM_VERSION = "0.23.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
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'
|
|
@@ -1662,6 +1686,7 @@ module Google
|
|
|
1662
1686
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1663
1687
|
property :authentication_error, as: 'authenticationError'
|
|
1664
1688
|
property :authorization_error, as: 'authorizationError'
|
|
1689
|
+
property :conversion_custom_variable_error, as: 'conversionCustomVariableError'
|
|
1665
1690
|
property :custom_column_error, as: 'customColumnError'
|
|
1666
1691
|
property :date_error, as: 'dateError'
|
|
1667
1692
|
property :date_range_error, as: 'dateRangeError'
|
|
@@ -1964,6 +1989,10 @@ module Google
|
|
|
1964
1989
|
|
|
1965
1990
|
property :expanded_text_ad, as: 'expandedTextAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo::Representation
|
|
1966
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'
|
|
1967
1996
|
collection :final_urls, as: 'finalUrls'
|
|
1968
1997
|
property :id, :numeric_string => true, as: 'id'
|
|
1969
1998
|
property :name, as: 'name'
|
|
@@ -1974,6 +2003,7 @@ module Google
|
|
|
1974
2003
|
|
|
1975
2004
|
property :text_ad, as: 'textAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo::Representation
|
|
1976
2005
|
|
|
2006
|
+
property :tracking_url_template, as: 'trackingUrlTemplate'
|
|
1977
2007
|
property :type, as: 'type'
|
|
1978
2008
|
end
|
|
1979
2009
|
end
|
|
@@ -1988,6 +2018,7 @@ module Google
|
|
|
1988
2018
|
property :end_date, as: 'endDate'
|
|
1989
2019
|
property :engine_id, as: 'engineId'
|
|
1990
2020
|
property :engine_status, as: 'engineStatus'
|
|
2021
|
+
property :final_url_suffix, as: 'finalUrlSuffix'
|
|
1991
2022
|
property :id, :numeric_string => true, as: 'id'
|
|
1992
2023
|
collection :labels, as: 'labels'
|
|
1993
2024
|
property :language_code, as: 'languageCode'
|
|
@@ -1998,6 +2029,7 @@ module Google
|
|
|
1998
2029
|
property :status, as: 'status'
|
|
1999
2030
|
property :targeting_setting, as: 'targetingSetting', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonTargetingSetting, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonTargetingSetting::Representation
|
|
2000
2031
|
|
|
2032
|
+
property :tracking_url_template, as: 'trackingUrlTemplate'
|
|
2001
2033
|
property :type, as: 'type'
|
|
2002
2034
|
end
|
|
2003
2035
|
end
|
|
@@ -2089,6 +2121,7 @@ module Google
|
|
|
2089
2121
|
collection :effective_labels, as: 'effectiveLabels'
|
|
2090
2122
|
property :engine_id, as: 'engineId'
|
|
2091
2123
|
property :engine_status, as: 'engineStatus'
|
|
2124
|
+
collection :final_mobile_urls, as: 'finalMobileUrls'
|
|
2092
2125
|
property :final_url_suffix, as: 'finalUrlSuffix'
|
|
2093
2126
|
collection :final_urls, as: 'finalUrls'
|
|
2094
2127
|
property :gender, as: 'gender', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonGenderInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonGenderInfo::Representation
|
|
@@ -2110,6 +2143,8 @@ module Google
|
|
|
2110
2143
|
property :status, as: 'status'
|
|
2111
2144
|
property :tracking_url_template, as: 'trackingUrlTemplate'
|
|
2112
2145
|
property :type, as: 'type'
|
|
2146
|
+
collection :url_custom_parameters, as: 'urlCustomParameters', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter::Representation
|
|
2147
|
+
|
|
2113
2148
|
property :user_list, as: 'userList', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonUserListInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonUserListInfo::Representation
|
|
2114
2149
|
|
|
2115
2150
|
property :webpage, as: 'webpage', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonWebpageInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonWebpageInfo::Representation
|
|
@@ -2175,6 +2210,8 @@ module Google
|
|
|
2175
2210
|
|
|
2176
2211
|
property :creation_time, as: 'creationTime'
|
|
2177
2212
|
property :engine_status, as: 'engineStatus'
|
|
2213
|
+
collection :final_mobile_urls, as: 'finalMobileUrls'
|
|
2214
|
+
property :final_url_suffix, as: 'finalUrlSuffix'
|
|
2178
2215
|
collection :final_urls, as: 'finalUrls'
|
|
2179
2216
|
property :id, :numeric_string => true, as: 'id'
|
|
2180
2217
|
property :image_asset, as: 'imageAsset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonImageAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonImageAsset::Representation
|
|
@@ -2195,6 +2232,8 @@ module Google
|
|
|
2195
2232
|
|
|
2196
2233
|
property :tracking_url_template, as: 'trackingUrlTemplate'
|
|
2197
2234
|
property :type, as: 'type'
|
|
2235
|
+
collection :url_custom_parameters, as: 'urlCustomParameters', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonCustomParameter::Representation
|
|
2236
|
+
|
|
2198
2237
|
property :youtube_video_asset, as: 'youtubeVideoAsset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonYoutubeVideoAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonYoutubeVideoAsset::Representation
|
|
2199
2238
|
|
|
2200
2239
|
end
|
|
@@ -2348,6 +2387,7 @@ module Google
|
|
|
2348
2387
|
property :end_date, as: 'endDate'
|
|
2349
2388
|
property :engine_id, as: 'engineId'
|
|
2350
2389
|
collection :excluded_parent_asset_field_types, as: 'excludedParentAssetFieldTypes'
|
|
2390
|
+
collection :feed_types, as: 'feedTypes'
|
|
2351
2391
|
property :final_url_suffix, as: 'finalUrlSuffix'
|
|
2352
2392
|
collection :frequency_caps, as: 'frequencyCaps', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFrequencyCapEntry, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonFrequencyCapEntry::Representation
|
|
2353
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.
|
|
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.
|
|
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:
|
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.6.
|
|
76
|
+
rubygems_version: 3.6.9
|
|
77
77
|
specification_version: 4
|
|
78
78
|
summary: Simple REST client for Search Ads 360 Reporting API V0
|
|
79
79
|
test_files: []
|