class MessageBird::CallFlowList
Constants
- CURRENT_PAGE
- PER_PAGE
Attributes
currentPage[RW]
pageCount[RW]
perPage[RW]
totalCount[RW]
Public Instance Methods
data=(value)
click to toggle source
# File lib/messagebird/callflow.rb, line 33 def data=(value) self.items = value end
pagination=(value)
click to toggle source
# File lib/messagebird/callflow.rb, line 37 def pagination=(value) value.each do |k, v| send("#{k}=", v) rescue NoMethodError puts 'An error occurred while listing callflows' end end