SessionPaymentResult
data class SessionPaymentResult(val sessionId: String?, val sessionResult: String?, val sessionData: String?, val resultCode: String?, val order: OrderResponse?) : Parcelable
The result of a payment using the sessions flow.
Parameters
sessionId
A unique identifier of the session.
sessionResult
You can forward this alongside sessionId to your server to fetch the result of the payment.
sessionData
The payment session data.
resultCode
The result code of the payment. For more information, see Result codes.
order
An order, only applicable in case of an ongoing partial payment flow.
Constructors
Link copied to clipboard
constructor(sessionId: String?, sessionResult: String?, sessionData: String?, resultCode: String?, order: OrderResponse?)