Class: Google::Apis::RetailV2::GoogleCloudRetailV2alphaModelPageOptimizationConfigPanel
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2::GoogleCloudRetailV2alphaModelPageOptimizationConfigPanel
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2/classes.rb,
lib/google/apis/retail_v2/representations.rb,
lib/google/apis/retail_v2/representations.rb
Overview
An individual panel with a list of ServingConfigs to consider for it.
Instance Attribute Summary collapse
-
#candidates ⇒ Array<Google::Apis::RetailV2::GoogleCloudRetailV2alphaModelPageOptimizationConfigCandidate>
Required.
-
#default_candidate ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2alphaModelPageOptimizationConfigCandidate
A candidate to consider for a given panel.
-
#display_name ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2alphaModelPageOptimizationConfigPanel
constructor
A new instance of GoogleCloudRetailV2alphaModelPageOptimizationConfigPanel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2alphaModelPageOptimizationConfigPanel
Returns a new instance of GoogleCloudRetailV2alphaModelPageOptimizationConfigPanel.
6547 6548 6549 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6547 def initialize(**args) update!(**args) end |
Instance Attribute Details
#candidates ⇒ Array<Google::Apis::RetailV2::GoogleCloudRetailV2alphaModelPageOptimizationConfigCandidate>
Required. The candidates to consider on the panel.
Corresponds to the JSON property candidates
6534 6535 6536 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6534 def candidates @candidates end |
#default_candidate ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2alphaModelPageOptimizationConfigCandidate
A candidate to consider for a given panel. Currently only ServingConfig are
valid candidates.
Corresponds to the JSON property defaultCandidate
6540 6541 6542 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6540 def default_candidate @default_candidate end |
#display_name ⇒ String
Optional. The name to display for the panel.
Corresponds to the JSON property displayName
6545 6546 6547 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6545 def display_name @display_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6552 6553 6554 6555 6556 |
# File 'lib/google/apis/retail_v2/classes.rb', line 6552 def update!(**args) @candidates = args[:candidates] if args.key?(:candidates) @default_candidate = args[:default_candidate] if args.key?(:default_candidate) @display_name = args[:display_name] if args.key?(:display_name) end |