Class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1Impact
- Inherits:
-
Object
- Object
- Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1Impact
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/recommender_v1beta1/classes.rb,
generated/google/apis/recommender_v1beta1/representations.rb,
generated/google/apis/recommender_v1beta1/representations.rb
Overview
Contains the impact a recommendation can have for a given category.
Instance Attribute Summary collapse
-
#category ⇒ String
Category that is being targeted.
-
#cost_projection ⇒ Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1CostProjection
Contains metadata about how much money a recommendation can save or incur.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRecommenderV1beta1Impact
constructor
A new instance of GoogleCloudRecommenderV1beta1Impact.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRecommenderV1beta1Impact
Returns a new instance of GoogleCloudRecommenderV1beta1Impact.
64 65 66 |
# File 'generated/google/apis/recommender_v1beta1/classes.rb', line 64 def initialize(**args) update!(**args) end |
Instance Attribute Details
#category ⇒ String
Category that is being targeted.
Corresponds to the JSON property category
57 58 59 |
# File 'generated/google/apis/recommender_v1beta1/classes.rb', line 57 def category @category end |
#cost_projection ⇒ Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1CostProjection
Contains metadata about how much money a recommendation can save or incur.
Corresponds to the JSON property costProjection
62 63 64 |
# File 'generated/google/apis/recommender_v1beta1/classes.rb', line 62 def cost_projection @cost_projection end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
69 70 71 72 |
# File 'generated/google/apis/recommender_v1beta1/classes.rb', line 69 def update!(**args) @category = args[:category] if args.key?(:category) @cost_projection = args[:cost_projection] if args.key?(:cost_projection) end |