/* Options: Date: 2025-09-03 18:55:58 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: 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 { }