using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides all extensions of the context uhfReader of type context as public properties.
///
public sealed class xAPI_Extensions_Context_UhfReader : xAPI_Extensions_Context {
public xAPI_Extensions_Context_UhfReader()
: base("uhfReader") {
}
///
/// Name of an UI element action, which the user interacted with. For example the read value checkbox has the name 'readValue'.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/extensions/context/actionName
///
public xAPI_Extensions_Context_UhfReader actionName(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "actionName",
names: new Dictionary {
["en-US"] = "action name" },
descriptions: new Dictionary {
["en-US"] = "Name of an UI element action, which the user interacted with. For example the read value checkbox has the name 'readValue'." }),
value);
return this;
}
///
/// An evaluation can have a type. For example a transponder can be evaluated externally using google by copying the id and pasting it externally.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/extensions/context/evaluationType
///
public xAPI_Extensions_Context_UhfReader evaluationType(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "evaluationType",
names: new Dictionary {
["en-US"] = "evaluation type" },
descriptions: new Dictionary {
["en-US"] = "An evaluation can have a type. For example a transponder can be evaluated externally using google by copying the id and pasting it externally." }),
value);
return this;
}
///
/// The selected element to read for the transponder.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/extensions/context/readTid
///
public xAPI_Extensions_Context_UhfReader readTid(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "readTid",
names: new Dictionary {
["en-US"] = "read Tid" },
descriptions: new Dictionary {
["en-US"] = "The selected element to read for the transponder." }),
value);
return this;
}
///
/// The head that is selected to read the TID.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/extensions/context/readingHead
///
public xAPI_Extensions_Context_UhfReader readingHead(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "readingHead",
names: new Dictionary {
["en-US"] = "reading head" },
descriptions: new Dictionary {
["en-US"] = "The head that is selected to read the TID." }),
value);
return this;
}
}
}