/* Options: Date: 2025-08-04 04:05:42 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ChangePassword.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class ChangePassword : IReturn, IPost { var CurrentPassword:String? = null var NewPassword:String? = null companion object { private val responseType = ChangePasswordResponse::class.java } override fun getResponseType(): Any? = ChangePassword.responseType } open class ChangePasswordResponse : ResponseBase() { } open class ResponseBase { var ResponseStatus:ResponseStatus? = null }