Class: Increase::Models::CardPushTransfer::Acceptance
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::CardPushTransfer::Acceptance
- Defined in:
- lib/increase/models/card_push_transfer.rb
Overview
Defined Under Namespace
Modules: CardVerificationValue2Result
Instance Attribute Summary collapse
-
#accepted_at ⇒ Time
The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the transfer was accepted by the issuing bank.
-
#authorization_identification_response ⇒ String
The authorization identification response from the issuing bank.
-
#card_verification_value2_result ⇒ Symbol, ...
The result of the Card Verification Value 2 match.
-
#network_transaction_identifier ⇒ String?
A unique identifier for the transaction on the card network.
-
#settlement_amount ⇒ Integer
The transfer amount in USD cents.
Instance Method Summary collapse
-
#initialize(accepted_at: , authorization_identification_response: , card_verification_value2_result: , network_transaction_identifier: , settlement_amount: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see Acceptance 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(accepted_at: , authorization_identification_response: , card_verification_value2_result: , network_transaction_identifier: , settlement_amount: ) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::CardPushTransfer::Acceptance for more details.
If the transfer is accepted by the recipient bank, this will contain supplemental details.
|
|
# File 'lib/increase/models/card_push_transfer.rb', line 284
|
Instance Attribute Details
#accepted_at ⇒ Time
The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the transfer was accepted by the issuing bank.
256 |
# File 'lib/increase/models/card_push_transfer.rb', line 256 required :accepted_at, Time |
#authorization_identification_response ⇒ String
The authorization identification response from the issuing bank.
262 |
# File 'lib/increase/models/card_push_transfer.rb', line 262 required :authorization_identification_response, String |
#card_verification_value2_result ⇒ Symbol, ...
The result of the Card Verification Value 2 match.
268 269 270 |
# File 'lib/increase/models/card_push_transfer.rb', line 268 required :card_verification_value2_result, enum: -> { Increase::CardPushTransfer::Acceptance::CardVerificationValue2Result }, nil?: true |
#network_transaction_identifier ⇒ String?
A unique identifier for the transaction on the card network.
276 |
# File 'lib/increase/models/card_push_transfer.rb', line 276 required :network_transaction_identifier, String, nil?: true |
#settlement_amount ⇒ Integer
The transfer amount in USD cents.
282 |
# File 'lib/increase/models/card_push_transfer.rb', line 282 required :settlement_amount, Integer |