Class: Google::Shopping::Merchant::Products::V1::GetProductRequest
- Inherits:
-
Object
- Object
- Google::Shopping::Merchant::Products::V1::GetProductRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/shopping/merchant/products/v1/products.rb
Overview
Request message for the GetProduct method.
Instance Attribute Summary collapse
-
#name ⇒ ::String
Required.
Instance Attribute Details
#name ⇒ ::String
Returns Required. The name of the product to retrieve.
Format:
accounts/{account}/products/{product}
where the last
section product
consists of:
content_language~feed_label~offer_id
example for product name is accounts/123/products/en~US~sku123
. A legacy
local product name would be accounts/123/products/local~en~US~sku123
.
Note: For calls to the v1beta version, the product
section consists
of: channel~content_language~feed_label~offer_id
, for example:
accounts/123/products/online~en~US~sku123
.
130 131 132 133 |
# File 'proto_docs/google/shopping/merchant/products/v1/products.rb', line 130 class GetProductRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |