/* Options: Date: 2025-12-14 13:13:44 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: ConfirmResetPassword.* //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/resetpassword/confirm", Verbs="POST") open class ConfirmResetPassword : IReturn { var email:String? = null var token:String? = null var password:String? = null companion object { private val responseType = ConfirmResetPasswordResponse::class.java } override fun getResponseType(): Any? = ConfirmResetPassword.responseType } open class ConfirmResetPasswordResponse : BaseResponse() { } open class BaseResponse { var responseStatus:ResponseStatus? = null }