class Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1Catalog

The catalog configuration. Next ID: 5.

Attributes

catalog_item_level_config[RW]

Configures the catalog level that users send events to, and the level at which predictions are made. Corresponds to the JSON property `catalogItemLevelConfig` @return [Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1CatalogItemLevelConfig]

default_event_store_id[RW]

Required. The ID of the default event store. Corresponds to the JSON property `defaultEventStoreId` @return [String]

display_name[RW]

Required. The catalog display name. Corresponds to the JSON property `displayName` @return [String]

name[RW]

The fully qualified resource name of the catalog. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/recommendationengine_v1beta1/classes.rb, line 218
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/recommendationengine_v1beta1/classes.rb, line 223
def update!(**args)
  @catalog_item_level_config = args[:catalog_item_level_config] if args.key?(:catalog_item_level_config)
  @default_event_store_id = args[:default_event_store_id] if args.key?(:default_event_store_id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
end