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