lib/google/shopping/merchant/promotions/v1/promotions_services_pb.rb
# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: google/shopping/merchant/promotions/v1/promotions.proto for package 'Google.Shopping.Merchant.Promotions.V1' # Original file comments: # Copyright 2025 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require 'grpc' require 'google/shopping/merchant/promotions/v1/promotions_pb' module Google module Shopping module Merchant module Promotions module V1 module PromotionsService # Service to manage promotions for products. class Service include ::GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'google.shopping.merchant.promotions.v1.PromotionsService' # Inserts a promotion for your Merchant Center account. If the promotion # already exists, then it updates the promotion instead. rpc :InsertPromotion, ::Google::Shopping::Merchant::Promotions::V1::InsertPromotionRequest, ::Google::Shopping::Merchant::Promotions::V1::Promotion # Retrieves the promotion from your Merchant Center account. # # After inserting or updating a promotion input, it may take several # minutes before the updated promotion can be retrieved. rpc :GetPromotion, ::Google::Shopping::Merchant::Promotions::V1::GetPromotionRequest, ::Google::Shopping::Merchant::Promotions::V1::Promotion # Lists the promotions in your Merchant Center account. The # response might contain fewer items than specified by `pageSize`. Rely on # `pageToken` to determine if there are more items to be requested. # # After inserting or updating a promotion, it may take several minutes before # the updated processed promotion can be retrieved. rpc :ListPromotions, ::Google::Shopping::Merchant::Promotions::V1::ListPromotionsRequest, ::Google::Shopping::Merchant::Promotions::V1::ListPromotionsResponse end Stub = Service.rpc_stub_class end end end end end end