/* Options: Date: 2026-01-08 12:12: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: ResetTwoFactorAuthenticationRequest.* //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/reset", Verbs="PUT") open class ResetTwoFactorAuthenticationRequest : PutOperationTenanted(), IReturn { var targetUserId:String? = null var callerCode:String? = null companion object { private val responseType = ResetTwoFactorAuthenticationResponse::class.java } override fun getResponseType(): Any? = ResetTwoFactorAuthenticationRequest.responseType } open class ResetTwoFactorAuthenticationResponse { var responseStatus:ResponseStatus? = null } open class PutOperationTenanted : PutOperationUnTenanted(), ITenantedRequest { var organisationId:String? = null } open interface ITenantedRequest { var organisationId:String? } open class PutOperationUnTenanted : IPut { }