/* Options: Date: 2026-01-08 12:10:28 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.foundrylab.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EnableTwoFactorAuthenticationRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/users/2fa/enable", Verbs="PUT") open class EnableTwoFactorAuthenticationRequest : PutOperationUnTenanted(), IReturn { var code:String? = null companion object { private val responseType = EnableTwoFactorAuthenticationResponse::class.java } override fun getResponseType(): Any? = EnableTwoFactorAuthenticationRequest.responseType } open class EnableTwoFactorAuthenticationResponse { var responseStatus:ResponseStatus? = null var bearerToken:String? = null var refreshToken:String? = null } open class PutOperationUnTenanted : IPut { }