using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides all extensions of the context ppm of type context as public properties. /// public sealed class xAPI_Extensions_Context_Ppm : xAPI_Extensions_Context { public xAPI_Extensions_Context_Ppm() : base("ppm") { } /// /// Heart rate as conditional information of a context. The value is an integer. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/ppm/extensions/context/heartRate /// public xAPI_Extensions_Context_Ppm heartRate(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "heartRate", names: new Dictionary { ["en-US"] = "heart rate", ["de-DE"] = "Herzfrequenz" }, descriptions: new Dictionary { ["en-US"] = "Heart rate as conditional information of a context. The value is an integer.", ["de-DE"] = "Die Herzfrequenz als bedingte Information in einem Kontext. Der Wert ist eine Ganzzahl." }), value); return this; } } }