Class: Documents::Statements::Wise
- Defined in:
- lib/ynab_convert/documents/statements/wise_statement.rb
Overview
Wise card accounts statement
Instance Attribute Summary
Attributes inherited from Statement
#csv_import_options, #filepath
Instance Method Summary collapse
-
#initialize(filepath:) ⇒ Wise
constructor
A new instance of Wise.
Methods inherited from Statement
Constructor Details
#initialize(filepath:) ⇒ Wise
Returns a new instance of Wise.
7 8 9 10 11 12 13 14 |
# File 'lib/ynab_convert/documents/statements/wise_statement.rb', line 7 def initialize(filepath:) = { col_sep: ',', quote_char: '"', headers: true } super(filepath: filepath, csv_import_options: ) end |