Class: PropertiesSourcetypesResponse

Inherits:
PropertiesResponse show all
Defined in:
lib/refworks/properties/sourcetypes/properties_sourcetypes_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) ⇒ PropertiesSourcetypesResponse

Returns a new instance of PropertiesSourcetypesResponse.



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/refworks/properties/sourcetypes/properties_sourcetypes_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

  srcs = self.parsed_response["refworks"]["RWResult"]["PropertiesResult"]["sourcetype"]

  @sourcetypes = Array.new
  srcs.each do |src|
    @sourcetypes << Sourcetype.new(src)
  end
end

Instance Attribute Details

#sourcetypesObject (readonly)

Returns the value of attribute sourcetypes.



2
3
4
# File 'lib/refworks/properties/sourcetypes/properties_sourcetypes_response.rb', line 2

def sourcetypes
  @sourcetypes
end