using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides 4 items of the xAPI_Verbs of the context rightsEngine as public properties.
///
public sealed class xAPI_Verbs_RightsEngine : xAPI_Verbs {
///
/// Actor accessed/viewed a schema, his or her consent, ...
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/rightsEngine/verbs/accessed
///
public readonly xAPI_Verb accessed = new xAPI_Verb(
context: "rightsEngine",
key: "accessed",
names: new Dictionary {
["en-US"] = "accessed",
["de-DE"] = "zugegriffen" },
descriptions: new Dictionary {
["en-US"] = "Actor accessed/viewed a schema, his or her consent, ...",
["de-DE"] = "Akteur hat (auf) ein Schema, die eigenen Zustimmungen, ... zugegriffen/angesehen." });
///
/// Actor paused the data collection for the related provider context, but the consent settings will be kept. Data collection can be resumed by resuming the the provider context.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/rightsEngine/verbs/paused
///
public readonly xAPI_Verb paused = new xAPI_Verb(
context: "rightsEngine",
key: "paused",
names: new Dictionary {
["en-US"] = "paused",
["de-DE"] = "pausierte" },
descriptions: new Dictionary {
["en-US"] = "Actor paused the data collection for the related provider context, but the consent settings will be kept. Data collection can be resumed by resuming the the provider context.",
["de-DE"] = "Akteur pausierte die Datensammlung für einen Provider-Kontext, die Zustimmungen bleiben aber erhalten. Die Datensammlung kann fortgesetzt werden, wenn der der Provider-Kontext wieder fortgesetzt wird." });
///
/// Actor resumed a previously paused provider context. Consequently, the data collection is resumed with the preserved consent settings.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/rightsEngine/verbs/resumed
///
public readonly xAPI_Verb resumed = new xAPI_Verb(
context: "rightsEngine",
key: "resumed",
names: new Dictionary {
["en-US"] = "resumed",
["de-DE"] = "setzte fort" },
descriptions: new Dictionary {
["en-US"] = "Actor resumed a previously paused provider context. Consequently, the data collection is resumed with the preserved consent settings.",
["de-DE"] = "Akteur setzte einen zuvor pausierten Provider-Kontext fort. In Folge ist die Datensammlung für das Schema mit den beibehaltenen Zustimmungseinstellungen wiederaufgenommen." });
///
/// Actor updated his or her consent for a schema or a schema itself.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/rightsEngine/verbs/updated
///
public readonly xAPI_Verb updated = new xAPI_Verb(
context: "rightsEngine",
key: "updated",
names: new Dictionary {
["en-US"] = "updated",
["de-DE"] = "aktualisierte" },
descriptions: new Dictionary {
["en-US"] = "Actor updated his or her consent for a schema or a schema itself.",
["de-DE"] = "Akteur aktualisierte die eigenen Zustimmungen für ein Schema oder ein Schema selbst." });
public xAPI_Verbs_RightsEngine()
: base("rightsEngine") {
}
}
}