Class: Increase::Models::PendingTransaction::Source::CheckDepositInstruction
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::PendingTransaction::Source::CheckDepositInstruction
- Defined in:
- lib/increase/models/pending_transaction.rb
Overview
Defined Under Namespace
Modules: Currency
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The pending amount in USD cents.
-
#back_image_file_id ⇒ String?
The identifier of the File containing the image of the back of the check that was deposited.
-
#check_deposit_id ⇒ String?
The identifier of the Check Deposit.
-
#currency ⇒ Symbol, Increase::Models::PendingTransaction::Source::CheckDepositInstruction::Currency
The [ISO 4217](en.wikipedia.org/wiki/ISO_4217) code for the transaction’s currency.
-
#front_image_file_id ⇒ String
The identifier of the File containing the image of the front of the check that was deposited.
Instance Method Summary collapse
-
#initialize(amount: , back_image_file_id: , check_deposit_id: , currency: , front_image_file_id: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see CheckDepositInstruction 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: , back_image_file_id: , check_deposit_id: , currency: , front_image_file_id: ) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::PendingTransaction::Source::CheckDepositInstruction for more details.
A Check Deposit Instruction object. This field will be present in the JSON response if and only if ‘category` is equal to `check_deposit_instruction`.
|
|
# File 'lib/increase/models/pending_transaction.rb', line 1732
|
Instance Attribute Details
#amount ⇒ Integer
The pending amount in USD cents.
1703 |
# File 'lib/increase/models/pending_transaction.rb', line 1703 required :amount, Integer |
#back_image_file_id ⇒ String?
The identifier of the File containing the image of the back of the check that was deposited.
1710 |
# File 'lib/increase/models/pending_transaction.rb', line 1710 required :back_image_file_id, String, nil?: true |
#check_deposit_id ⇒ String?
The identifier of the Check Deposit.
1716 |
# File 'lib/increase/models/pending_transaction.rb', line 1716 required :check_deposit_id, String, nil?: true |
#currency ⇒ Symbol, Increase::Models::PendingTransaction::Source::CheckDepositInstruction::Currency
The [ISO 4217](en.wikipedia.org/wiki/ISO_4217) code for the transaction’s currency.
1723 |
# File 'lib/increase/models/pending_transaction.rb', line 1723 required :currency, enum: -> { Increase::PendingTransaction::Source::CheckDepositInstruction::Currency } |
#front_image_file_id ⇒ String
The identifier of the File containing the image of the front of the check that was deposited.
1730 |
# File 'lib/increase/models/pending_transaction.rb', line 1730 required :front_image_file_id, String |