using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides all extensions of the context uhfReader of type result as public properties. /// public sealed class xAPI_Extensions_Result_UhfReader : xAPI_Extensions_Result { public xAPI_Extensions_Result_UhfReader() : base("uhfReader") { } /// /// State of the transpnder to the physical reader. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/extensions/result/transponderState /// public xAPI_Extensions_Result_UhfReader transponderState(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "transponderState", names: new Dictionary { ["en-US"] = "transponderState" }, descriptions: new Dictionary { ["en-US"] = "State of the transpnder to the physical reader." }), value); return this; } } }