nolltre-lab-test-prep-quiz
- Description:
Elevate your events with Test Prep Quiz! Engage and learn with real-time multiplayer quizzes, featuring themed games, avatars, live scoreboards, and Chromecast support. Ideal for education and entertainment!
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createNolltreLabTestPrepQuizInstance(context, body) → {NolltreLabTestPrepQuiz}
- Description:
Create a new Test Prep Quiz instance
Example
import { Context } from '@osaas/client-core';
import { createNolltreLabTestPrepQuizInstance } from '@osaas/client-services';
const ctx = new Context();
const body: NolltreLabTestPrepQuizConfig = { name: 'myinstance', ... };
const instance = await createNolltreLabTestPrepQuizInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
NolltreLabTestPrepQuizConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getNolltreLabTestPrepQuizInstance(context, name) → {NolltreLabTestPrepQuiz}
- Description:
Get a Test Prep Quiz instance
Example
import { Context } from '@osaas/client-core';
import { getNolltreLabTestPrepQuizInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getNolltreLabTestPrepQuizInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the test-prep-quiz to be retrieved |
Returns:
- Service instance
(async, static) removeNolltreLabTestPrepQuizInstance(context, name)
- Description:
Remove a Test Prep Quiz instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the test-prep-quiz to be removed |