using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides all extensions of the context projectJupyter of type result as public properties. /// public sealed class xAPI_Extensions_Result_ProjectJupyter : xAPI_Extensions_Result { public xAPI_Extensions_Result_ProjectJupyter() : base("projectJupyter") { } /// /// A string representing the cell outputs of a JupyterLab cell. Outputs can contain a.o. execution results or display data. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/projectJupyter/extensions/result/cellOutput /// public xAPI_Extensions_Result_ProjectJupyter cellOutput(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "cellOutput", names: new Dictionary { ["en-US"] = "Cell Output", ["de-DE"] = "Zellenausgabe" }, descriptions: new Dictionary { ["en-US"] = "A string representing the cell outputs of a JupyterLab cell. Outputs can contain a.o. execution results or display data.", ["de-DE"] = "Ein String der die Ausgabe einer JupyterLab-Zelle beschreibt. Ausgaben können u.a. Ausführungsergebnisse oder Anzeigedaten enthalten." }), value); return this; } /// /// A string describing an error. Used to provide the runtimeerror that might occur during the execution of ta JupyterLab notebook cell. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/projectJupyter/extensions/result/errorMessage /// public xAPI_Extensions_Result_ProjectJupyter errorMessage(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "errorMessage", names: new Dictionary { ["en-US"] = "Error message", ["de-DE"] = "Fehlermeldung" }, descriptions: new Dictionary { ["en-US"] = "A string describing an error. Used to provide the runtimeerror that might occur during the execution of ta JupyterLab notebook cell.", ["de-DE"] = "Die beschreibung eines Fehlers. Wird verwended um z.b. Laufzeitfehler während des Ausführens einer JupyterLab Notebook Zelle anzugeben." }), value); return this; } } }