Class: Google::Apis::DataflowV1b3::IntegerMean
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataflowV1b3::IntegerMean
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb 
Overview
A representation of an integer mean metric contribution.
Instance Attribute Summary collapse
- 
  
    
      #count  ⇒ Google::Apis::DataflowV1b3::SplitInt64 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A representation of an int64, n, that is immune to precision loss when encoded in JSON.
 - 
  
    
      #sum  ⇒ Google::Apis::DataflowV1b3::SplitInt64 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A representation of an int64, n, that is immune to precision loss when encoded in JSON.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ IntegerMean 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of IntegerMean.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ IntegerMean
Returns a new instance of IntegerMean
      1670 1671 1672  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1670 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#count ⇒ Google::Apis::DataflowV1b3::SplitInt64
A representation of an int64, n, that is immune to precision loss when
encoded in JSON.
Corresponds to the JSON property count
      1662 1663 1664  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1662 def count @count end  | 
  
#sum ⇒ Google::Apis::DataflowV1b3::SplitInt64
A representation of an int64, n, that is immune to precision loss when
encoded in JSON.
Corresponds to the JSON property sum
      1668 1669 1670  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1668 def sum @sum end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1675 1676 1677 1678  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1675 def update!(**args) @count = args[:count] if args.key?(:count) @sum = args[:sum] if args.key?(:sum) end  |