Class: Monobank::Personal::Statement

Inherits:
Methods::Get show all
Defined in:
lib/monobank/personal/statement.rb

Constant Summary collapse

ENDPOINT =
'/personal/statement'.freeze

Instance Method Summary collapse

Methods inherited from Methods::Base

#call

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 = 
  @from = from
  @to = to
end