using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides all extensions of the context vrRfidChamber of type result as public properties.
///
public sealed class xAPI_Extensions_Result_VrRfidChamber : xAPI_Extensions_Result {
public xAPI_Extensions_Result_VrRfidChamber()
: base("vrRfidChamber") {
}
///
/// Value representing a length of time required to complete the experiment.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/extensions/result/duration
///
public xAPI_Extensions_Result_VrRfidChamber duration(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "duration",
names: new Dictionary {
["en-US"] = "duration" },
descriptions: new Dictionary {
["en-US"] = "Value representing a length of time required to complete the experiment." }),
value);
return this;
}
///
/// The time when the experiment was completed that is when the software was closed. This is captured from the system time of the local machine.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/extensions/result/endTime
///
public xAPI_Extensions_Result_VrRfidChamber endTime(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "endTime",
names: new Dictionary {
["en-US"] = "end time" },
descriptions: new Dictionary {
["en-US"] = "The time when the experiment was completed that is when the software was closed. This is captured from the system time of the local machine." }),
value);
return this;
}
///
/// The experiment is a failure.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/extensions/result/failure
///
public xAPI_Extensions_Result_VrRfidChamber failure(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "failure",
names: new Dictionary {
["en-US"] = "failure" },
descriptions: new Dictionary {
["en-US"] = "The experiment is a failure." }),
value);
return this;
}
///
/// The time when the experiment began. This is captured from the system time of the local machine.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/extensions/result/startTime
///
public xAPI_Extensions_Result_VrRfidChamber startTime(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "startTime",
names: new Dictionary {
["en-US"] = "start time" },
descriptions: new Dictionary {
["en-US"] = "The time when the experiment began. This is captured from the system time of the local machine." }),
value);
return this;
}
///
/// Experiment is successful.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/extensions/result/success
///
public xAPI_Extensions_Result_VrRfidChamber success(object value) {
Add(new xAPI_Extension(
context: Context,
extensionType: ExtensionType,
key: "success",
names: new Dictionary {
["en-US"] = "success" },
descriptions: new Dictionary {
["en-US"] = "Experiment is successful." }),
value);
return this;
}
}
}