class Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaCatalog
The catalog configuration.
Attributes
Required. Immutable. The catalog display name. This field must be a UTF-8 encoded string with a length limit of 128 characters. Otherwise, an INVALID_ARGUMENT error is returned. Corresponds to the JSON property `displayName` @return [String]
Configures Merchant Center linking. Links contained in the config will be used to sync data from a Merchant Center account to a Cloud Retail branch. Corresponds to the JSON property `merchantCenterLinkingConfig` @return [Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterLinkingConfig]
Required. Immutable. The fully qualified resource name of the catalog. Corresponds to the JSON property `name` @return [String]
Configures what level the product should be uploaded with regards to how users will be send events and how predictions will be made. Corresponds to the JSON property `productLevelConfig` @return [Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaProductLevelConfig]
Public Class Methods
# File lib/google/apis/retail_v2alpha/classes.rb, line 840 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/retail_v2alpha/classes.rb, line 845 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @merchant_center_linking_config = args[:merchant_center_linking_config] if args.key?(:merchant_center_linking_config) @name = args[:name] if args.key?(:name) @product_level_config = args[:product_level_config] if args.key?(:product_level_config) end