Class: Documents::Statements::Example

Inherits:
Statement
  • Object
show all
Defined in:
lib/ynab_convert/documents/statements/example_statement.rb

Overview

Example of a 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:) ⇒ Example

Returns a new instance of Example.



9
10
11
12
13
# File 'lib/ynab_convert/documents/statements/example_statement.rb', line 9

def initialize(filepath:)
  csv_import_options = { col_sep: ';', quote_char: nil, headers: true }

  super(filepath: filepath, csv_import_options: csv_import_options)
end