/* Options: Date: 2026-01-08 12:10:58 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: DeleteApiKeyRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/auth/apikey/{Id}", Verbs="DELETE") open class DeleteApiKeyRequest : DeleteOperationUnTenanted(), IReturn { var id:String? = null companion object { private val responseType = DeleteApiKeyResponse::class.java } override fun getResponseType(): Any? = DeleteApiKeyRequest.responseType } open class DeleteApiKeyResponse { var responseStatus:ResponseStatus? = null } open class DeleteOperationUnTenanted : IDelete { }