using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides all extensions of the context seriousGames of type activity as public properties. /// public sealed class xAPI_Extensions_Activity_SeriousGames : xAPI_Extensions_Activity { public xAPI_Extensions_Activity_SeriousGames() : base("seriousGames") { } /// /// The type of button which was pressed. Has to be String. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/seriousGames/extensions/activity/buttontype /// public xAPI_Extensions_Activity_SeriousGames buttontype(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "buttontype", names: new Dictionary { ["en-US"] = "button type", ["de-DE"] = "Knopf Typ" }, descriptions: new Dictionary { ["en-US"] = "The type of button which was pressed. Has to be String.", ["de-DE"] = "Der Typ des Knopfes der gedrückt wurde. Muss ein String sein." }), value); return this; } } }