Class: CARMA::Models::Veteran

Inherits:
Base
  • Object
show all
Defined in:
lib/carma/models/veteran.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#icnObject

Returns the value of attribute icn.



10
11
12
# File 'lib/carma/models/veteran.rb', line 10

def icn
  @icn
end

#is_veteranObject

Returns the value of attribute is_veteran.



10
11
12
# File 'lib/carma/models/veteran.rb', line 10

def is_veteran
  @is_veteran
end