using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides all extensions of the context projectJupyter of type activity as public properties.
///
public sealed class xAPI_Extensions_Activity_ProjectJupyter : xAPI_Extensions_Activity {
public xAPI_Extensions_Activity_ProjectJupyter()
: base("projectJupyter") {
}
///
/// The content of an Activity. In case of a file, it is the file content, in case of a Notebook cell the content is the code/text inside a notebook cell.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/projectJupyter/extensions/activity/content
///
public xAPI_Extensions_Activity_ProjectJupyter content(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "content",
names: new Dictionary {
["en-US"] = "content",
["de-DE"] = "Inhalt" },
descriptions: new Dictionary {
["en-US"] = "The content of an Activity. In case of a file, it is the file content, in case of a Notebook cell the content is the code/text inside a notebook cell.",
["de-DE"] = "Der Inhalt einer Aktivität. Im Falle einer Datei ist der Inhalt der Dateiinhalt, im Falle einer Notebookzelle ist der Inhalt der Programmcode oder Text innerhalb einer Zelle." }),
value);
return this;
}
///
/// The name of a Jupyter Kernels. E.g. 'Python 3.7'. A list of kernels is available at https://github.com/jupyter/jupyter/wiki/Jupyter-kernels.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/projectJupyter/extensions/activity/kernelName
///
public xAPI_Extensions_Activity_ProjectJupyter kernelName(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "kernelName",
names: new Dictionary {
["en-US"] = "kernel name",
["de-DE"] = "Kernelname" },
descriptions: new Dictionary {
["en-US"] = "The name of a Jupyter Kernels. E.g. 'Python 3.7'. A list of kernels is available at https://github.com/jupyter/jupyter/wiki/Jupyter-kernels.",
["de-DE"] = "Der Name eines Jupyter Kernels. Z.b. 'Python 3.7. Eine Liste mit Kerneln ist unter https://github.com/jupyter/jupyter/wiki/Jupyter-kernels einsehbar." }),
value);
return this;
}
///
/// A list of words used to describe or groupe activities.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/projectJupyter/extensions/activity/tags
///
public xAPI_Extensions_Activity_ProjectJupyter tags(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "tags",
names: new Dictionary {
["en-US"] = "tags",
["de-DE"] = "Etikett" },
descriptions: new Dictionary {
["en-US"] = "A list of words used to describe or groupe activities.",
["de-DE"] = "Eine Liste mit von Wörtern mit denen eine Aktivität beschrieben wird oder mit denen mehrere Aktivitäten gruppiert werden können." }),
value);
return this;
}
}
}