Sha256: 12ff33550f8ece4af1b4d3a3c82917adb1e779302b10011e27e3f21a133c27da
Contents?: true
Size: 495 Bytes
Versions: 6
Compression:
Stored size: 495 Bytes
Contents
# frozen_string_literal: true module Documents module Statements # UBS Switzerland Chequing accounts statement class UBSChequing < Statement # @param filepath [String] path to CSV statement def initialize(filepath:) csv_import_options = { col_sep: ';', quote_char: nil, encoding: Encoding::UTF_8, headers: true } super(filepath: filepath, csv_import_options: csv_import_options) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems