Class: Increase::Models::DeclinedTransaction::Source::CheckDecline
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::DeclinedTransaction::Source::CheckDecline
- Defined in:
- lib/increase/models/declined_transaction.rb
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The declined amount in the minor unit of the destination account currency.
-
#auxiliary_on_us ⇒ String
A computer-readable number printed on the MICR line of business checks, usually the check number.
-
#back_image_file_id ⇒ String
The identifier of the API File object containing an image of the back of the declined check.
-
#check_transfer_id ⇒ String
The identifier of the Check Transfer object associated with this decline.
-
#front_image_file_id ⇒ String
The identifier of the API File object containing an image of the front of the declined check.
-
#inbound_check_deposit_id ⇒ String
The identifier of the Inbound Check Deposit object associated with this decline.
-
#reason ⇒ Symbol
Why the check was declined.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#amount ⇒ Integer
The declined amount in the minor unit of the destination account currency. For dollars, for example, this is cents.
454 |
# File 'lib/increase/models/declined_transaction.rb', line 454 required :amount, Integer |
#auxiliary_on_us ⇒ String
A computer-readable number printed on the MICR line of business checks, usually the check number. This is useful for positive pay checks, but can be unreliably transmitted by the bank of first deposit.
459 |
# File 'lib/increase/models/declined_transaction.rb', line 459 required :auxiliary_on_us, String |
#back_image_file_id ⇒ String
The identifier of the API File object containing an image of the back of the declined check.
464 |
# File 'lib/increase/models/declined_transaction.rb', line 464 required :back_image_file_id, String |
#check_transfer_id ⇒ String
The identifier of the Check Transfer object associated with this decline.
469 |
# File 'lib/increase/models/declined_transaction.rb', line 469 required :check_transfer_id, String |
#front_image_file_id ⇒ String
The identifier of the API File object containing an image of the front of the declined check.
474 |
# File 'lib/increase/models/declined_transaction.rb', line 474 required :front_image_file_id, String |
#inbound_check_deposit_id ⇒ String
The identifier of the Inbound Check Deposit object associated with this decline.
479 |
# File 'lib/increase/models/declined_transaction.rb', line 479 required :inbound_check_deposit_id, String |
#reason ⇒ Symbol
Why the check was declined.
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 |
# File 'lib/increase/models/declined_transaction.rb', line 484 required :reason, Increase::Enum.new( :ach_route_disabled, :ach_route_canceled, :altered_or_fictitious, :breaches_limit, :entity_not_active, :group_locked, :insufficient_funds, :stop_payment_requested, :duplicate_presentment, :not_authorized, :amount_mismatch, :not_our_item, :no_account_number_found, :refer_to_image, :unable_to_process, :user_initiated ) |