Class: Discorb::Activity

Inherits:
Object
  • Object
show all
Defined in:
lib/discorb/gateway_requests.rb

Overview

Represents an activity for Gateway Command.

Instance Method Summary collapse

Constructor Details

#initialize(name, type = :playing, url = nil) -> Activity

Initializes a new Activity.

Parameters:

  • name (String)

    The name of the activity.

  • type (:playing, :streaming, :listening, :watching, :competing) (defaults to: :playing)

    The type of activity.

  • url (String) (defaults to: nil)

    The URL of the 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.

Returns:

  • (Hash)

    A hash representation of the activity.



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