Class: EMIS::Responses::GetPayGradeHistoryResponse

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

Overview

EMIS v2 pay grade history 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
24
25
26
27
# File 'lib/emis/responses/get_pay_grade_history_response.rb', line 16

def item_schema
  {
    'personnelOrganizationCode' => {},
    'personnelCategoryTypeCode' => {},
    'personnelSegmentIdentifier' => {},
    'payPlanCode' => {},
    'PayGradeCode' => {},
    'serviceRankNameCode' => {},
    'serviceRankNameTxt' => {},
    'payGradeDate' => {}
  }
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_pay_grade_history_response.rb', line 11

def item_tag_name
  'payGradeHistory'
end

#model_classClass

Returns Model class to put response data.

Returns:

  • (Class)

    Model class to put response data



30
31
32
# File 'lib/emis/responses/get_pay_grade_history_response.rb', line 30

def model_class
  EMIS::Models::PayGradeHistory
end