Class: Increase::Models::Transaction::Source::CheckDepositReturn
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::Transaction::Source::CheckDepositReturn
- Defined in:
- lib/increase/models/transaction.rb
Overview
Defined Under Namespace
Modules: Currency, ReturnReason
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The returned amount in USD cents.
-
#check_deposit_id ⇒ String
The identifier of the Check Deposit that was returned.
-
#currency ⇒ Symbol, Increase::Models::Transaction::Source::CheckDepositReturn::Currency
The [ISO 4217](en.wikipedia.org/wiki/ISO_4217) code for the transaction’s currency.
-
#return_reason ⇒ Symbol, Increase::Models::Transaction::Source::CheckDepositReturn::ReturnReason
Why this check was returned by the bank holding the account it was drawn against.
-
#returned_at ⇒ Time
The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the check deposit was returned.
-
#transaction_id ⇒ String
The identifier of the transaction that reversed the original check deposit transaction.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(amount: , check_deposit_id: , currency: , return_reason: , returned_at: , transaction_id: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see CheckDepositReturn for more details.
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, meta_info, new_coerce_state, 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(amount: , check_deposit_id: , currency: , return_reason: , returned_at: , transaction_id: ) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::Transaction::Source::CheckDepositReturn for more details.
A Check Deposit Return object. This field will be present in the JSON response if and only if ‘category` is equal to `check_deposit_return`. A Check Deposit Return is created when a Check Deposit is returned by the bank holding the account it was drawn against. Check Deposits may be returned for a variety of reasons, including insufficient funds or a mismatched account number. Usually, checks are returned within the first 7 days after the deposit is made.
|
|
# File 'lib/increase/models/transaction.rb', line 5546
|
Instance Attribute Details
#amount ⇒ Integer
The returned amount in USD cents.
5510 |
# File 'lib/increase/models/transaction.rb', line 5510 required :amount, Integer |
#check_deposit_id ⇒ String
The identifier of the Check Deposit that was returned.
5516 |
# File 'lib/increase/models/transaction.rb', line 5516 required :check_deposit_id, String |
#currency ⇒ Symbol, Increase::Models::Transaction::Source::CheckDepositReturn::Currency
The [ISO 4217](en.wikipedia.org/wiki/ISO_4217) code for the transaction’s currency.
5523 |
# File 'lib/increase/models/transaction.rb', line 5523 required :currency, enum: -> { Increase::Transaction::Source::CheckDepositReturn::Currency } |
#return_reason ⇒ Symbol, Increase::Models::Transaction::Source::CheckDepositReturn::ReturnReason
Why this check was returned by the bank holding the account it was drawn against.
5530 |
# File 'lib/increase/models/transaction.rb', line 5530 required :return_reason, enum: -> { Increase::Transaction::Source::CheckDepositReturn::ReturnReason } |
#returned_at ⇒ Time
The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the check deposit was returned.
5537 |
# File 'lib/increase/models/transaction.rb', line 5537 required :returned_at, Time |
#transaction_id ⇒ String
The identifier of the transaction that reversed the original check deposit transaction.
5544 |
# File 'lib/increase/models/transaction.rb', line 5544 required :transaction_id, String |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/transaction.rb', line 5579
|