Class: PropertiesOutputlanguageResponse

Inherits:
PropertiesResponse show all
Defined in:
lib/refworks/properties/outputlanguage/properties_outputlanguage_response.rb

Instance Attribute Summary collapse

Attributes inherited from Response

#body, #parsed_response, #process_time, #result_code, #result_msg, #result_msg_code

Instance Method Summary collapse

Constructor Details

#initialize(raw_response) ⇒ PropertiesOutputlanguageResponse

Returns a new instance of PropertiesOutputlanguageResponse.



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/refworks/properties/outputlanguage/properties_outputlanguage_response.rb', line 4

def initialize(raw_response)
  super(raw_response)
  if result_code != "200"
    @total = "0"
    return
  end

  # If results returned, process the languages and metadata

  langs = self.parsed_response["refworks"]["RWResult"]["PropertiesResult"]["outputLang"]

  @outputlanguages = Array.new
  langs.each do |lang|
    @outputlanguages << Outputlanguage.new(lang)
  end
end

Instance Attribute Details

#outputlanguagesObject (readonly)

Returns the value of attribute outputlanguages.



2
3
4
# File 'lib/refworks/properties/outputlanguage/properties_outputlanguage_response.rb', line 2

def outputlanguages
  @outputlanguages
end