using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides all extensions of the context projectJupyter of type context as public properties.
///
public sealed class xAPI_Extensions_Context_ProjectJupyter : xAPI_Extensions_Context {
public xAPI_Extensions_Context_ProjectJupyter()
: base("projectJupyter") {
}
///
/// Name of the currently loaded JupyterLab profile (within a JupyterHub).
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/projectJupyter/extensions/context/profilename
///
public xAPI_Extensions_Context_ProjectJupyter profilename(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "profilename",
names: new Dictionary {
["en-US"] = "profilename",
["de-DE"] = "Profilname" },
descriptions: new Dictionary {
["en-US"] = "Name of the currently loaded JupyterLab profile (within a JupyterHub).",
["de-DE"] = "Name des aktuell geladenen JupyterLab-Profils (in einem JupyterHub)." }),
value);
return this;
}
}
}