Class: Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange

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

Overview

Product price range when there are a range of prices for different variations of the same product.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange

Returns a new instance of GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange.



1291
1292
1293
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1291

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

Instance Attribute Details

#maxFloat

Required. The maximum product price. Corresponds to the JSON property max

Returns:

  • (Float)


1284
1285
1286
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1284

def max
  @max
end

#minFloat

Required. The minimum product price. Corresponds to the JSON property min

Returns:

  • (Float)


1289
1290
1291
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1289

def min
  @min
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1296
1297
1298
1299
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1296

def update!(**args)
  @max = args[:max] if args.key?(:max)
  @min = args[:min] if args.key?(:min)
end