feat: Automated regeneration of localservices v1 client
This commit is contained in:
parent
cc6d984945
commit
bb6236f9ab
api_names_out.yaml
generated/google/apis
|
@ -111671,6 +111671,7 @@
|
|||
"/lifesciences:v2beta/quotaUser": quota_user
|
||||
"/localservices:v1/GoogleAdsHomeservicesLocalservicesV1AccountReport": google_ads_homeservices_localservices_v1_account_report
|
||||
"/localservices:v1/GoogleAdsHomeservicesLocalservicesV1AccountReport/accountId": account_id
|
||||
"/localservices:v1/GoogleAdsHomeservicesLocalservicesV1AccountReport/aggregatorInfo": aggregator_info
|
||||
"/localservices:v1/GoogleAdsHomeservicesLocalservicesV1AccountReport/averageFiveStarRating": average_five_star_rating
|
||||
"/localservices:v1/GoogleAdsHomeservicesLocalservicesV1AccountReport/averageWeeklyBudget": average_weekly_budget
|
||||
"/localservices:v1/GoogleAdsHomeservicesLocalservicesV1AccountReport/businessName": business_name
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://ads.google.com/local-services-ads/
|
||||
module LocalservicesV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20201012'
|
||||
REVISION = '20201016'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -32,6 +32,12 @@ module Google
|
|||
# @return [Fixnum]
|
||||
attr_accessor :account_id
|
||||
|
||||
# Conatiner for aggregator specific information if lead is for an aggregator GLS
|
||||
# account.
|
||||
# Corresponds to the JSON property `aggregatorInfo`
|
||||
# @return [Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1AggregatorInfo]
|
||||
attr_accessor :aggregator_info
|
||||
|
||||
# Average review rating score from 1-5 stars.
|
||||
# Corresponds to the JSON property `averageFiveStarRating`
|
||||
# @return [Float]
|
||||
|
@ -117,6 +123,7 @@ module Google
|
|||
# Update properties of this object
|
||||
def update!(**args)
|
||||
@account_id = args[:account_id] if args.key?(:account_id)
|
||||
@aggregator_info = args[:aggregator_info] if args.key?(:aggregator_info)
|
||||
@average_five_star_rating = args[:average_five_star_rating] if args.key?(:average_five_star_rating)
|
||||
@average_weekly_budget = args[:average_weekly_budget] if args.key?(:average_weekly_budget)
|
||||
@business_name = args[:business_name] if args.key?(:business_name)
|
||||
|
|
|
@ -74,6 +74,8 @@ module Google
|
|||
# @private
|
||||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
property :account_id, :numeric_string => true, as: 'accountId'
|
||||
property :aggregator_info, as: 'aggregatorInfo', class: Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1AggregatorInfo, decorator: Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1AggregatorInfo::Representation
|
||||
|
||||
property :average_five_star_rating, as: 'averageFiveStarRating'
|
||||
property :average_weekly_budget, as: 'averageWeeklyBudget'
|
||||
property :business_name, as: 'businessName'
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"git": {
|
||||
"name": ".",
|
||||
"remote": "https://github.com/googleapis/google-api-ruby-client.git",
|
||||
"sha": "c98c719bbab68d0890524d53f8b629d7858af9c2"
|
||||
"sha": "9dbe47b50cf9821abd0b99045aefd29e469d2ca4"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue