All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.revenuemonster.sdk.model.response.TransactionQRURL.kt Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package io.revenuemonster.sdk.model.response

import io.revenuemonster.sdk.model.common.Expiry
import io.revenuemonster.sdk.model.common.Store
import io.revenuemonster.sdk.model.common.TransactionQROrder
import kotlinx.datetime.Instant
import kotlinx.serialization.Serializable

@Serializable
data class TransactionQRURL(
    val store: Store,
    val type: String,
    val isPreFillAmount: Boolean,
    val currencyType: String,
    val amount: Int,
    val platform: String,
    val method: List?,
    val expiry: Expiry?,
    val code: String,
    val status: String,
    val qrCodeUrl: String,
    val redirectUrl: String,
    val order: TransactionQROrder,
    val createdAt: Instant,
    val updatedAt: Instant
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy