class Google::Apis::DataflowV1b3::IntegerMean
A representation of an integer 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]
A representation of an int64, n, that is immune to precision loss when encoded in JSON. Corresponds to the JSON property `sum` @return [Google::Apis::DataflowV1b3::SplitInt64]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 1980 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 1985 def update!(**args) @count = args[:count] if args.key?(:count) @sum = args[:sum] if args.key?(:sum) end