Class: Etapper::API::PagedQueryResultsResponse
- Inherits:
-
Object
- Object
- Etapper::API::PagedQueryResultsResponse
- Defined in:
- lib/etapper/api/service.rb
Overview
Instance Attribute Summary collapse
-
#count ⇒ Object
Returns the value of attribute count.
-
#data ⇒ Object
Returns the value of attribute data.
-
#pages ⇒ Object
Returns the value of attribute pages.
-
#start ⇒ Object
Returns the value of attribute start.
-
#total ⇒ Object
Returns the value of attribute total.
-
#usedCache ⇒ Object
Returns the value of attribute usedCache.
Instance Method Summary collapse
-
#initialize(count = nil, data = nil, pages = nil, start = nil, total = nil, usedCache = nil) ⇒ PagedQueryResultsResponse
constructor
A new instance of PagedQueryResultsResponse.
Constructor Details
#initialize(count = nil, data = nil, pages = nil, start = nil, total = nil, usedCache = nil) ⇒ PagedQueryResultsResponse
Returns a new instance of PagedQueryResultsResponse.
1487 1488 1489 1490 1491 1492 1493 1494 |
# File 'lib/etapper/api/service.rb', line 1487 def initialize(count = nil, data = nil, pages = nil, start = nil, total = nil, usedCache = nil) @count = count @data = data @pages = pages @start = start @total = total @usedCache = usedCache end |
Instance Attribute Details
#count ⇒ Object
Returns the value of attribute count.
1480 1481 1482 |
# File 'lib/etapper/api/service.rb', line 1480 def count @count end |
#data ⇒ Object
Returns the value of attribute data.
1481 1482 1483 |
# File 'lib/etapper/api/service.rb', line 1481 def data @data end |
#pages ⇒ Object
Returns the value of attribute pages.
1482 1483 1484 |
# File 'lib/etapper/api/service.rb', line 1482 def pages @pages end |
#start ⇒ Object
Returns the value of attribute start.
1483 1484 1485 |
# File 'lib/etapper/api/service.rb', line 1483 def start @start end |
#total ⇒ Object
Returns the value of attribute total.
1484 1485 1486 |
# File 'lib/etapper/api/service.rb', line 1484 def total @total end |
#usedCache ⇒ Object
Returns the value of attribute usedCache.
1485 1486 1487 |
# File 'lib/etapper/api/service.rb', line 1485 def usedCache @usedCache end |