Class: Google::Apis::AndroidpublisherV3::Timestamp
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV3::Timestamp
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #nanos  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
nanos. - 
  
    
      #seconds  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
seconds. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Timestamp 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Timestamp.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Timestamp
Returns a new instance of Timestamp
      1651 1652 1653  | 
    
      # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1651 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#nanos ⇒ Fixnum
Corresponds to the JSON property nanos
      1644 1645 1646  | 
    
      # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1644 def nanos @nanos end  | 
  
#seconds ⇒ Fixnum
Corresponds to the JSON property seconds
      1649 1650 1651  | 
    
      # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1649 def seconds @seconds end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1656 1657 1658 1659  | 
    
      # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1656 def update!(**args) @nanos = args[:nanos] if args.key?(:nanos) @seconds = args[:seconds] if args.key?(:seconds) end  |