Sha256: 28b6b1de322dce05f44de3055976d14bbd9a8bd204d6ca99508f0263a6e89137

Contents?: true

Size: 372 Bytes

Versions: 2

Compression:

Stored size: 372 Bytes

Contents

module ACH
  # Represents an ACH::Component, which is located under ACH::File and
  # contains a variable number of ACH::Record::Entry and ACH::Record::Addenda
  # records itself.
  class Batch < Component
    autoload :Builder
    autoload :Control
    autoload :Header

    include Builder

    has_many :entries
    has_many :addendas, :linked_to => :entries
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ach_builder-0.2.2 lib/ach/batch.rb
ach_builder-0.2.1 lib/ach/batch.rb