Class: Increase::Models::CardPushTransfer::Acceptance

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

Overview

See Also:

Defined Under Namespace

Modules: CardVerificationValue2Result

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, 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.

Parameters:

  • accepted_at (Time) (defaults to: )

    The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which th

  • authorization_identification_response (String) (defaults to: )

    The authorization identification response from the issuing bank.

  • card_verification_value2_result (Symbol, Increase::Models::CardPushTransfer::Acceptance::CardVerificationValue2Result, nil) (defaults to: )

    The result of the Card Verification Value 2 match.

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

    A unique identifier for the transaction on the card network.

  • settlement_amount (Integer) (defaults to: )

    The transfer amount in USD cents.



# File 'lib/increase/models/card_push_transfer.rb', line 284

Instance Attribute Details

#accepted_atTime

The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the transfer was accepted by the issuing bank.

Returns:

  • (Time)


256
# File 'lib/increase/models/card_push_transfer.rb', line 256

required :accepted_at, Time

#authorization_identification_responseString

The authorization identification response from the issuing bank.

Returns:

  • (String)


262
# File 'lib/increase/models/card_push_transfer.rb', line 262

required :authorization_identification_response, String

#card_verification_value2_resultSymbol, ...

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_identifierString?

A unique identifier for the transaction on the card network.

Returns:

  • (String, nil)


276
# File 'lib/increase/models/card_push_transfer.rb', line 276

required :network_transaction_identifier, String, nil?: true

#settlement_amountInteger

The transfer amount in USD cents.

Returns:

  • (Integer)


282
# File 'lib/increase/models/card_push_transfer.rb', line 282

required :settlement_amount, Integer