Class: Google::Shopping::Merchant::Products::V1beta::ProductInput
- Inherits:
-
Object
- Object
- Google::Shopping::Merchant::Products::V1beta::ProductInput
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb
Overview
This resource represents input data you submit for a product, not the processed product that you see in Merchant Center, in Shopping ads, or across Google surfaces. Product inputs, rules and supplemental data source data are combined to create the processed [product][google.shopping.content.bundles.Products.Product].
Required product input attributes to pass data validation checks are primarily defined in the Products Data Specification.
The following attributes are required: [feedLabel][google.shopping.content.bundles.Products.feed_label], [contentLanguage][google.shopping.content.bundles.Products.content_language] and [offerId][google.shopping.content.bundles.Products.offer_id].
After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved.
All fields in the product input and its sub-messages match the English name of their corresponding attribute in the vertical spec with some exceptions.
Instance Attribute Summary collapse
-
#attributes ⇒ ::Google::Shopping::Merchant::Products::V1beta::Attributes
Optional.
-
#channel ⇒ ::Google::Shopping::Type::Channel::ChannelEnum
Required.
-
#content_language ⇒ ::String
Required.
-
#custom_attributes ⇒ ::Array<::Google::Shopping::Type::CustomAttribute>
Optional.
-
#feed_label ⇒ ::String
Required.
-
#name ⇒ ::String
Identifier.
-
#offer_id ⇒ ::String
Required.
-
#product ⇒ ::String
readonly
Output only.
-
#version_number ⇒ ::Integer
Optional.
Instance Attribute Details
#attributes ⇒ ::Google::Shopping::Merchant::Products::V1beta::Attributes
Returns Optional. A list of product attributes.
110 111 112 113 |
# File 'proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb', line 110 class ProductInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#channel ⇒ ::Google::Shopping::Type::Channel::ChannelEnum
Returns Required. Immutable. The channel of the product.
110 111 112 113 |
# File 'proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb', line 110 class ProductInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#content_language ⇒ ::String
Returns Required. Immutable. The two-letter ISO 639-1 language code for the product.
110 111 112 113 |
# File 'proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb', line 110 class ProductInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#custom_attributes ⇒ ::Array<::Google::Shopping::Type::CustomAttribute>
Returns Optional. A list of custom (merchant-provided) attributes. It can also be
used for submitting any attribute of the data specification in its generic
form (for example,
{ "name": "size type", "value": "regular" }
).
This is useful for submitting attributes not explicitly exposed by the
API, such as additional attributes used for Buy on Google.
Maximum allowed number of characters for each
custom attribute is 10240 (represents sum of characters for name and
value). Maximum 2500 custom attributes can be set per product, with total
size of 102.4kB. Underscores in custom attribute names are replaced by
spaces upon insertion.
110 111 112 113 |
# File 'proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb', line 110 class ProductInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#feed_label ⇒ ::String
Returns Required. Immutable. The feed label for the product.
110 111 112 113 |
# File 'proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb', line 110 class ProductInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#name ⇒ ::String
Returns Identifier. The name of the product input.
Format:
"{productinput.name=accounts/{account}/productInputs/{productinput}}"
.
110 111 112 113 |
# File 'proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb', line 110 class ProductInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#offer_id ⇒ ::String
Returns Required. Immutable. Your unique identifier for the product. This is the same for the product input and processed product. Leading and trailing whitespaces are stripped and multiple whitespaces are replaced by a single whitespace upon submission. See the products data specification for details.
110 111 112 113 |
# File 'proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb', line 110 class ProductInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#product ⇒ ::String (readonly)
Returns Output only. The name of the processed product.
Format:
"{product.name=accounts/{account}/products/{product}}"
.
110 111 112 113 |
# File 'proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb', line 110 class ProductInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#version_number ⇒ ::Integer
Returns Optional. Represents the existing version (freshness) of the product, which can be used to preserve the right order when multiple updates are done at the same time.
If set, the insertion is prevented when version number is lower than
the current version number of the existing product. Re-insertion (for
example, product refresh after 30 days) can be performed with the current
version_number
.
Only supported for insertions into primary data sources.
If the operation is prevented, the aborted exception will be thrown.
110 111 112 113 |
# File 'proto_docs/google/shopping/merchant/products/v1beta/productinputs.rb', line 110 class ProductInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |