Class: EVSS::DisabilityCompensationForm::SpecialIssue

Inherits:
Object
  • Object
show all
Defined in:
lib/evss/disability_compensation_form/special_issue.rb

Overview

Model for parsed special issues such as POW status or PTSD.

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

Returns The lookup code for the issue.

Returns:

  • (String)

    The lookup code for the issue.



14
15
16
17
18
19
# File 'lib/evss/disability_compensation_form/special_issue.rb', line 14

class SpecialIssue
  include Virtus.model

  attribute :code, String
  attribute :name, String
end

#nameString

Returns The name of the issue.

Returns:

  • (String)

    The name of the issue.



14
15
16
17
18
19
# File 'lib/evss/disability_compensation_form/special_issue.rb', line 14

class SpecialIssue
  include Virtus.model

  attribute :code, String
  attribute :name, String
end