Method: AchClient::Abstract::AchTransaction#send

Defined in:
lib/ach_client/providers/abstract/ach_transaction.rb

#sendObject

Check if the transaction is sendable, and if so, send it according

to the subclass implementation


67
68
69
70
71
72
73
# File 'lib/ach_client/providers/abstract/ach_transaction.rb', line 67

def send
  if sendable?
    do_send
  else
    raise InvalidAchTransactionError
  end
end