Increase.Simulations.CardAuthorizations.SimulationCardAuthorizationNewResponse (Increase v1.0.0)

Copy Markdown View Source

The results of a Card Authorization simulation.

Fields

  • declined_transaction - If the authorization attempt fails, this will contain the resulting Declined Transaction object. The Declined Transaction's source will be of category: card_decline.
  • pending_transaction - If the authorization attempt succeeds, this will contain the resulting Pending Transaction object. The Pending Transaction's source will be of category: card_authorization.
  • type - A constant representing the object's type. For this resource it will always be inbound_card_authorization_simulation_result.

Summary

Types

t()

@type t() ::
  %Increase.Simulations.CardAuthorizations.SimulationCardAuthorizationNewResponse{
    declined_transaction:
      Increase.DeclinedTransactions.DeclinedTransaction.t() | nil,
    pending_transaction:
      Increase.PendingTransactions.PendingTransaction.t() | nil,
    type: String.t()
  }