All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.jupyter.parser.notebook.KernelSpec.kt Maven / Gradle / Ivy

There is a newer version: 0.2.0-dev-10
Show newest version
package org.jetbrains.jupyter.parser.notebook

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

/**
 * Kernel information.
 */
@Serializable
public data class KernelSpec(
    /** Name of the kernel specification. */
    val name: String,
    /** Name to display in UI. */
    @SerialName("display_name")
    val displayName: String
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy