using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides 6 items of the xAPI_Verbs of the context uhfReader as public properties.
///
public sealed class xAPI_Verbs_UhfReader : xAPI_Verbs {
///
/// An actor clicked on something on the UHF Reader software.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/verbs/clicked
///
public readonly xAPI_Verb clicked = new xAPI_Verb(
context: "uhfReader",
key: "clicked",
names: new Dictionary {
["en-US"] = "clicked" },
descriptions: new Dictionary {
["en-US"] = "An actor clicked on something on the UHF Reader software." });
///
/// An actor connected an device (e.g. transponder) to the physical reader.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/verbs/connected
///
public readonly xAPI_Verb connected = new xAPI_Verb(
context: "uhfReader",
key: "connected",
names: new Dictionary {
["en-US"] = "connected" },
descriptions: new Dictionary {
["en-US"] = "An actor connected an device (e.g. transponder) to the physical reader." });
///
/// A user evaluates a target (e.g. transponder).
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/verbs/evaluate
///
public readonly xAPI_Verb evaluate = new xAPI_Verb(
context: "uhfReader",
key: "evaluate",
names: new Dictionary {
["en-US"] = "evaluate" },
descriptions: new Dictionary {
["en-US"] = "A user evaluates a target (e.g. transponder)." });
///
/// An actor selects an activity mode or experiment mode from menu.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/verbs/selected
///
public readonly xAPI_Verb selected = new xAPI_Verb(
context: "uhfReader",
key: "selected",
names: new Dictionary {
["en-US"] = "selected" },
descriptions: new Dictionary {
["en-US"] = "An actor selects an activity mode or experiment mode from menu." });
///
/// An actor started an activity or process.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/verbs/started
///
public readonly xAPI_Verb started = new xAPI_Verb(
context: "uhfReader",
key: "started",
names: new Dictionary {
["en-US"] = "started" },
descriptions: new Dictionary {
["en-US"] = "An actor started an activity or process." });
///
/// An actor copied the TID from the screen. Then the actor can paste it in google to research on the transponder.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/verbs/tidCopied
///
public readonly xAPI_Verb tidCopied = new xAPI_Verb(
context: "uhfReader",
key: "tidCopied",
names: new Dictionary {
["en-US"] = "tid copied" },
descriptions: new Dictionary {
["en-US"] = "An actor copied the TID from the screen. Then the actor can paste it in google to research on the transponder." });
public xAPI_Verbs_UhfReader()
: base("uhfReader") {
}
}
}