Sha256: 73e247ebcb1eb8c0bcdc3d622a6bc5b46215429af65578e343e91243bf6948b8
Contents?: true
Size: 387 Bytes
Versions: 4
Compression:
Stored size: 387 Bytes
Contents
# frozen_string_literal: true module PerfectAudit class Period extend Dry::Initializer option :pk, as: :id option :begin_date, proc { |v| Date.parse(v) } option :end_date, proc { |v| Date.parse(v) } option :begin_balance, proc(&:to_f) option :end_balance, proc(&:to_f) option :primary_recon_error_reason option :secondary_recon_error_reason end end
Version data entries
4 entries across 4 versions & 1 rubygems