/* Options: Date: 2025-12-14 13:16:53 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://auth.migrantleap.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdatePassword.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/api/v1/updatepassword", Verbs="POST") open class UpdatePassword : IReturn { var email:String? = null var token:String? = null var password:String? = null companion object { private val responseType = UpdatePasswordResponse::class.java } override fun getResponseType(): Any? = UpdatePassword.responseType } open class UpdatePasswordResponse : BaseResponse() { } open class BaseResponse { var responseStatus:ResponseStatus? = null }