commonMain.io.revenuemonster.sdk.model.response.TransactionQRURL.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rm-kotlin-sdk-jvm Show documentation
Show all versions of rm-kotlin-sdk-jvm Show documentation
Revenue Monster Kotlin Multiplatform SDK
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
)