google-apis-searchads360_v0 0.3.0 → 0.4.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: 92f322a0dfb035172ddbceac78b82d4122d9f048b59d2fffb0ed834a78d15d7d
|
4
|
+
data.tar.gz: b123654c11be0110231d899aea53436d28f1a3a81e35d7c77ed40036d2229e78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efce1eaa18198b3852dba95bb49dea76a48cf1c457eecd73497df0cc7d0735f33a79ace0097a07730105776cd18c28bb8abe0f9d07bfed6f3b6924546ef7d22c
|
7
|
+
data.tar.gz: 0e199257d3b06fefdb5a43f4c237d6c686189504f272da74e51d297c65035a483f94d88e82296acdd23d87d0d974e8f988da52906e3c59a190311d9fe9680ad1
|
data/CHANGELOG.md
CHANGED
@@ -964,55 +964,6 @@ module Google
|
|
964
964
|
end
|
965
965
|
end
|
966
966
|
|
967
|
-
# A Search Ads 360 text ad.
|
968
|
-
class GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo
|
969
|
-
include Google::Apis::Core::Hashable
|
970
|
-
|
971
|
-
# The tracking id of the ad.
|
972
|
-
# Corresponds to the JSON property `adTrackId`
|
973
|
-
# @return [Fixnum]
|
974
|
-
attr_accessor :ad_track_id
|
975
|
-
|
976
|
-
# The first line of the ad's description.
|
977
|
-
# Corresponds to the JSON property `description1`
|
978
|
-
# @return [String]
|
979
|
-
attr_accessor :description1
|
980
|
-
|
981
|
-
# The second line of the ad's description.
|
982
|
-
# Corresponds to the JSON property `description2`
|
983
|
-
# @return [String]
|
984
|
-
attr_accessor :description2
|
985
|
-
|
986
|
-
# The displayed mobile URL of the ad.
|
987
|
-
# Corresponds to the JSON property `displayMobileUrl`
|
988
|
-
# @return [String]
|
989
|
-
attr_accessor :display_mobile_url
|
990
|
-
|
991
|
-
# The displayed URL of the ad.
|
992
|
-
# Corresponds to the JSON property `displayUrl`
|
993
|
-
# @return [String]
|
994
|
-
attr_accessor :display_url
|
995
|
-
|
996
|
-
# The headline of the ad.
|
997
|
-
# Corresponds to the JSON property `headline`
|
998
|
-
# @return [String]
|
999
|
-
attr_accessor :headline
|
1000
|
-
|
1001
|
-
def initialize(**args)
|
1002
|
-
update!(**args)
|
1003
|
-
end
|
1004
|
-
|
1005
|
-
# Update properties of this object
|
1006
|
-
def update!(**args)
|
1007
|
-
@ad_track_id = args[:ad_track_id] if args.key?(:ad_track_id)
|
1008
|
-
@description1 = args[:description1] if args.key?(:description1)
|
1009
|
-
@description2 = args[:description2] if args.key?(:description2)
|
1010
|
-
@display_mobile_url = args[:display_mobile_url] if args.key?(:display_mobile_url)
|
1011
|
-
@display_url = args[:display_url] if args.key?(:display_url)
|
1012
|
-
@headline = args[:headline] if args.key?(:headline)
|
1013
|
-
end
|
1014
|
-
end
|
1015
|
-
|
1016
967
|
# Segment only fields.
|
1017
968
|
class GoogleAdsSearchads360V0CommonSegments
|
1018
969
|
include Google::Apis::Core::Hashable
|
@@ -2107,11 +2058,6 @@ module Google
|
|
2107
2058
|
# @return [String]
|
2108
2059
|
attr_accessor :resource_name
|
2109
2060
|
|
2110
|
-
# A Search Ads 360 text ad.
|
2111
|
-
# Corresponds to the JSON property `textAd`
|
2112
|
-
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo]
|
2113
|
-
attr_accessor :text_ad
|
2114
|
-
|
2115
2061
|
# Output only. The type of ad.
|
2116
2062
|
# Corresponds to the JSON property `type`
|
2117
2063
|
# @return [String]
|
@@ -2128,7 +2074,6 @@ module Google
|
|
2128
2074
|
@id = args[:id] if args.key?(:id)
|
2129
2075
|
@name = args[:name] if args.key?(:name)
|
2130
2076
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
2131
|
-
@text_ad = args[:text_ad] if args.key?(:text_ad)
|
2132
2077
|
@type = args[:type] if args.key?(:type)
|
2133
2078
|
end
|
2134
2079
|
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.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230405"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -136,12 +136,6 @@ module Google
|
|
136
136
|
include Google::Apis::Core::JsonObjectSupport
|
137
137
|
end
|
138
138
|
|
139
|
-
class GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo
|
140
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
-
|
142
|
-
include Google::Apis::Core::JsonObjectSupport
|
143
|
-
end
|
144
|
-
|
145
139
|
class GoogleAdsSearchads360V0CommonSegments
|
146
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
141
|
|
@@ -785,18 +779,6 @@ module Google
|
|
785
779
|
end
|
786
780
|
end
|
787
781
|
|
788
|
-
class GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo
|
789
|
-
# @private
|
790
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
791
|
-
property :ad_track_id, :numeric_string => true, as: 'adTrackId'
|
792
|
-
property :description1, as: 'description1'
|
793
|
-
property :description2, as: 'description2'
|
794
|
-
property :display_mobile_url, as: 'displayMobileUrl'
|
795
|
-
property :display_url, as: 'displayUrl'
|
796
|
-
property :headline, as: 'headline'
|
797
|
-
end
|
798
|
-
end
|
799
|
-
|
800
782
|
class GoogleAdsSearchads360V0CommonSegments
|
801
783
|
# @private
|
802
784
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1098,8 +1080,6 @@ module Google
|
|
1098
1080
|
property :id, :numeric_string => true, as: 'id'
|
1099
1081
|
property :name, as: 'name'
|
1100
1082
|
property :resource_name, as: 'resourceName'
|
1101
|
-
property :text_ad, as: 'textAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo::Representation
|
1102
|
-
|
1103
1083
|
property :type, as: 'type'
|
1104
1084
|
end
|
1105
1085
|
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.4.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: 2023-04-
|
11
|
+
date: 2023-04-16 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.4.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: []
|