Class: EMIS::Responses::GetUnitInformationResponse

Inherits:
Response
  • Object
show all
Defined in:
lib/emis/responses/get_unit_information_response.rb

Overview

EMIS unit information response

Instance Method Summary collapse

Methods inherited from Response

#build_item, #build_item_value, #cache?, #empty?, #error, #error?, #find_all_elements_by_tag_name, #initialize, #items, #locate, #locate_one, #ok?

Constructor Details

This class inherits a constructor from EMIS::Responses::Response

Instance Method Details

#item_schemaHash

Returns Schema for translating XML data into model data.

Returns:

  • (Hash)

    Schema for translating XML data into model data



16
17
18
19
20
21
22
23
# File 'lib/emis/responses/get_unit_information_response.rb', line 16

def item_schema
  {
    'unitSegmentIdentifier' => { rename: 'segment_identifier' },
    'unitIdentificationCode' => { rename: 'identification_code' },
    'unitUicTypeCode' => { rename: 'uic_type_code' },
    'unitAssignedDate' => { rename: 'assigned_date' }
  }
end

#item_tag_nameString

Returns XML Tag that contains response data.

Returns:

  • (String)

    XML Tag that contains response data



11
12
13
# File 'lib/emis/responses/get_unit_information_response.rb', line 11

def item_tag_name
  'unitInformation'
end

#model_classClass

Returns Model class to put response data.

Returns:

  • (Class)

    Model class to put response data



26
27
28
# File 'lib/emis/responses/get_unit_information_response.rb', line 26

def model_class
  EMIS::Models::UnitInformation
end