Class: Documents::Statements::Wise

Inherits:
Statement
  • Object
show all
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

Methods inherited from Statement

#institution_name

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:)
  csv_import_options = {
    col_sep: ',',
    quote_char: '"',
    headers: true
  }
  super(filepath: filepath, csv_import_options: csv_import_options)
end