class Google::Apis::DataflowV1b3::Point
A point in the timeseries.
Attributes
time[RW]
The timestamp of the point. Corresponds to the JSON property `time` @return [String]
value[RW]
The value of the point. Corresponds to the JSON property `value` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 3446 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 3451 def update!(**args) @time = args[:time] if args.key?(:time) @value = args[:value] if args.key?(:value) end