Class: BGSDependents::ChildStoppedAttendingSchool

Inherits:
Base show all
Defined in:
app/models/bgs_dependents/child_stopped_attending_school.rb

Constant Summary

Constants inherited from Base

Base::MILITARY_POST_OFFICE_TYPE_CODES

Instance Attribute Summary

Attributes inherited from Common::Base

#errors_hash, #metadata

Instance Method Summary collapse

Methods inherited from Base

#adjust_address_lines_for!, #adjust_country_name_for!, #create_address_params, #create_person_params, #dependent_address, #format_date, #formatted_boolean, #generate_address, #relationship_type, #serialize_dependent_result

Methods inherited from Common::Base

#changed, #changed?, #changes, default_sort, filterable_attributes, max_per_page, per_page, sortable_attributes

Constructor Details

#initialize(child_info) ⇒ ChildStoppedAttendingSchool

Returns a new instance of ChildStoppedAttendingSchool.



5
6
7
# File 'app/models/bgs_dependents/child_stopped_attending_school.rb', line 5

def initialize(child_info)
  @child_info = child_info
end

Instance Method Details

#format_infoObject



9
10
11
12
13
14
15
16
# File 'app/models/bgs_dependents/child_stopped_attending_school.rb', line 9

def format_info
  {
    event_date: @child_info['date_child_left_school'],
    ssn: @child_info['ssn'],
    birth_date: @child_info['birth_date'],
    dependent_income: formatted_boolean(@child_info['dependent_income'])
  }.merge(@child_info['full_name']).with_indifferent_access
end