google-apis-searchads360_v0 0.15.0 → 0.17.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: f4189a733ea7e77d02949f502a5794aacf064777aeecd5c0914fbee3b9f143ff
|
4
|
+
data.tar.gz: f5789fdfc5fc11ddbd15925f31cbc1f6c5e16fe1390e21cdb187a4b748daa95f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6a49fd08563b38782ead74f2e123441a8580f7a1eb4ec13d4942875d3a293c7098d26351d43b4dfd08245602eb2d45ab7439d083e854c1e45b083ff47953544
|
7
|
+
data.tar.gz: 1c89b9521826f7829c165c110172aaec6a5b954d961e521d3dde1e68f4a2d22a21a01c4eb1f3335043189aede9082b769588b1318a62a3bbdd7ec4498712904e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-searchads360_v0
|
2
2
|
|
3
|
+
### v0.17.0 (2024-08-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240822
|
6
|
+
|
7
|
+
### v0.16.0 (2024-08-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240808
|
10
|
+
* Regenerated using generator version 0.15.1
|
11
|
+
|
3
12
|
### v0.15.0 (2024-05-19)
|
4
13
|
|
5
14
|
* 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
|
@@ -4205,6 +4275,11 @@ module Google
|
|
4205
4275
|
# @return [String]
|
4206
4276
|
attr_accessor :label
|
4207
4277
|
|
4278
|
+
# Output only. The ID of the Customer which owns the label.
|
4279
|
+
# Corresponds to the JSON property `ownerCustomerId`
|
4280
|
+
# @return [Fixnum]
|
4281
|
+
attr_accessor :owner_customer_id
|
4282
|
+
|
4208
4283
|
# Immutable. The resource name of the ad group ad label. Ad group ad label
|
4209
4284
|
# resource names have the form: `customers/`customer_id`/adGroupAdLabels/`
|
4210
4285
|
# ad_group_id`~`ad_id`~`label_id``
|
@@ -4220,6 +4295,7 @@ module Google
|
|
4220
4295
|
def update!(**args)
|
4221
4296
|
@ad_group_ad = args[:ad_group_ad] if args.key?(:ad_group_ad)
|
4222
4297
|
@label = args[:label] if args.key?(:label)
|
4298
|
+
@owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id)
|
4223
4299
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
4224
4300
|
end
|
4225
4301
|
end
|
@@ -4565,6 +4641,11 @@ module Google
|
|
4565
4641
|
# @return [String]
|
4566
4642
|
attr_accessor :label
|
4567
4643
|
|
4644
|
+
# Output only. The ID of the Customer which owns the label.
|
4645
|
+
# Corresponds to the JSON property `ownerCustomerId`
|
4646
|
+
# @return [Fixnum]
|
4647
|
+
attr_accessor :owner_customer_id
|
4648
|
+
|
4568
4649
|
# Immutable. The resource name of the ad group criterion label. Ad group
|
4569
4650
|
# criterion label resource names have the form: `customers/`customer_id`/
|
4570
4651
|
# adGroupCriterionLabels/`ad_group_id`~`criterion_id`~`label_id``
|
@@ -4580,6 +4661,7 @@ module Google
|
|
4580
4661
|
def update!(**args)
|
4581
4662
|
@ad_group_criterion = args[:ad_group_criterion] if args.key?(:ad_group_criterion)
|
4582
4663
|
@label = args[:label] if args.key?(:label)
|
4664
|
+
@owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id)
|
4583
4665
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
4584
4666
|
end
|
4585
4667
|
end
|
@@ -4598,6 +4680,11 @@ module Google
|
|
4598
4680
|
# @return [String]
|
4599
4681
|
attr_accessor :label
|
4600
4682
|
|
4683
|
+
# Output only. The ID of the Customer which owns the label.
|
4684
|
+
# Corresponds to the JSON property `ownerCustomerId`
|
4685
|
+
# @return [Fixnum]
|
4686
|
+
attr_accessor :owner_customer_id
|
4687
|
+
|
4601
4688
|
# Immutable. The resource name of the ad group label. Ad group label resource
|
4602
4689
|
# names have the form: `customers/`customer_id`/adGroupLabels/`ad_group_id`~`
|
4603
4690
|
# label_id``
|
@@ -4613,6 +4700,7 @@ module Google
|
|
4613
4700
|
def update!(**args)
|
4614
4701
|
@ad_group = args[:ad_group] if args.key?(:ad_group)
|
4615
4702
|
@label = args[:label] if args.key?(:label)
|
4703
|
+
@owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id)
|
4616
4704
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
4617
4705
|
end
|
4618
4706
|
end
|
@@ -5927,6 +6015,11 @@ module Google
|
|
5927
6015
|
# @return [String]
|
5928
6016
|
attr_accessor :label
|
5929
6017
|
|
6018
|
+
# Output only. The ID of the Customer which owns the label.
|
6019
|
+
# Corresponds to the JSON property `ownerCustomerId`
|
6020
|
+
# @return [Fixnum]
|
6021
|
+
attr_accessor :owner_customer_id
|
6022
|
+
|
5930
6023
|
# Immutable. Name of the resource. Campaign label resource names have the form: `
|
5931
6024
|
# customers/`customer_id`/campaignLabels/`campaign_id`~`label_id``
|
5932
6025
|
# Corresponds to the JSON property `resourceName`
|
@@ -5941,6 +6034,7 @@ module Google
|
|
5941
6034
|
def update!(**args)
|
5942
6035
|
@campaign = args[:campaign] if args.key?(:campaign)
|
5943
6036
|
@label = args[:label] if args.key?(:label)
|
6037
|
+
@owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id)
|
5944
6038
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
5945
6039
|
end
|
5946
6040
|
end
|
@@ -6057,9 +6151,9 @@ module Google
|
|
6057
6151
|
# @return [Fixnum]
|
6058
6152
|
attr_accessor :id
|
6059
6153
|
|
6060
|
-
# Output only. The
|
6061
|
-
# was clicked on.
|
6062
|
-
# account in
|
6154
|
+
# Output only. The Search Ads 360 inventory account ID containing the product
|
6155
|
+
# that was clicked on. Search Ads 360 generates this ID when you link an
|
6156
|
+
# inventory account in Search Ads 360.
|
6063
6157
|
# Corresponds to the JSON property `merchantId`
|
6064
6158
|
# @return [Fixnum]
|
6065
6159
|
attr_accessor :merchant_id
|
@@ -6105,7 +6199,7 @@ module Google
|
|
6105
6199
|
# @return [String]
|
6106
6200
|
attr_accessor :status
|
6107
6201
|
|
6108
|
-
# Output only. The
|
6202
|
+
# Output only. The Search Ads 360 visit ID that the conversion is attributed to.
|
6109
6203
|
# Corresponds to the JSON property `visitId`
|
6110
6204
|
# @return [Fixnum]
|
6111
6205
|
attr_accessor :visit_id
|
@@ -6475,6 +6569,11 @@ module Google
|
|
6475
6569
|
attr_accessor :references_metrics
|
6476
6570
|
alias_method :references_metrics?, :references_metrics
|
6477
6571
|
|
6572
|
+
# Output only. How the result value of the custom column should be interpreted.
|
6573
|
+
# Corresponds to the JSON property `renderType`
|
6574
|
+
# @return [String]
|
6575
|
+
attr_accessor :render_type
|
6576
|
+
|
6478
6577
|
# Immutable. The resource name of the custom column. Custom column resource
|
6479
6578
|
# names have the form: `customers/`customer_id`/customColumns/`custom_column_id``
|
6480
6579
|
# Corresponds to the JSON property `resourceName`
|
@@ -6499,6 +6598,7 @@ module Google
|
|
6499
6598
|
@referenced_system_columns = args[:referenced_system_columns] if args.key?(:referenced_system_columns)
|
6500
6599
|
@references_attributes = args[:references_attributes] if args.key?(:references_attributes)
|
6501
6600
|
@references_metrics = args[:references_metrics] if args.key?(:references_metrics)
|
6601
|
+
@render_type = args[:render_type] if args.key?(:render_type)
|
6502
6602
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
6503
6603
|
@value_type = args[:value_type] if args.key?(:value_type)
|
6504
6604
|
end
|
@@ -6819,6 +6919,12 @@ module Google
|
|
6819
6919
|
# @return [String]
|
6820
6920
|
attr_accessor :resource_name
|
6821
6921
|
|
6922
|
+
# Output only. The timestamp when the CustomerManagerLink was created. The
|
6923
|
+
# timestamp is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss" format.
|
6924
|
+
# Corresponds to the JSON property `startTime`
|
6925
|
+
# @return [String]
|
6926
|
+
attr_accessor :start_time
|
6927
|
+
|
6822
6928
|
# Status of the link between the customer and the manager.
|
6823
6929
|
# Corresponds to the JSON property `status`
|
6824
6930
|
# @return [String]
|
@@ -6833,6 +6939,7 @@ module Google
|
|
6833
6939
|
@manager_customer = args[:manager_customer] if args.key?(:manager_customer)
|
6834
6940
|
@manager_link_id = args[:manager_link_id] if args.key?(:manager_link_id)
|
6835
6941
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
6942
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
6836
6943
|
@status = args[:status] if args.key?(:status)
|
6837
6944
|
end
|
6838
6945
|
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.17.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 = "20240822"
|
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'
|
@@ -1964,6 +1987,7 @@ module Google
|
|
1964
1987
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1965
1988
|
property :ad_group_ad, as: 'adGroupAd'
|
1966
1989
|
property :label, as: 'label'
|
1990
|
+
property :owner_customer_id, :numeric_string => true, as: 'ownerCustomerId'
|
1967
1991
|
property :resource_name, as: 'resourceName'
|
1968
1992
|
end
|
1969
1993
|
end
|
@@ -2051,6 +2075,7 @@ module Google
|
|
2051
2075
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2052
2076
|
property :ad_group_criterion, as: 'adGroupCriterion'
|
2053
2077
|
property :label, as: 'label'
|
2078
|
+
property :owner_customer_id, :numeric_string => true, as: 'ownerCustomerId'
|
2054
2079
|
property :resource_name, as: 'resourceName'
|
2055
2080
|
end
|
2056
2081
|
end
|
@@ -2060,6 +2085,7 @@ module Google
|
|
2060
2085
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2061
2086
|
property :ad_group, as: 'adGroup'
|
2062
2087
|
property :label, as: 'label'
|
2088
|
+
property :owner_customer_id, :numeric_string => true, as: 'ownerCustomerId'
|
2063
2089
|
property :resource_name, as: 'resourceName'
|
2064
2090
|
end
|
2065
2091
|
end
|
@@ -2382,6 +2408,7 @@ module Google
|
|
2382
2408
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2383
2409
|
property :campaign, as: 'campaign'
|
2384
2410
|
property :label, as: 'label'
|
2411
|
+
property :owner_customer_id, :numeric_string => true, as: 'ownerCustomerId'
|
2385
2412
|
property :resource_name, as: 'resourceName'
|
2386
2413
|
end
|
2387
2414
|
end
|
@@ -2488,6 +2515,7 @@ module Google
|
|
2488
2515
|
collection :referenced_system_columns, as: 'referencedSystemColumns'
|
2489
2516
|
property :references_attributes, as: 'referencesAttributes'
|
2490
2517
|
property :references_metrics, as: 'referencesMetrics'
|
2518
|
+
property :render_type, as: 'renderType'
|
2491
2519
|
property :resource_name, as: 'resourceName'
|
2492
2520
|
property :value_type, as: 'valueType'
|
2493
2521
|
end
|
@@ -2561,6 +2589,7 @@ module Google
|
|
2561
2589
|
property :manager_customer, as: 'managerCustomer'
|
2562
2590
|
property :manager_link_id, :numeric_string => true, as: 'managerLinkId'
|
2563
2591
|
property :resource_name, as: 'resourceName'
|
2592
|
+
property :start_time, as: 'startTime'
|
2564
2593
|
property :status, as: 'status'
|
2565
2594
|
end
|
2566
2595
|
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.17.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-25 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.17.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: []
|