Class: Google::Apis::BusinessprofileperformanceV1::InsightsValue

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#thresholdFixnum

Represents the threshold below which the actual value falls. Corresponds to the JSON property threshold

Returns:

  • (Fixnum)


204
205
206
# File 'lib/google/apis/businessprofileperformance_v1/classes.rb', line 204

def threshold
  @threshold
end

#valueFixnum

Represents the actual value. Corresponds to the JSON property value

Returns:

  • (Fixnum)


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