google-apis-searchads360_v0 0.15.0 → 0.16.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: dea63f1167e4ad7f835419ce1cb4ec64e88995ca777e61026a0fe3b676c6af19
|
4
|
+
data.tar.gz: 5fa17d872451243d6b0a1d61b21e405500108314c173fb7b1617b3165f428fb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d340708af0f415c24f5339f0aa51b7d914933eab163bcc52151cb80aa808669ec1abc3b800ee1a68f3c95396cafd60e05fe6f3a0119d1b7a43c1445946805f9
|
7
|
+
data.tar.gz: 1baa37885915f257069841db06d07997e3719816d9b1c13cfe8d768d483d2a39eb42e2974f914aaf0c2a25c30d235640db5d84ab17a55ae69ecaf903f2314096
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-searchads360_v0
|
2
2
|
|
3
|
+
### v0.16.0 (2024-08-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240808
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.15.0 (2024-05-19)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.15.0
|
@@ -75,6 +75,25 @@ module Google
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
+
# A text asset used inside an ad.
|
79
|
+
class GoogleAdsSearchads360V0CommonAdTextAsset
|
80
|
+
include Google::Apis::Core::Hashable
|
81
|
+
|
82
|
+
# Asset text.
|
83
|
+
# Corresponds to the JSON property `text`
|
84
|
+
# @return [String]
|
85
|
+
attr_accessor :text
|
86
|
+
|
87
|
+
def initialize(**args)
|
88
|
+
update!(**args)
|
89
|
+
end
|
90
|
+
|
91
|
+
# Update properties of this object
|
92
|
+
def update!(**args)
|
93
|
+
@text = args[:text] if args.key?(:text)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
78
97
|
# An age range criterion.
|
79
98
|
class GoogleAdsSearchads360V0CommonAgeRangeInfo
|
80
99
|
include Google::Apis::Core::Hashable
|
@@ -777,6 +796,11 @@ module Google
|
|
777
796
|
# @return [Float]
|
778
797
|
attr_accessor :average_cpm
|
779
798
|
|
799
|
+
# The average quality score.
|
800
|
+
# Corresponds to the JSON property `averageQualityScore`
|
801
|
+
# @return [Float]
|
802
|
+
attr_accessor :average_quality_score
|
803
|
+
|
780
804
|
# The number of clicks.
|
781
805
|
# Corresponds to the JSON property `clicks`
|
782
806
|
# @return [Fixnum]
|
@@ -1430,6 +1454,7 @@ module Google
|
|
1430
1454
|
@average_cost = args[:average_cost] if args.key?(:average_cost)
|
1431
1455
|
@average_cpc = args[:average_cpc] if args.key?(:average_cpc)
|
1432
1456
|
@average_cpm = args[:average_cpm] if args.key?(:average_cpm)
|
1457
|
+
@average_quality_score = args[:average_quality_score] if args.key?(:average_quality_score)
|
1433
1458
|
@clicks = args[:clicks] if args.key?(:clicks)
|
1434
1459
|
@client_account_conversions = args[:client_account_conversions] if args.key?(:client_account_conversions)
|
1435
1460
|
@client_account_conversions_value = args[:client_account_conversions_value] if args.key?(:client_account_conversions_value)
|
@@ -1693,6 +1718,18 @@ module Google
|
|
1693
1718
|
# @return [Fixnum]
|
1694
1719
|
attr_accessor :ad_tracking_id
|
1695
1720
|
|
1721
|
+
# List of text assets for descriptions. When the ad serves the descriptions will
|
1722
|
+
# be selected from this list.
|
1723
|
+
# Corresponds to the JSON property `descriptions`
|
1724
|
+
# @return [Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonAdTextAsset>]
|
1725
|
+
attr_accessor :descriptions
|
1726
|
+
|
1727
|
+
# List of text assets for headlines. When the ad serves the headlines will be
|
1728
|
+
# selected from this list.
|
1729
|
+
# Corresponds to the JSON property `headlines`
|
1730
|
+
# @return [Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonAdTextAsset>]
|
1731
|
+
attr_accessor :headlines
|
1732
|
+
|
1696
1733
|
# Text appended to the auto-generated visible URL with a delimiter.
|
1697
1734
|
# Corresponds to the JSON property `path1`
|
1698
1735
|
# @return [String]
|
@@ -1710,6 +1747,8 @@ module Google
|
|
1710
1747
|
# Update properties of this object
|
1711
1748
|
def update!(**args)
|
1712
1749
|
@ad_tracking_id = args[:ad_tracking_id] if args.key?(:ad_tracking_id)
|
1750
|
+
@descriptions = args[:descriptions] if args.key?(:descriptions)
|
1751
|
+
@headlines = args[:headlines] if args.key?(:headlines)
|
1713
1752
|
@path1 = args[:path1] if args.key?(:path1)
|
1714
1753
|
@path2 = args[:path2] if args.key?(:path2)
|
1715
1754
|
end
|
@@ -1813,6 +1852,31 @@ module Google
|
|
1813
1852
|
# @return [String]
|
1814
1853
|
attr_accessor :device
|
1815
1854
|
|
1855
|
+
# Resource name of the geo target constant that represents a city.
|
1856
|
+
# Corresponds to the JSON property `geoTargetCity`
|
1857
|
+
# @return [String]
|
1858
|
+
attr_accessor :geo_target_city
|
1859
|
+
|
1860
|
+
# Resource name of the geo target constant that represents a country.
|
1861
|
+
# Corresponds to the JSON property `geoTargetCountry`
|
1862
|
+
# @return [String]
|
1863
|
+
attr_accessor :geo_target_country
|
1864
|
+
|
1865
|
+
# Resource name of the geo target constant that represents a metro.
|
1866
|
+
# Corresponds to the JSON property `geoTargetMetro`
|
1867
|
+
# @return [String]
|
1868
|
+
attr_accessor :geo_target_metro
|
1869
|
+
|
1870
|
+
# Resource name of the geo target constant that represents a region.
|
1871
|
+
# Corresponds to the JSON property `geoTargetRegion`
|
1872
|
+
# @return [String]
|
1873
|
+
attr_accessor :geo_target_region
|
1874
|
+
|
1875
|
+
# Hour of day as a number between 0 and 23, inclusive.
|
1876
|
+
# Corresponds to the JSON property `hour`
|
1877
|
+
# @return [Fixnum]
|
1878
|
+
attr_accessor :hour
|
1879
|
+
|
1816
1880
|
# A Keyword criterion segment.
|
1817
1881
|
# Corresponds to the JSON property `keyword`
|
1818
1882
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeyword]
|
@@ -2078,6 +2142,11 @@ module Google
|
|
2078
2142
|
@date = args[:date] if args.key?(:date)
|
2079
2143
|
@day_of_week = args[:day_of_week] if args.key?(:day_of_week)
|
2080
2144
|
@device = args[:device] if args.key?(:device)
|
2145
|
+
@geo_target_city = args[:geo_target_city] if args.key?(:geo_target_city)
|
2146
|
+
@geo_target_country = args[:geo_target_country] if args.key?(:geo_target_country)
|
2147
|
+
@geo_target_metro = args[:geo_target_metro] if args.key?(:geo_target_metro)
|
2148
|
+
@geo_target_region = args[:geo_target_region] if args.key?(:geo_target_region)
|
2149
|
+
@hour = args[:hour] if args.key?(:hour)
|
2081
2150
|
@keyword = args[:keyword] if args.key?(:keyword)
|
2082
2151
|
@month = args[:month] if args.key?(:month)
|
2083
2152
|
@product_bidding_category_level1 = args[:product_bidding_category_level1] if args.key?(:product_bidding_category_level1)
|
@@ -2317,11 +2386,12 @@ module Google
|
|
2317
2386
|
# @return [Fixnum]
|
2318
2387
|
attr_accessor :cpc_bid_ceiling_micros
|
2319
2388
|
|
2320
|
-
# The spend target under which to maximize clicks. A TargetSpend
|
2321
|
-
# attempt to spend the smaller of this value or the natural
|
2322
|
-
# amount. If not specified, the budget is used as the spend
|
2323
|
-
# is deprecated and should no longer be used. See https://ads-
|
2324
|
-
# googleblog.com/2020/05/reminder-about-sunset-creation-of.html for
|
2389
|
+
# Deprecated: The spend target under which to maximize clicks. A TargetSpend
|
2390
|
+
# bidder will attempt to spend the smaller of this value or the natural
|
2391
|
+
# throttling spend amount. If not specified, the budget is used as the spend
|
2392
|
+
# target. This field is deprecated and should no longer be used. See https://ads-
|
2393
|
+
# developers.googleblog.com/2020/05/reminder-about-sunset-creation-of.html for
|
2394
|
+
# details.
|
2325
2395
|
# Corresponds to the JSON property `targetSpendMicros`
|
2326
2396
|
# @return [Fixnum]
|
2327
2397
|
attr_accessor :target_spend_micros
|
@@ -2382,7 +2452,7 @@ module Google
|
|
2382
2452
|
class GoogleAdsSearchads360V0CommonTextLabel
|
2383
2453
|
include Google::Apis::Core::Hashable
|
2384
2454
|
|
2385
|
-
# Background color of the label in
|
2455
|
+
# Background color of the label in HEX format. This string must match the
|
2386
2456
|
# regular expression '^\#([a-fA-F0-9]`6`|[a-fA-F0-9]`3`)$'. Note: The background
|
2387
2457
|
# color may not be visible for manager accounts.
|
2388
2458
|
# Corresponds to the JSON property `backgroundColor`
|
@@ -3037,7 +3107,7 @@ module Google
|
|
3037
3107
|
end
|
3038
3108
|
end
|
3039
3109
|
|
3040
|
-
#
|
3110
|
+
# Search Ads 360-specific error.
|
3041
3111
|
class GoogleAdsSearchads360V0ErrorsSearchAds360Error
|
3042
3112
|
include Google::Apis::Core::Hashable
|
3043
3113
|
|
@@ -4138,8 +4208,8 @@ module Google
|
|
4138
4208
|
attr_accessor :creation_time
|
4139
4209
|
|
4140
4210
|
# Output only. ID of the ad in the external engine account. This field is for
|
4141
|
-
#
|
4142
|
-
# For non-
|
4211
|
+
# Search Ads 360 account only, for example, Yahoo Japan, Microsoft, Baidu etc.
|
4212
|
+
# For non-Search Ads 360 entity, use "ad_group_ad.ad.id" instead.
|
4143
4213
|
# Corresponds to the JSON property `engineId`
|
4144
4214
|
# @return [String]
|
4145
4215
|
attr_accessor :engine_id
|
@@ -6057,9 +6127,9 @@ module Google
|
|
6057
6127
|
# @return [Fixnum]
|
6058
6128
|
attr_accessor :id
|
6059
6129
|
|
6060
|
-
# Output only. The
|
6061
|
-
# was clicked on.
|
6062
|
-
# account in
|
6130
|
+
# Output only. The Search Ads 360 inventory account ID containing the product
|
6131
|
+
# that was clicked on. Search Ads 360 generates this ID when you link an
|
6132
|
+
# inventory account in Search Ads 360.
|
6063
6133
|
# Corresponds to the JSON property `merchantId`
|
6064
6134
|
# @return [Fixnum]
|
6065
6135
|
attr_accessor :merchant_id
|
@@ -6105,7 +6175,7 @@ module Google
|
|
6105
6175
|
# @return [String]
|
6106
6176
|
attr_accessor :status
|
6107
6177
|
|
6108
|
-
# Output only. The
|
6178
|
+
# Output only. The Search Ads 360 visit ID that the conversion is attributed to.
|
6109
6179
|
# Corresponds to the JSON property `visitId`
|
6110
6180
|
# @return [Fixnum]
|
6111
6181
|
attr_accessor :visit_id
|
@@ -6819,6 +6889,12 @@ module Google
|
|
6819
6889
|
# @return [String]
|
6820
6890
|
attr_accessor :resource_name
|
6821
6891
|
|
6892
|
+
# Output only. The timestamp when the CustomerManagerLink was created. The
|
6893
|
+
# timestamp is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss" format.
|
6894
|
+
# Corresponds to the JSON property `startTime`
|
6895
|
+
# @return [String]
|
6896
|
+
attr_accessor :start_time
|
6897
|
+
|
6822
6898
|
# Status of the link between the customer and the manager.
|
6823
6899
|
# Corresponds to the JSON property `status`
|
6824
6900
|
# @return [String]
|
@@ -6833,6 +6909,7 @@ module Google
|
|
6833
6909
|
@manager_customer = args[:manager_customer] if args.key?(:manager_customer)
|
6834
6910
|
@manager_link_id = args[:manager_link_id] if args.key?(:manager_link_id)
|
6835
6911
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
6912
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
6836
6913
|
@status = args[:status] if args.key?(:status)
|
6837
6914
|
end
|
6838
6915
|
end
|
@@ -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.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240808"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class GoogleAdsSearchads360V0CommonAdTextAsset
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class GoogleAdsSearchads360V0CommonAgeRangeInfo
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -987,6 +993,13 @@ module Google
|
|
987
993
|
end
|
988
994
|
end
|
989
995
|
|
996
|
+
class GoogleAdsSearchads360V0CommonAdTextAsset
|
997
|
+
# @private
|
998
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
999
|
+
property :text, as: 'text'
|
1000
|
+
end
|
1001
|
+
end
|
1002
|
+
|
990
1003
|
class GoogleAdsSearchads360V0CommonAgeRangeInfo
|
991
1004
|
# @private
|
992
1005
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1192,6 +1205,7 @@ module Google
|
|
1192
1205
|
property :average_cost, as: 'averageCost'
|
1193
1206
|
property :average_cpc, as: 'averageCpc'
|
1194
1207
|
property :average_cpm, as: 'averageCpm'
|
1208
|
+
property :average_quality_score, as: 'averageQualityScore'
|
1195
1209
|
property :clicks, :numeric_string => true, as: 'clicks'
|
1196
1210
|
property :client_account_conversions, as: 'clientAccountConversions'
|
1197
1211
|
property :client_account_conversions_value, as: 'clientAccountConversionsValue'
|
@@ -1320,6 +1334,10 @@ module Google
|
|
1320
1334
|
# @private
|
1321
1335
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1322
1336
|
property :ad_tracking_id, :numeric_string => true, as: 'adTrackingId'
|
1337
|
+
collection :descriptions, as: 'descriptions', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonAdTextAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonAdTextAsset::Representation
|
1338
|
+
|
1339
|
+
collection :headlines, as: 'headlines', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonAdTextAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonAdTextAsset::Representation
|
1340
|
+
|
1323
1341
|
property :path1, as: 'path1'
|
1324
1342
|
property :path2, as: 'path2'
|
1325
1343
|
end
|
@@ -1351,6 +1369,11 @@ module Google
|
|
1351
1369
|
property :date, as: 'date'
|
1352
1370
|
property :day_of_week, as: 'dayOfWeek'
|
1353
1371
|
property :device, as: 'device'
|
1372
|
+
property :geo_target_city, as: 'geoTargetCity'
|
1373
|
+
property :geo_target_country, as: 'geoTargetCountry'
|
1374
|
+
property :geo_target_metro, as: 'geoTargetMetro'
|
1375
|
+
property :geo_target_region, as: 'geoTargetRegion'
|
1376
|
+
property :hour, as: 'hour'
|
1354
1377
|
property :keyword, as: 'keyword', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeyword, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeyword::Representation
|
1355
1378
|
|
1356
1379
|
property :month, as: 'month'
|
@@ -2561,6 +2584,7 @@ module Google
|
|
2561
2584
|
property :manager_customer, as: 'managerCustomer'
|
2562
2585
|
property :manager_link_id, :numeric_string => true, as: 'managerLinkId'
|
2563
2586
|
property :resource_name, as: 'resourceName'
|
2587
|
+
property :start_time, as: 'startTime'
|
2564
2588
|
property :status, as: 'status'
|
2565
2589
|
end
|
2566
2590
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-searchads360_v0/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-searchads360_v0/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-searchads360_v0/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-searchads360_v0
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|