google-apis-localservices_v1 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d04f011945a3f040b1ffeb270322cfb9e59779b50c14b9182377374ff4e424ee
4
- data.tar.gz: 2088524aee84ddf82e5e9c7412ac938babd376a012995e0a70c8b1b14dddf6bc
3
+ metadata.gz: d60bad7544f2f7a42a09b0ebead632611ef61607e6ee21d08f265a9eeca24700
4
+ data.tar.gz: 882fa42b963a9fbffd8eb949c53455aca2ea710fc86f567dca57112c4936a7a3
5
5
  SHA512:
6
- metadata.gz: d2a0c76153ae56c071ba95cbdd7677dad9a456840f61f95cd79a73b93bd15e0cfbef34e3ac2c63e531a9d0adf047f819a5def1841556207d8eafb153e01e2144
7
- data.tar.gz: e0855c145c7955c43e178e14b805c2b52832b18a55fdc50445218dfe285a070784b4fc1d8d2ff4b72a2cfcc40c7942ba9130c1a84c2b00b3e4e1716495afd95d
6
+ metadata.gz: 3fcc24b2263f162bca7d44e70ea58f1006837d825b75119fa935c21b23671b2d2f3140b75bfd3f1ef0ca230dd7494ea5b636f23baaf553dc3e9cc95d664c7b7e
7
+ data.tar.gz: fbd2aa6cd0c7172606e9204de5f35480c6cee9fd91d1854049b35cee43b5665c98b2540b31385e5a10f974743741c3b24ec8e52ad82f8dffd861953fdc6ef457
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-localservices_v1
2
2
 
3
+ ### v0.7.0 (2021-10-13)
4
+
5
+ * Regenerated from discovery document revision 20211011
6
+
3
7
  ### v0.6.0 (2021-06-29)
4
8
 
5
9
  * Regenerated using generator version 0.4.0
@@ -168,6 +168,49 @@ module Google
168
168
  end
169
169
  end
170
170
 
171
+ # Container for booking lead specific information.
172
+ class GoogleAdsHomeservicesLocalservicesV1BookingLead
173
+ include Google::Apis::Core::Hashable
174
+
175
+ # Timestamp of when service is provided by advertiser.
176
+ # Corresponds to the JSON property `bookingAppointmentTimestamp`
177
+ # @return [String]
178
+ attr_accessor :booking_appointment_timestamp
179
+
180
+ # Consumer email associated with the booking lead.
181
+ # Corresponds to the JSON property `consumerEmail`
182
+ # @return [String]
183
+ attr_accessor :consumer_email
184
+
185
+ # Consumer phone number associated with the booking lead.
186
+ # Corresponds to the JSON property `consumerPhoneNumber`
187
+ # @return [String]
188
+ attr_accessor :consumer_phone_number
189
+
190
+ # Name of the customer who created the lead.
191
+ # Corresponds to the JSON property `customerName`
192
+ # @return [String]
193
+ attr_accessor :customer_name
194
+
195
+ # The job type of the specified lead.
196
+ # Corresponds to the JSON property `jobType`
197
+ # @return [String]
198
+ attr_accessor :job_type
199
+
200
+ def initialize(**args)
201
+ update!(**args)
202
+ end
203
+
204
+ # Update properties of this object
205
+ def update!(**args)
206
+ @booking_appointment_timestamp = args[:booking_appointment_timestamp] if args.key?(:booking_appointment_timestamp)
207
+ @consumer_email = args[:consumer_email] if args.key?(:consumer_email)
208
+ @consumer_phone_number = args[:consumer_phone_number] if args.key?(:consumer_phone_number)
209
+ @customer_name = args[:customer_name] if args.key?(:customer_name)
210
+ @job_type = args[:job_type] if args.key?(:job_type)
211
+ end
212
+ end
213
+
171
214
  # A Detailed Lead Report of a lead identified by their lead id and contains
172
215
  # consumer, account, monetization, and lead data.
173
216
  class GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport
@@ -184,6 +227,11 @@ module Google
184
227
  # @return [Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1AggregatorInfo]
185
228
  attr_accessor :aggregator_info
186
229
 
230
+ # Container for booking lead specific information.
231
+ # Corresponds to the JSON property `bookingLead`
232
+ # @return [Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1BookingLead]
233
+ attr_accessor :booking_lead
234
+
187
235
  # Business name associated to the account.
188
236
  # Corresponds to the JSON property `businessName`
189
237
  # @return [String]
@@ -258,6 +306,7 @@ module Google
258
306
  def update!(**args)
259
307
  @account_id = args[:account_id] if args.key?(:account_id)
260
308
  @aggregator_info = args[:aggregator_info] if args.key?(:aggregator_info)
309
+ @booking_lead = args[:booking_lead] if args.key?(:booking_lead)
261
310
  @business_name = args[:business_name] if args.key?(:business_name)
262
311
  @charge_status = args[:charge_status] if args.key?(:charge_status)
263
312
  @currency_code = args[:currency_code] if args.key?(:currency_code)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module LocalservicesV1
18
18
  # Version of the google-apis-localservices_v1 gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210330"
25
+ REVISION = "20211011"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,12 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class GoogleAdsHomeservicesLocalservicesV1BookingLead
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
37
43
  class GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport
38
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
45
 
@@ -101,12 +107,25 @@ module Google
101
107
  end
102
108
  end
103
109
 
110
+ class GoogleAdsHomeservicesLocalservicesV1BookingLead
111
+ # @private
112
+ class Representation < Google::Apis::Core::JsonRepresentation
113
+ property :booking_appointment_timestamp, as: 'bookingAppointmentTimestamp'
114
+ property :consumer_email, as: 'consumerEmail'
115
+ property :consumer_phone_number, as: 'consumerPhoneNumber'
116
+ property :customer_name, as: 'customerName'
117
+ property :job_type, as: 'jobType'
118
+ end
119
+ end
120
+
104
121
  class GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport
105
122
  # @private
106
123
  class Representation < Google::Apis::Core::JsonRepresentation
107
124
  property :account_id, :numeric_string => true, as: 'accountId'
108
125
  property :aggregator_info, as: 'aggregatorInfo', class: Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1AggregatorInfo, decorator: Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1AggregatorInfo::Representation
109
126
 
127
+ property :booking_lead, as: 'bookingLead', class: Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1BookingLead, decorator: Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1BookingLead::Representation
128
+
110
129
  property :business_name, as: 'businessName'
111
130
  property :charge_status, as: 'chargeStatus'
112
131
  property :currency_code, as: 'currencyCode'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-localservices_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.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: 2021-07-05 00:00:00.000000000 Z
11
+ date: 2021-10-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/master/generated/google-apis-localservices_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-localservices_v1/v0.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-localservices_v1/v0.7.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-localservices_v1
63
63
  post_install_message:
64
64
  rdoc_options: []