Class: Google::Apis::BusinessprofileperformanceV1::InsightsValue
- Inherits:
-
Object
- Object
- Google::Apis::BusinessprofileperformanceV1::InsightsValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/businessprofileperformance_v1/classes.rb,
lib/google/apis/businessprofileperformance_v1/representations.rb,
lib/google/apis/businessprofileperformance_v1/representations.rb
Overview
Represents an insights value.
Instance Attribute Summary collapse
-
#threshold ⇒ Fixnum
Represents the threshold below which the actual value falls.
-
#value ⇒ Fixnum
Represents the actual value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InsightsValue
constructor
A new instance of InsightsValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InsightsValue
Returns a new instance of InsightsValue.
211 212 213 |
# File 'lib/google/apis/businessprofileperformance_v1/classes.rb', line 211 def initialize(**args) update!(**args) end |
Instance Attribute Details
#threshold ⇒ Fixnum
Represents the threshold below which the actual value falls.
Corresponds to the JSON property threshold
204 205 206 |
# File 'lib/google/apis/businessprofileperformance_v1/classes.rb', line 204 def threshold @threshold end |
#value ⇒ Fixnum
Represents the actual value.
Corresponds to the JSON property value
209 210 211 |
# File 'lib/google/apis/businessprofileperformance_v1/classes.rb', line 209 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
216 217 218 219 |
# File 'lib/google/apis/businessprofileperformance_v1/classes.rb', line 216 def update!(**args) @threshold = args[:threshold] if args.key?(:threshold) @value = args[:value] if args.key?(:value) end |