Class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaCatalog

Inherits:
Object
  • Object
show all
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

The catalog configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2alphaCatalog

Returns a new instance of GoogleCloudRetailV2alphaCatalog.



1604
1605
1606
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1604

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#display_nameString

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

Returns:

  • (String)


1585
1586
1587
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1585

def display_name
  @display_name
end

#merchant_center_linking_configGoogle::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterLinkingConfig

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



1591
1592
1593
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1591

def merchant_center_linking_config
  @merchant_center_linking_config
end

#nameString

Required. Immutable. The fully qualified resource name of the catalog. Corresponds to the JSON property name

Returns:

  • (String)


1596
1597
1598
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1596

def name
  @name
end

#product_level_configGoogle::Apis::RetailV2alpha::GoogleCloudRetailV2alphaProductLevelConfig

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



1602
1603
1604
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1602

def product_level_config
  @product_level_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1609
1610
1611
1612
1613
1614
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1609

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