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

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/increase/models/transaction.rb

Overview

Defined Under Namespace

Modules: Type

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initialize(back_image_file_id: , bank_of_first_deposit_routing_number: , deposited_at: , front_image_file_id: , inbound_check_deposit_id: , transaction_id: , transfer_id: , type: ) ⇒ Object

Some parameter documentations has been truncated, see Increase::Models::Transaction::Source::CheckTransferDeposit for more details.

A Check Transfer Deposit object. This field will be present in the JSON response if and only if ‘category` is equal to `check_transfer_deposit`. An Inbound Check is a check drawn on an Increase account that has been deposited by an external bank account. These types of checks are not pre-registered.

Parameters:

  • back_image_file_id (String, nil) (defaults to: )

    The identifier of the API File object containing an image of the back of the dep

  • bank_of_first_deposit_routing_number (String, nil) (defaults to: )

    The American Bankers’ Association (ABA) Routing Transit Number (RTN) for the ban

  • deposited_at (Time) (defaults to: )

    When the check was deposited.

  • front_image_file_id (String, nil) (defaults to: )

    The identifier of the API File object containing an image of the front of the de

  • inbound_check_deposit_id (String, nil) (defaults to: )

    The identifier of the Inbound Check Deposit object associated with this transact

  • transaction_id (String, nil) (defaults to: )

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

  • transfer_id (String, nil) (defaults to: )

    The identifier of the Check Transfer object that was deposited.

  • type (Symbol, Increase::Models::Transaction::Source::CheckTransferDeposit::Type) (defaults to: )

    A constant representing the object’s type. For this resource it will always be ‘



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

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, nil)


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

required :back_image_file_id, String, nil?: true

#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, nil)


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

required :bank_of_first_deposit_routing_number, String, nil?: true

#deposited_atTime

When the check was deposited.

Returns:

  • (Time)


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

required :deposited_at, Time

#front_image_file_idString?

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

Returns:

  • (String, nil)


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

required :front_image_file_id, String, nil?: true

#inbound_check_deposit_idString?

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

Returns:

  • (String, nil)


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

required :inbound_check_deposit_id, String, nil?: true

#transaction_idString?

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

Returns:

  • (String, nil)


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

required :transaction_id, String, nil?: true

#transfer_idString?

The identifier of the Check Transfer object that was deposited.

Returns:

  • (String, nil)


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

required :transfer_id, String, nil?: true

#typeSymbol, Increase::Models::Transaction::Source::CheckTransferDeposit::Type

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



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

required :type, enum: -> { Increase::Transaction::Source::CheckTransferDeposit::Type }