using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides all extensions of the context gestures of type result as public properties.
///
public sealed class xAPI_Extensions_Result_Gestures : xAPI_Extensions_Result {
public xAPI_Extensions_Result_Gestures()
: base("gestures") {
}
///
/// The number of actors gestures. Has to be an integer.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/extensions/result/numberOfGestures
///
public xAPI_Extensions_Result_Gestures numberOfGestures(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "numberOfGestures",
names: new Dictionary {
["en-US"] = "number of gestures",
["de-DE"] = "Gestenanzahl" },
descriptions: new Dictionary {
["en-US"] = "The number of actors gestures. Has to be an integer.",
["de-DE"] = "Die Anzahl an Gesten, die die Akteurin tätigt. Muss ein Integer sein." }),
value);
return this;
}
///
/// Setting, which hand is currently the primary hand.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/extensions/result/primaryHand
///
public xAPI_Extensions_Result_Gestures primaryHand(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "primaryHand",
names: new Dictionary {
["en-US"] = "primary hand",
["de-DE"] = "Primärhand" },
descriptions: new Dictionary {
["en-US"] = "Setting, which hand is currently the primary hand.",
["de-DE"] = "Einstellung, welche Hand die Primärhand ist." }),
value);
return this;
}
}
}