Class: CARMA::Models::Veteran
Instance Attribute Summary collapse
-
#icn ⇒ Object
Returns the value of attribute icn.
-
#is_veteran ⇒ Object
Returns the value of attribute is_veteran.
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ Veteran
constructor
A new instance of Veteran.
Methods inherited from Base
after_to_request_payload, request_payload_key, #to_request_payload
Constructor Details
#initialize(args = {}) ⇒ Veteran
Returns a new instance of Veteran.
12 13 14 15 |
# File 'lib/carma/models/veteran.rb', line 12 def initialize(args = {}) @icn = args[:icn] @is_veteran = args[:is_veteran] end |
Instance Attribute Details
#icn ⇒ Object
Returns the value of attribute icn.
10 11 12 |
# File 'lib/carma/models/veteran.rb', line 10 def icn @icn end |
#is_veteran ⇒ Object
Returns the value of attribute is_veteran.
10 11 12 |
# File 'lib/carma/models/veteran.rb', line 10 def is_veteran @is_veteran end |