PaymentResult

data class PaymentResult(var merchantRequestID: String, var checkoutRequestID: String, var responseCode: String, var responseDescription: String, var customerMessage: String)

Represents the result returned after initiating a payment request.

Constructors

Link copied to clipboard
constructor(merchantRequestID: String, checkoutRequestID: String, responseCode: String, responseDescription: String, customerMessage: String)

Properties

Link copied to clipboard

The checkout request identifier assigned by the payment gateway.

Link copied to clipboard

A message intended to be displayed to the customer.

Link copied to clipboard

The merchant-assigned request identifier for the payment.

Link copied to clipboard

The response code indicating the outcome of the payment request.

Link copied to clipboard

A human-readable description of the response code.