/* Options: Date: 2025-10-27 22:18:48 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TwoFAEnableSubmitRequest.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/twofa/enable", Verbs="POST") open class TwoFAEnableSubmitRequest : IReturn { @Required() open var VerificationCode:Int? = null companion object { private val responseType = TwoFAEnableSubmitResponse::class.java } override fun getResponseType(): Any? = TwoFAEnableSubmitRequest.responseType } open class TwoFAEnableSubmitResponse { open var RecoveryCodes:ArrayList? = null }