Class: Discorb::Presence::Activity::Timestamps
- Inherits:
 - 
      DiscordModel
      
        
- Object
 - DiscordModel
 - Discorb::Presence::Activity::Timestamps
 
 
- Defined in:
 - lib/discorb/presence.rb
 
Overview
Represents the timestamps of an activity.
Instance Attribute Summary collapse
- 
  
    
      #end -> Time 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The end time of the activity.
 - 
  
    
      #start -> Time 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The start time of the activity.
 
Method Summary
Methods inherited from DiscordModel
Instance Attribute Details
#end -> Time (readonly)
Returns The end time of the activity.
      141 142 143  | 
    
      # File 'lib/discorb/presence.rb', line 141 def end @end end  | 
  
#start -> Time (readonly)
Returns The start time of the activity.
      139 140 141  | 
    
      # File 'lib/discorb/presence.rb', line 139 def start @start end  |