/* Options: Date: 2025-09-03 18:55:11 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetTwoFactorAuthenticationStatusRequest.* //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/status", Verbs="GET") open class GetTwoFactorAuthenticationStatusRequest : GetOperationTenanted(), IReturn { companion object { private val responseType = GetTwoFactorAuthenticationStatusResponse::class.java } override fun getResponseType(): Any? = GetTwoFactorAuthenticationStatusRequest.responseType } open class GetTwoFactorAuthenticationStatusResponse { var responseStatus:ResponseStatus? = null var isEnabled:Boolean? = null } open class GetOperationUnTenanted : IHasGetOptions, IGet { var embed:String? = null } open interface IHasGetOptions { var embed:String? } open interface ITenantedRequest { var organisationId:String? } open class GetOperationTenanted : GetOperationUnTenanted(), ITenantedRequest { var organisationId:String? = null }