Class: Google::Apis::DataflowV1b3::SplitInt64
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataflowV1b3::SplitInt64
 
 
- 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 int64, n, that is immune to precision loss when encoded in JSON.
Instance Attribute Summary collapse
- 
  
    
      #high_bits  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The high order bits, including the sign: n >> 32.
 - 
  
    
      #low_bits  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The low order bits: n & 0xffffffff.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SplitInt64 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SplitInt64.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SplitInt64
Returns a new instance of SplitInt64
      3993 3994 3995  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3993 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#high_bits ⇒ Fixnum
The high order bits, including the sign: n >> 32.
Corresponds to the JSON property highBits
      3986 3987 3988  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3986 def high_bits @high_bits end  | 
  
#low_bits ⇒ Fixnum
The low order bits: n & 0xffffffff.
Corresponds to the JSON property lowBits
      3991 3992 3993  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3991 def low_bits @low_bits end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3998 3999 4000 4001  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3998 def update!(**args) @high_bits = args[:high_bits] if args.key?(:high_bits) @low_bits = args[:low_bits] if args.key?(:low_bits) end  |