/* Options: Date: 2025-09-03 18:54:06 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: GenerateTwoFactorAuthenticationKeyRequest.* //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/generate-key", Verbs="PUT") open class GenerateTwoFactorAuthenticationKeyRequest : PutOperationTenanted(), IReturn { companion object { private val responseType = GenerateTwoFactorAuthenticationKeyResponse::class.java } override fun getResponseType(): Any? = GenerateTwoFactorAuthenticationKeyRequest.responseType } open class GenerateTwoFactorAuthenticationKeyResponse { var responseStatus:ResponseStatus? = null var twoFactorUri:String? = null } open class PutOperationTenanted : PutOperationUnTenanted(), ITenantedRequest { var organisationId:String? = null } open interface ITenantedRequest { var organisationId:String? } open class PutOperationUnTenanted : IPut { }