Class: Discorb::Presence::Activity::Timestamps

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

Overview

Represents the timestamps of an activity.

Instance Attribute Summary collapse

Method Summary

Methods inherited from DiscordModel

#==, #eql?, #inspect

Instance Attribute Details

#end -> Time (readonly)

Returns The end time of the activity.

Returns:

  • (Time)

    The end time of the activity.



156
157
158
# File 'lib/discorb/presence.rb', line 156

def end
  @end
end

#start -> Time (readonly)

Returns The start time of the activity.

Returns:

  • (Time)

    The start time of the activity.



154
155
156
# File 'lib/discorb/presence.rb', line 154

def start
  @start
end