Class: Gridspace::JoinConference
- Inherits:
-
BaseCommand
- Object
- JSONable
- BaseCommand
- Gridspace::JoinConference
- Defined in:
- lib/gridspace/commands.rb
Instance Attribute Summary collapse
-
#conference_name ⇒ Object
Returns the value of attribute conference_name.
-
#hold_music ⇒ Object
Returns the value of attribute hold_music.
-
#on_done ⇒ Object
Returns the value of attribute on_done.
-
#on_talk_time ⇒ Object
Returns the value of attribute on_talk_time.
-
#on_transcript ⇒ Object
Returns the value of attribute on_transcript.
Instance Method Summary collapse
-
#initialize(conference_name, on_done = nil, hold_music = nil, on_talk_time = nil, on_transcript = nil) ⇒ JoinConference
constructor
A new instance of JoinConference.
Methods inherited from BaseCommand
Methods inherited from JSONable
Constructor Details
#initialize(conference_name, on_done = nil, hold_music = nil, on_talk_time = nil, on_transcript = nil) ⇒ JoinConference
Returns a new instance of JoinConference.
54 55 56 57 58 59 60 |
# File 'lib/gridspace/commands.rb', line 54 def initialize conference_name, on_done = nil, hold_music = nil, on_talk_time = nil, on_transcript = nil @conference_name = conference_name @hold_music = hold_music @on_done = on_done @on_talk_time = on_talk_time @on_transcript = on_transcript end |
Instance Attribute Details
#conference_name ⇒ Object
Returns the value of attribute conference_name.
53 54 55 |
# File 'lib/gridspace/commands.rb', line 53 def conference_name @conference_name end |
#hold_music ⇒ Object
Returns the value of attribute hold_music.
53 54 55 |
# File 'lib/gridspace/commands.rb', line 53 def hold_music @hold_music end |
#on_done ⇒ Object
Returns the value of attribute on_done.
53 54 55 |
# File 'lib/gridspace/commands.rb', line 53 def on_done @on_done end |
#on_talk_time ⇒ Object
Returns the value of attribute on_talk_time.
53 54 55 |
# File 'lib/gridspace/commands.rb', line 53 def on_talk_time @on_talk_time end |
#on_transcript ⇒ Object
Returns the value of attribute on_transcript.
53 54 55 |
# File 'lib/gridspace/commands.rb', line 53 def on_transcript @on_transcript end |