using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides all extensions of the context eyeTracking of type result as public properties. /// public sealed class xAPI_Extensions_Result_EyeTracking : xAPI_Extensions_Result { public xAPI_Extensions_Result_EyeTracking() : base("eyeTracking") { } /// /// The fixation duration is the measure how long the actor spend looking at a particular location. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/eyeTracking/extensions/result/duration /// public xAPI_Extensions_Result_EyeTracking duration(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "duration", names: new Dictionary { ["en-US"] = "fixation duration", ["de-DE"] = "Fixationsdauer" }, descriptions: new Dictionary { ["en-US"] = "The fixation duration is the measure how long the actor spend looking at a particular location.", ["de-DE"] = "Die Fixationsdauer beschreibt die Zeit, die ein Akteur oder eine Akteurin den Blick auf einem bestimmten Ort hat verweilen lassen." }), value); return this; } /// /// The number of actors eye blinking within a focus sequence. Has to be an integer. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/eyeTracking/extensions/result/numberOfBlinks /// public xAPI_Extensions_Result_EyeTracking numberOfBlinks(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "numberOfBlinks", names: new Dictionary { ["en-US"] = "number of blinks", ["de-DE"] = "Zwinker Anzahl" }, descriptions: new Dictionary { ["en-US"] = "The number of actors eye blinking within a focus sequence. Has to be an integer.", ["de-DE"] = "Die Anzahl an Blinzler, die der Agierende während einer Fokus Sequenz getätigt hat. Muss ganzzahlig sein." }), value); return this; } } }