Module: Google::Shopping::Merchant::Reports
- Defined in:
- lib/google/shopping/merchant/reports.rb,
lib/google/shopping/merchant/reports/version.rb
Constant Summary collapse
- VERSION =
"0.3.0"
Class Method Summary collapse
-
.report_service(version: :v1beta, transport: :grpc, &block) ⇒ ::Object
Create a new client object for ReportService.
Class Method Details
.report_service(version: :v1beta, transport: :grpc, &block) ⇒ ::Object
Create a new client object for ReportService.
By default, this returns an instance of
Google::Shopping::Merchant::Reports::V1beta::ReportService::Client
for a gRPC client for version V1beta of the API.
However, you can specify a different API version by passing it in the
version
parameter. If the ReportService service is
supported by that API version, and the corresponding gem is available, the
appropriate versioned client will be returned.
You can also specify a different transport by passing :rest
or :grpc
in
the transport
parameter.
About ReportService
Service for retrieving reports and insights about your products, their performance, and their competitive environment on Google.
54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/google/shopping/merchant/reports.rb', line 54 def self.report_service version: :v1beta, transport: :grpc, &block require "google/shopping/merchant/reports/#{version.to_s.downcase}" package_name = Google::Shopping::Merchant::Reports .constants .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") } .first service_module = Google::Shopping::Merchant::Reports.const_get(package_name).const_get(:ReportService) service_module = service_module.const_get(:Rest) if transport == :rest service_module.const_get(:Client).new(&block) end |