Class: YSM::AccountService::AddMoney
- Inherits:
-
Object
- Object
- YSM::AccountService::AddMoney
- Defined in:
- lib/ysm4r/v1/AccountService.rb,
lib/ysm4r/v2/AccountService.rb
Overview
Instance Attribute Summary collapse
-
#accountID ⇒ Object
Returns the value of attribute accountID.
-
#amount ⇒ Object
Returns the value of attribute amount.
Instance Method Summary collapse
-
#initialize(accountID = nil, amount = nil) ⇒ AddMoney
constructor
A new instance of AddMoney.
Constructor Details
#initialize(accountID = nil, amount = nil) ⇒ AddMoney
Returns a new instance of AddMoney.
116 117 118 119 |
# File 'lib/ysm4r/v1/AccountService.rb', line 116 def initialize(accountID = nil, amount = nil) @accountID = accountID @amount = amount end |
Instance Attribute Details
#accountID ⇒ Object
Returns the value of attribute accountID.
113 114 115 |
# File 'lib/ysm4r/v1/AccountService.rb', line 113 def accountID @accountID end |
#amount ⇒ Object
Returns the value of attribute amount.
114 115 116 |
# File 'lib/ysm4r/v1/AccountService.rb', line 114 def amount @amount end |