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.



132
133
134
# File 'lib/google/apis/businessprofileperformance_v1/classes.rb', line 132

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)


125
126
127
# File 'lib/google/apis/businessprofileperformance_v1/classes.rb', line 125

def threshold
  @threshold
end

#valueFixnum

Represents the actual value. Corresponds to the JSON property value

Returns:

  • (Fixnum)


130
131
132
# File 'lib/google/apis/businessprofileperformance_v1/classes.rb', line 130

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



137
138
139
140
# File 'lib/google/apis/businessprofileperformance_v1/classes.rb', line 137

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