Class: Vonage::ProactiveConnect
- Inherits:
-
Namespace
- Object
- Namespace
- Vonage::ProactiveConnect
show all
- Extended by:
- T::Sig
- Defined in:
- lib/vonage/proactive_connect.rb
Defined Under Namespace
Classes: Events, Item, Items, List, Lists
Instance Method Summary
collapse
Instance Method Details
#events ⇒ Object
38
39
40
41
|
# File 'lib/vonage/proactive_connect.rb', line 38
def events
logger.info('This method is deprecated and will be removed in a future release.')
@events ||= Events.new(@config)
end
|
#item ⇒ Object
31
32
33
34
|
# File 'lib/vonage/proactive_connect.rb', line 31
def item
logger.info('This method is deprecated and will be removed in a future release.')
@item ||= Item.new(@config)
end
|
#items ⇒ Object
24
25
26
27
|
# File 'lib/vonage/proactive_connect.rb', line 24
def items
logger.info('This method is deprecated and will be removed in a future release.')
@items ||= Items.new(@config)
end
|
#list ⇒ Object
17
18
19
20
|
# File 'lib/vonage/proactive_connect.rb', line 17
def list
logger.info('This method is deprecated and will be removed in a future release.')
@list ||= List.new(@config)
end
|
#lists ⇒ Object
10
11
12
13
|
# File 'lib/vonage/proactive_connect.rb', line 10
def lists
logger.info('This method is deprecated and will be removed in a future release.')
@lists ||= Lists.new(@config)
end
|