Class: EVSS::DisabilityCompensationForm::SpecialIssue
- Inherits:
-
Object
- Object
- EVSS::DisabilityCompensationForm::SpecialIssue
- 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
-
#code ⇒ String
The lookup code for the issue.
-
#name ⇒ String
The name of the issue.
Instance Attribute Details
#code ⇒ String
Returns 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 |
#name ⇒ String
Returns 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 |