Class: Etapper::API::PagedJournalEntriesResponse
- Inherits:
-
Object
- Object
- Etapper::API::PagedJournalEntriesResponse
- 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) ⇒ PagedJournalEntriesResponse
constructor
A new instance of PagedJournalEntriesResponse.
Constructor Details
#initialize(count = nil, data = nil, pages = nil, start = nil, total = nil, usedCache = nil) ⇒ PagedJournalEntriesResponse
Returns a new instance of PagedJournalEntriesResponse.
1462 1463 1464 1465 1466 1467 1468 1469 |
# File 'lib/etapper/api/service.rb', line 1462 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.
1455 1456 1457 |
# File 'lib/etapper/api/service.rb', line 1455 def count @count end |
#data ⇒ Object
Returns the value of attribute data.
1456 1457 1458 |
# File 'lib/etapper/api/service.rb', line 1456 def data @data end |
#pages ⇒ Object
Returns the value of attribute pages.
1457 1458 1459 |
# File 'lib/etapper/api/service.rb', line 1457 def pages @pages end |
#start ⇒ Object
Returns the value of attribute start.
1458 1459 1460 |
# File 'lib/etapper/api/service.rb', line 1458 def start @start end |
#total ⇒ Object
Returns the value of attribute total.
1459 1460 1461 |
# File 'lib/etapper/api/service.rb', line 1459 def total @total end |
#usedCache ⇒ Object
Returns the value of attribute usedCache.
1460 1461 1462 |
# File 'lib/etapper/api/service.rb', line 1460 def usedCache @usedCache end |