Class: Monobank::Personal::Statement
- Inherits:
-
Methods::Get
- Object
- Methods::Base
- Methods::Get
- Monobank::Personal::Statement
- Defined in:
- lib/monobank/personal/statement.rb
Constant Summary collapse
- ENDPOINT =
'/personal/statement'.freeze
Instance Method Summary collapse
-
#initialize(account_id:, from:, to:, **rest) ⇒ Statement
constructor
A new instance of Statement.
Methods inherited from Methods::Base
Constructor Details
#initialize(account_id:, from:, to:, **rest) ⇒ Statement
Returns a new instance of Statement.
9 10 11 12 13 14 15 |
# File 'lib/monobank/personal/statement.rb', line 9 def initialize(account_id:, from:, to:, **rest) super(**rest) @account_id = account_id @from = from @to = to end |