Class: Increase::Models::Transaction::Source::CheckTransferDeposit

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/increase/models/transaction.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#back_image_file_idString

The identifier of the API File object containing an image of the back of the deposited check.

Returns:

  • (String)


1615
# File 'lib/increase/models/transaction.rb', line 1615

required :back_image_file_id, String

#bank_of_first_deposit_routing_numberString

The American Bankers' Association (ABA) Routing Transit Number (RTN) for the bank depositing this check. In some rare cases, this is not transmitted via Check21 and the value will be null.

Returns:

  • (String)


1620
# File 'lib/increase/models/transaction.rb', line 1620

required :bank_of_first_deposit_routing_number, String

#deposited_atString

When the check was deposited.

Returns:

  • (String)


1625
# File 'lib/increase/models/transaction.rb', line 1625

required :deposited_at, String

#front_image_file_idString

The identifier of the API File object containing an image of the front of the deposited check.

Returns:

  • (String)


1630
# File 'lib/increase/models/transaction.rb', line 1630

required :front_image_file_id, String

#inbound_check_deposit_idString

The identifier of the Inbound Check Deposit object associated with this transaction.

Returns:

  • (String)


1635
# File 'lib/increase/models/transaction.rb', line 1635

required :inbound_check_deposit_id, String

#transaction_idString

The identifier of the Transaction object created when the check was deposited.

Returns:

  • (String)


1640
# File 'lib/increase/models/transaction.rb', line 1640

required :transaction_id, String

#transfer_idString

The identifier of the Check Transfer object that was deposited.

Returns:

  • (String)


1645
# File 'lib/increase/models/transaction.rb', line 1645

required :transfer_id, String

#typeSymbol

A constant representing the object's type. For this resource it will always be check_transfer_deposit.

Returns:

  • (Symbol)


1650
# File 'lib/increase/models/transaction.rb', line 1650

required :type, Increase::Enum.new(:check_transfer_deposit)