Class: Gridspace::JoinConference

Inherits:
BaseCommand show all
Defined in:
lib/gridspace/commands.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from BaseCommand

#class_name, #to_json

Methods inherited from JSONable

#from_json!, #to_json

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_nameObject

Returns the value of attribute conference_name.



53
54
55
# File 'lib/gridspace/commands.rb', line 53

def conference_name
  @conference_name
end

#hold_musicObject

Returns the value of attribute hold_music.



53
54
55
# File 'lib/gridspace/commands.rb', line 53

def hold_music
  @hold_music
end

#on_doneObject

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_timeObject

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_transcriptObject

Returns the value of attribute on_transcript.



53
54
55
# File 'lib/gridspace/commands.rb', line 53

def on_transcript
  @on_transcript
end