Class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaProductLevelConfig
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaProductLevelConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2alpha/classes.rb,
lib/google/apis/retail_v2alpha/representations.rb,
lib/google/apis/retail_v2alpha/representations.rb
Overview
Configures what level the product should be uploaded with regards to how users will be send events and how predictions will be made.
Instance Attribute Summary collapse
-
#ingestion_product_type ⇒ String
The type of Products allowed to be ingested into the catalog.
-
#merchant_center_product_id_field ⇒ String
Which field of Merchant Center Product should be imported as Product.id.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2alphaProductLevelConfig
constructor
A new instance of GoogleCloudRetailV2alphaProductLevelConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2alphaProductLevelConfig
Returns a new instance of GoogleCloudRetailV2alphaProductLevelConfig.
2862 2863 2864 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2862 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ingestion_product_type ⇒ String
The type of Products allowed to be ingested into the catalog. Acceptable
values are: * primary (default): You can ingest Products of all types. When
ingesting a Product, its type will default to Product.Type.PRIMARY if unset. *
variant: You can only ingest Product.Type.VARIANT Products. This means
Product.primary_product_id cannot be empty. If this field is set to an invalid
value other than these, an INVALID_ARGUMENT error is returned. If this field
is variant and merchant_center_product_id_field is itemGroupId, an
INVALID_ARGUMENT error is returned. See Using product levels for more
details.
Corresponds to the JSON property ingestionProductType
2846 2847 2848 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2846 def ingestion_product_type @ingestion_product_type end |
#merchant_center_product_id_field ⇒ String
Which field of Merchant Center Product should be imported as Product.id. Acceptable values
are: * offerId (default): Import offerId as the product ID. * itemGroupId
: Import itemGroupId as the product ID. Notice that Retail API will choose
one item from the ones with the same itemGroupId, and use it to represent
the item group. If this field is set to an invalid value other than these, an
INVALID_ARGUMENT error is returned. If this field is itemGroupId and
ingestion_product_type is variant, an INVALID_ARGUMENT error is returned.
See Using product levels for more details.
Corresponds to the JSON property merchantCenterProductIdField
2860 2861 2862 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2860 def merchant_center_product_id_field @merchant_center_product_id_field end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2867 2868 2869 2870 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2867 def update!(**args) @ingestion_product_type = args[:ingestion_product_type] if args.key?(:ingestion_product_type) @merchant_center_product_id_field = args[:merchant_center_product_id_field] if args.key?(:merchant_center_product_id_field) end |