Class: Five9::InboundCampaignStats
- Inherits:
-
Statistics
- Object
- Base
- Statistics
- Five9::InboundCampaignStats
- Defined in:
- lib/five9/inbound_campaign_stats.rb
Instance Attribute Summary collapse
-
#stats ⇒ Object
Returns the value of attribute stats.
Instance Method Summary collapse
- #getStatistics(columns = []) ⇒ Object
- #getStatisticsUpdate(long_polling_timeout = 10000) ⇒ Object
-
#initialize(username, password, timeout = 300) ⇒ InboundCampaignStats
constructor
A new instance of InboundCampaignStats.
Methods inherited from Statistics
Constructor Details
#initialize(username, password, timeout = 300) ⇒ InboundCampaignStats
Returns a new instance of InboundCampaignStats.
4 5 6 7 |
# File 'lib/five9/inbound_campaign_stats.rb', line 4 def initialize(username,password,timeout=300) @stats = nil super(username,password,timeout) end |
Instance Attribute Details
#stats ⇒ Object
Returns the value of attribute stats.
3 4 5 |
# File 'lib/five9/inbound_campaign_stats.rb', line 3 def stats @stats end |
Instance Method Details
#getStatistics(columns = []) ⇒ Object
9 10 11 |
# File 'lib/five9/inbound_campaign_stats.rb', line 9 def getStatistics(columns=[]) @stats = super("InboundCampaignStatistics",columns) end |
#getStatisticsUpdate(long_polling_timeout = 10000) ⇒ Object
13 14 15 |
# File 'lib/five9/inbound_campaign_stats.rb', line 13 def getStatisticsUpdate(long_polling_timeout=10000) super("InboundCampaignStatistics","Campaign Name",long_polling_timeout) end |