/* Options: Date: 2025-09-05 04:42:33 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: DisableForceTwoFactorRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/organisations/force-2fa/disable", Verbs="PUT") open class DisableForceTwoFactorRequest : PutOperationTenanted(), IReturn { companion object { private val responseType = ForceTwoFactorResponse::class.java } override fun getResponseType(): Any? = DisableForceTwoFactorRequest.responseType } open class ForceTwoFactorResponse { var responseStatus:ResponseStatus? = null var organisation:Organisation? = null } open class PutOperationTenanted : PutOperationUnTenanted(), ITenantedRequest { var organisationId:String? = null } open interface ITenantedRequest { var organisationId:String? } open class PutOperationUnTenanted : IPut { } open class Organisation : IIdentifiableResource { var displayName:String? = null var owners:ArrayList = ArrayList() var isDefault:Boolean? = null var id:String? = null var forceTwoFactor:Boolean? = null } open interface IIdentifiableResource { var id:String? }