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

commonMain.io.revenuemonster.sdk.model.response.DailySettlementReportResponse.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.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,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy