using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides all extensions of the context assistanceSystem of type context as public properties. /// public sealed class xAPI_Extensions_Context_AssistanceSystem : xAPI_Extensions_Context { public xAPI_Extensions_Context_AssistanceSystem() : base("assistanceSystem") { } /// /// The identifier of an object, behavior, or person. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/assistanceSystem/extensions/context/identifier /// public xAPI_Extensions_Context_AssistanceSystem identifier(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "identifier", names: new Dictionary { ["en-US"] = "identifier", ["de-DE"] = "Identifikator" }, descriptions: new Dictionary { ["en-US"] = "The identifier of an object, behavior, or person.", ["de-DE"] = "Der Identifikator eines Objekts, einer Verhaltensweise oder einer Person." }), value); return this; } /// /// The type of an object, behavior, or person. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/assistanceSystem/extensions/context/type /// public xAPI_Extensions_Context_AssistanceSystem type(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "type", names: new Dictionary { ["en-US"] = "type", ["de-DE"] = "Type" }, descriptions: new Dictionary { ["en-US"] = "The type of an object, behavior, or person.", ["de-DE"] = "Der Typ eines Objekts, einer Verhaltensweise oder einer Person." }), value); return this; } } }