Class: Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1ProductDetail

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/recommendationengine_v1beta1/classes.rb,
generated/google/apis/recommendationengine_v1beta1/representations.rb,
generated/google/apis/recommendationengine_v1beta1/representations.rb

Overview

Detailed product information associated with a user event.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecommendationengineV1beta1ProductDetail

Returns a new instance of GoogleCloudRecommendationengineV1beta1ProductDetail.



1333
1334
1335
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1333

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

Instance Attribute Details

#available_quantityFixnum

Optional. Quantity of the products in stock when a user event happens. Optional. If provided, this overrides the available quantity in Catalog for this event. and can only be set if stock_status is set to IN_STOCK. Note that if an item is out of stock, you must set the stock_state field to be OUT_OF_STOCK. Leaving this field unspecified / as zero is not sufficient to mark the item out of stock. Corresponds to the JSON property availableQuantity

Returns:

  • (Fixnum)


1286
1287
1288
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1286

def available_quantity
  @available_quantity
end

#currency_codeString

Optional. Currency code for price/costs. Use three-character ISO-4217 code. Required only if originalPrice or displayPrice is set. Corresponds to the JSON property currencyCode

Returns:

  • (String)


1292
1293
1294
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1292

def currency_code
  @currency_code
end

#display_priceFloat

Optional. Display price of the product (e.g. discounted price). If provided, this will override the display price in Catalog for this product. Corresponds to the JSON property displayPrice

Returns:

  • (Float)


1298
1299
1300
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1298

def display_price
  @display_price
end

#idString

Required. Catalog item ID. UTF-8 encoded string with a length limit of 128 characters. Corresponds to the JSON property id

Returns:

  • (String)


1304
1305
1306
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1304

def id
  @id
end

#item_attributesGoogle::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1FeatureMap

FeatureMap represents extra features that customers want to include in the recommendation model for catalogs/user events as categorical/numerical features. Corresponds to the JSON property itemAttributes



1311
1312
1313
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1311

def item_attributes
  @item_attributes
end

#original_priceFloat

Optional. Original price of the product. If provided, this will override the original price in Catalog for this product. Corresponds to the JSON property originalPrice

Returns:

  • (Float)


1317
1318
1319
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1317

def original_price
  @original_price
end

#quantityFixnum

Optional. Quantity of the product associated with the user event. For example, this field will be 2 if two products are added to the shopping cart for add- to-cart event. Required for add-to-cart, add-to-list, remove-from-cart, checkout-start, purchase-complete, refund event types. Corresponds to the JSON property quantity

Returns:

  • (Fixnum)


1325
1326
1327
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1325

def quantity
  @quantity
end

#stock_stateString

Optional. Item stock state. If provided, this overrides the stock state in Catalog for items in this event. Corresponds to the JSON property stockState

Returns:

  • (String)


1331
1332
1333
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1331

def stock_state
  @stock_state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
# File 'generated/google/apis/recommendationengine_v1beta1/classes.rb', line 1338

def update!(**args)
  @available_quantity = args[:available_quantity] if args.key?(:available_quantity)
  @currency_code = args[:currency_code] if args.key?(:currency_code)
  @display_price = args[:display_price] if args.key?(:display_price)
  @id = args[:id] if args.key?(:id)
  @item_attributes = args[:item_attributes] if args.key?(:item_attributes)
  @original_price = args[:original_price] if args.key?(:original_price)
  @quantity = args[:quantity] if args.key?(:quantity)
  @stock_state = args[:stock_state] if args.key?(:stock_state)
end