Class: Discorb::Activity
- Inherits:
 - 
      Object
      
        
- Object
 - Discorb::Activity
 
 
- Defined in:
 - lib/discorb/gateway_requests.rb
 
Overview
Represents an activity for Gateway Command.
Instance Method Summary collapse
- 
  
    
      #initialize(name, type = :playing, url = nil) -> Activity 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
Initializes a new Activity.
 - 
  
    
      #to_hash -> Hash 
    
    
  
  
  
  
  
  
  
  
  
    
Converts the activity to a hash.
 
Constructor Details
#initialize(name, type = :playing, url = nil) -> Activity
Initializes a new Activity.
      23 24 25 26 27  | 
    
      # File 'lib/discorb/gateway_requests.rb', line 23 def initialize(name, type = :playing, url = nil) @name = name @type = self.class.types[type] @url = url end  | 
  
Instance Method Details
#to_hash -> Hash
Converts the activity to a hash.
      34 35 36 37 38 39 40  | 
    
      # File 'lib/discorb/gateway_requests.rb', line 34 def to_hash { name: @name, type: @type, url: @url, } end  |