co.saltpay.epos.models.response.EposDisabledResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epos-core-models Show documentation
Show all versions of epos-core-models Show documentation
Internal lib to handle epos requests.
package co.saltpay.epos.models.response
import kotlinx.serialization.Serializable
/**
* General response which might be returned from any request if the handler payment application
* has the ePOS feature disabled.
*
* @property requestId see [ResponseModel.requestId]
*/
@Serializable
data class EposDisabledResponse(
override val requestId: String
): ResponseModel