commonMain.io.revenuemonster.sdk.model.response.DailySettlementReportResponse.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.Order
import io.revenuemonster.sdk.model.common.Store
import kotlinx.datetime.Instant
import kotlinx.serialization.Serializable
@Serializable
data class DailySettlementReportResponse(
val transactionAt: Instant,
val merchantId: String,
val merchantName: String,
val storeId: String,
val storeName: String,
val region: String,
val method: String,
val transactionType: String,
val type: String,
val transactionId: String,
val orderId: String,
val currencyType: String,
val grossAmount: Double,
val mdr: Double,
val serviceFee: Double,
val settlementAmount: Double,
)