Increase.CardValidations.CardValidation.Acceptance (Increase v1.0.0)

Copy Markdown View Source

If the validation is accepted by the recipient bank, this will contain supplemental details.

Fields

  • accepted_at - The ISO 8601 date and time at which the validation was accepted by the issuing bank.
  • authorization_identification_response - The authorization identification response from the issuing bank.
  • card_verification_value2_result - The result of the Card Verification Value 2 match.
  • cardholder_first_name_result - The result of the cardholder first name match.
  • cardholder_full_name_result - The result of the cardholder full name match.
  • cardholder_last_name_result - The result of the cardholder last name match.
  • cardholder_middle_name_result - The result of the cardholder middle name match.
  • cardholder_postal_code_result - The result of the cardholder postal code match.
  • cardholder_street_address_result - The result of the cardholder street address match.
  • network_transaction_identifier - A unique identifier for the transaction on the card network.

Summary

Types

t()

@type t() :: %Increase.CardValidations.CardValidation.Acceptance{
  accepted_at: DateTime.t(),
  authorization_identification_response: String.t(),
  card_verification_value2_result: String.t() | nil,
  cardholder_first_name_result: String.t() | nil,
  cardholder_full_name_result: String.t() | nil,
  cardholder_last_name_result: String.t() | nil,
  cardholder_middle_name_result: String.t() | nil,
  cardholder_postal_code_result: String.t() | nil,
  cardholder_street_address_result: String.t() | nil,
  network_transaction_identifier: String.t() | nil
}