Sha256: a1574485f56c8a45942dd9546cf71a01c9cd65fe591912c033293a36d1d0a9b2
Contents?: true
Size: 1.11 KB
Versions: 20
Compression:
Stored size: 1.11 KB
Contents
module AchClient # Base concern for providers like SVB and BOA that use NACHA format module NachaProvider extend ActiveSupport::Concern included do # @return [String] Immediate Destination ID provided by SVB, refers to SVB class_attribute :immediate_destination # @return [String] Immediate Destination Name provided by SVB, refers to SVB class_attribute :immediate_destination_name # @return [String] Immediate Origin ID provided by SVB, refers to you class_attribute :immediate_origin # @return [String] Immediate Origin Name provided by SVB, refers to you class_attribute :immediate_origin_name # @return [String] Company Identification provided by SVB, refers to you class_attribute :company_identification # @return [String] Company Entry Description, whatever that means class_attribute :company_entry_description # @return [String] originating_dfi_identification refers to your bank? # originating_dfi => "Originating Depository Financial Institution" class_attribute :originating_dfi_identification end end end
Version data entries
20 entries across 20 versions & 1 rubygems