CreatePaymentResponseDto
data class CreatePaymentResponseDto(var paymentId: String, var webFormURL: String, var status: WebFormStatusDto? = null, var paymentStatus: PaymentStatusEnumDto? = null)
Response object creating a payment.
Parameters
paymentId
ID of the payment at m8ty
webFormURL
URL of the web form, if required. This URL has to be opened in a browser. The user can log in to the bank using this web form, which allows the data to be matched with the bank.
status
paymentStatus
Constructors
Link copied to clipboard
constructor(paymentId: String, webFormURL: String, status: WebFormStatusDto? = null, paymentStatus: PaymentStatusEnumDto? = null)