/* Options: Date: 2026-05-09 17:14:26 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSaldenRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/fibuscan/GetSalden", Verbs="GET, POST") open class GetSaldenRequest : IReturn { var start:Date? = null var end:Date? = null var BankIndex:Long? = null companion object { private val responseType = GetSaldenResponse::class.java } override fun getResponseType(): Any? = GetSaldenRequest.responseType } open class GetSaldenResponse { var AnfangSaldo:BigDecimal? = null var EndSaldo:BigDecimal? = null }