/* Options: Date: 2026-06-01 15:36:04 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Authentication.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/Authentication/{ClientKey}") open class Authentication : IReturn { var ClientKey:String? = null var SecretKey:String? = null companion object { private val responseType = AuthenticationResponse::class.java } override fun getResponseType(): Any? = Authentication.responseType } open class AuthenticationResponse { var Result:String? = null }