Class: Dynamicloud::API::RecordResults
- Inherits:
-
Object
- Object
- Dynamicloud::API::RecordResults
- Defined in:
- lib/dynamic_api.rb
Overview
This class contains data returned from Dynamicloud servers.
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ RecordResults
constructor
A new instance of RecordResults.
Constructor Details
#initialize ⇒ RecordResults
Returns a new instance of RecordResults.
18 19 20 21 22 |
# File 'lib/dynamic_api.rb', line 18 def initialize @records = [] @total_records = 0 @fast_returned_size = 0 end |
Instance Attribute Details
#fast_returned_size ⇒ Object
16 17 18 |
# File 'lib/dynamic_api.rb', line 16 def fast_returned_size @fast_returned_size end |
#records ⇒ Object
16 17 18 |
# File 'lib/dynamic_api.rb', line 16 def records @records end |
#total_records ⇒ Object
16 17 18 |
# File 'lib/dynamic_api.rb', line 16 def total_records @total_records end |