Class: Vonage::Meetings

Inherits:
Namespace
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/vonage/meetings.rb

Defined Under Namespace

Classes: Applications, DialInNumbers, Recordings, Rooms, Sessions, Themes

Instance Method Summary collapse

Instance Method Details

#applicationsObject



38
39
40
41
# File 'lib/vonage/meetings.rb', line 38

def applications
  logger.info('This method is deprecated and will be removed in a future release.')
  @applications ||= Applications.new(@config)
end

#dial_in_numbersObject



45
46
47
48
# File 'lib/vonage/meetings.rb', line 45

def dial_in_numbers
  logger.info('This method is deprecated and will be removed in a future release.')
  @dial_in_numbers ||= DialInNumbers.new(@config)
end

#recordingsObject



17
18
19
20
# File 'lib/vonage/meetings.rb', line 17

def recordings
  logger.info('This method is deprecated and will be removed in a future release.')
  @recordings ||= Recordings.new(@config)
end

#roomsObject



10
11
12
13
# File 'lib/vonage/meetings.rb', line 10

def rooms
  logger.info('This method is deprecated and will be removed in a future release.')
  @rooms ||= Rooms.new(@config)
end

#sessionsObject



24
25
26
27
# File 'lib/vonage/meetings.rb', line 24

def sessions
  logger.info('This method is deprecated and will be removed in a future release.')
  @sessions ||= Sessions.new(@config)
end

#themesObject



31
32
33
34
# File 'lib/vonage/meetings.rb', line 31

def themes
  logger.info('This method is deprecated and will be removed in a future release.')
  @themes ||= Themes.new(@config)
end