commonMain.io.revenuemonster.sdk.model.response.TopUpBalanceOfflineResponse.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.Store
import kotlinx.datetime.Instant
import kotlinx.serialization.Serializable
@Serializable
data class TopUpBalanceOfflineResponse(
val store: Store,
val referenceId: String,
val transactionId: String,
val order: TopUpBalanceOrderResponse,
// val payee: Payee,
val currencyType: String,
val platform: String,
val method: String,
val type: String,
val status: String,
val region: String,
val createdAt: Instant,
val updatedAt: Instant
)
@Serializable
data class TopUpBalanceOrderResponse(
val id: String,
val title: String,
val detail: String,
val amount: Int
)