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

commonMain.io.revenuemonster.sdk.model.request.WebMobilePaymentRequest.kt Maven / Gradle / Ivy

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

import io.revenuemonster.sdk.model.common.Order
import kotlinx.serialization.Serializable

@Serializable
data class WebMobilePaymentRequest(
    val order: Order,
    val customer: WebMobilePaymentCustomer? = null,
    val method: List = listOf(),
    val type: String,
    val storeId: String,
    val redirectUrl: String,
    val notifyUrl: String,
    val layoutVersion: String
)

@Serializable
data class WebMobilePaymentCustomer(
    val userId: String,
    val email: String? = null,
    val countryCode: String? = null,
    val phoneNumber: String? = null
)






© 2015 - 2024 Weber Informatics LLC | Privacy Policy