/* Options: Date: 2025-10-27 21:54:41 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InitialisePaymentRequest.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* open class InitialisePaymentRequest : IReturn { open var PaymentType:PaymentTypeEnum? = null open var Uuid:UUID? = null open var ReferenceNumber:String? = null open var Amount:BigDecimal? = null open var Currency:String? = null open var ItemName:String? = null open var ItemDescription:String? = null open var BillingDate:Date? = null open var Frequency:FrequencyEnum? = null open var Cycles:Int? = null companion object { private val responseType = InitialisePaymentResponse::class.java } override fun getResponseType(): Any? = InitialisePaymentRequest.responseType } open class InitialisePaymentResponse : ResponseBase() { open var TransactionId:String? = null open var Signature:String? = null open var Url:String? = null } enum class PaymentTypeEnum(val value:Int) { OneTime(1), Recurring(2), } enum class FrequencyEnum(val value:Int) { Daily(1), Weekly(2), Monthly(3), Quarterly(4), Biannually(5), Annually(6), } open class ResponseBase { open var Status:Boolean? = null open var Message:String? = null open var Errors:HashMap>? = null }