Class: ZUORA::QueryResult
- Inherits:
-
Object
- Object
- ZUORA::QueryResult
- Defined in:
- lib/zuora/ZUORA.rb
Overview
Instance Attribute Summary collapse
-
#done ⇒ Object
Returns the value of attribute done.
-
#queryLocator ⇒ Object
Returns the value of attribute queryLocator.
-
#records ⇒ Object
Returns the value of attribute records.
-
#size ⇒ Object
Returns the value of attribute size.
Instance Method Summary collapse
-
#initialize(done = nil, queryLocator = nil, records = [], size = nil) ⇒ QueryResult
constructor
A new instance of QueryResult.
Constructor Details
#initialize(done = nil, queryLocator = nil, records = [], size = nil) ⇒ QueryResult
Returns a new instance of QueryResult.
1089 1090 1091 1092 1093 1094 |
# File 'lib/zuora/ZUORA.rb', line 1089 def initialize(done = nil, queryLocator = nil, records = [], size = nil) @done = done @queryLocator = queryLocator @records = records @size = size end |
Instance Attribute Details
#done ⇒ Object
Returns the value of attribute done.
1084 1085 1086 |
# File 'lib/zuora/ZUORA.rb', line 1084 def done @done end |
#queryLocator ⇒ Object
Returns the value of attribute queryLocator.
1085 1086 1087 |
# File 'lib/zuora/ZUORA.rb', line 1085 def queryLocator @queryLocator end |
#records ⇒ Object
Returns the value of attribute records.
1086 1087 1088 |
# File 'lib/zuora/ZUORA.rb', line 1086 def records @records end |
#size ⇒ Object
Returns the value of attribute size.
1087 1088 1089 |
# File 'lib/zuora/ZUORA.rb', line 1087 def size @size end |