Class: PropertiesSortlocalesResponse
- Inherits:
-
PropertiesResponse
- Object
- Response
- PropertiesResponse
- PropertiesSortlocalesResponse
- Defined in:
- lib/refworks/properties/sortlocales/properties_sortlocales_response.rb
Instance Attribute Summary collapse
-
#sortlocales ⇒ Object
readonly
Returns the value of attribute sortlocales.
Attributes inherited from Response
#body, #parsed_response, #process_time, #result_code, #result_msg, #result_msg_code
Instance Method Summary collapse
-
#initialize(raw_response) ⇒ PropertiesSortlocalesResponse
constructor
A new instance of PropertiesSortlocalesResponse.
Constructor Details
#initialize(raw_response) ⇒ PropertiesSortlocalesResponse
Returns a new instance of PropertiesSortlocalesResponse.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/refworks/properties/sortlocales/properties_sortlocales_response.rb', line 4 def initialize(raw_response) super(raw_response) if result_code != "200" @total = "0" return end # If results returned, process the locales and metadata locs = self.parsed_response["refworks"]["RWResult"]["PropertiesResult"]["sortLocale"] @sortlocales = Array.new locs.each do |loc| @sortlocales << Sortlocale.new(loc) end end |
Instance Attribute Details
#sortlocales ⇒ Object (readonly)
Returns the value of attribute sortlocales.
2 3 4 |
# File 'lib/refworks/properties/sortlocales/properties_sortlocales_response.rb', line 2 def sortlocales @sortlocales end |