class Google::Apis::DataflowV1b3::FloatingPointMean
A representation of a floating point mean metric contribution.
Attributes
count[RW]
A representation of an int64, n, that is immune to precision loss when encoded in JSON. Corresponds to the JSON property `count` @return [Google::Apis::DataflowV1b3::SplitInt64]
sum[RW]
The sum of all values being aggregated. Corresponds to the JSON property `sum` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 1667 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 1672 def update!(**args) @count = args[:count] if args.key?(:count) @sum = args[:sum] if args.key?(:sum) end