@easyedu/js-lsm-api 1.91.0 → 1.93.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +50 -0
- package/README.md +52 -2
- package/dist/apis/ContentLibraryQuizApi.d.ts +451 -0
- package/dist/apis/ContentLibraryQuizApi.js +1162 -0
- package/dist/apis/PlayerApi.d.ts +15 -0
- package/dist/apis/PlayerApi.js +44 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/esm/apis/ContentLibraryQuizApi.d.ts +451 -0
- package/dist/esm/apis/ContentLibraryQuizApi.js +1158 -0
- package/dist/esm/apis/PlayerApi.d.ts +15 -0
- package/dist/esm/apis/PlayerApi.js +44 -0
- package/dist/esm/apis/index.d.ts +1 -0
- package/dist/esm/apis/index.js +1 -0
- package/dist/esm/models/GetCourseVersionItem.d.ts +14 -0
- package/dist/esm/models/GetCourseVersionItem.js +9 -0
- package/dist/esm/models/GetLibraryQuiz.d.ts +124 -0
- package/dist/esm/models/GetLibraryQuiz.js +100 -0
- package/dist/esm/models/GetLibraryQuizAnalytics.d.ts +68 -0
- package/dist/esm/models/GetLibraryQuizAnalytics.js +67 -0
- package/dist/esm/models/GetLibraryQuizList.d.ts +57 -0
- package/dist/esm/models/GetLibraryQuizList.js +60 -0
- package/dist/esm/models/GetLibraryQuizResult.d.ts +94 -0
- package/dist/esm/models/GetLibraryQuizResult.js +79 -0
- package/dist/esm/models/GetLibraryQuizSession.d.ts +177 -0
- package/dist/esm/models/GetLibraryQuizSession.js +129 -0
- package/dist/esm/models/GetLibraryQuizSessionList.d.ts +57 -0
- package/dist/esm/models/GetLibraryQuizSessionList.js +60 -0
- package/dist/esm/models/GetLibraryQuizUsage.d.ts +56 -0
- package/dist/esm/models/GetLibraryQuizUsage.js +59 -0
- package/dist/esm/models/GetLibraryQuizVersion.d.ts +170 -0
- package/dist/esm/models/GetLibraryQuizVersion.js +125 -0
- package/dist/esm/models/GetQuestion.d.ts +7 -1
- package/dist/esm/models/GetQuestion.js +3 -0
- package/dist/esm/models/LibraryQuizCriterion.d.ts +95 -0
- package/dist/esm/models/LibraryQuizCriterion.js +76 -0
- package/dist/esm/models/LibraryQuizQuestion.d.ts +113 -0
- package/dist/esm/models/LibraryQuizQuestion.js +93 -0
- package/dist/esm/models/LibraryQuizQuestionInput.d.ts +50 -0
- package/dist/esm/models/LibraryQuizQuestionInput.js +51 -0
- package/dist/esm/models/LibraryQuizSessionAnswerChoice.d.ts +51 -0
- package/dist/esm/models/LibraryQuizSessionAnswerChoice.js +54 -0
- package/dist/esm/models/LibraryQuizSessionQuestion.d.ts +96 -0
- package/dist/esm/models/LibraryQuizSessionQuestion.js +84 -0
- package/dist/esm/models/PostCourseLibraryQuizSession.d.ts +32 -0
- package/dist/esm/models/PostCourseLibraryQuizSession.js +41 -0
- package/dist/esm/models/PostLibraryQuiz.d.ts +107 -0
- package/dist/esm/models/PostLibraryQuiz.js +70 -0
- package/dist/esm/models/PostLibraryQuizSession.d.ts +32 -0
- package/dist/esm/models/PostLibraryQuizSession.js +41 -0
- package/dist/esm/models/PostLibraryQuizVersion.d.ts +32 -0
- package/dist/esm/models/PostLibraryQuizVersion.js +41 -0
- package/dist/esm/models/PutLibraryQuiz.d.ts +38 -0
- package/dist/esm/models/PutLibraryQuiz.js +43 -0
- package/dist/esm/models/PutLibraryQuizCriteria.d.ts +33 -0
- package/dist/esm/models/PutLibraryQuizCriteria.js +44 -0
- package/dist/esm/models/PutLibraryQuizQuestions.d.ts +33 -0
- package/dist/esm/models/PutLibraryQuizQuestions.js +44 -0
- package/dist/esm/models/PutLibraryQuizSessionAnswer.d.ts +40 -0
- package/dist/esm/models/PutLibraryQuizSessionAnswer.js +45 -0
- package/dist/esm/models/PutLibraryQuizSessionGrade.d.ts +38 -0
- package/dist/esm/models/PutLibraryQuizSessionGrade.js +45 -0
- package/dist/esm/models/PutLibraryQuizVersion.d.ts +101 -0
- package/dist/esm/models/PutLibraryQuizVersion.js +64 -0
- package/dist/esm/models/QuestionSelectionMethod.d.ts +25 -0
- package/dist/esm/models/QuestionSelectionMethod.js +43 -0
- package/dist/esm/models/index.d.ts +24 -0
- package/dist/esm/models/index.js +24 -0
- package/dist/models/GetCourseVersionItem.d.ts +14 -0
- package/dist/models/GetCourseVersionItem.js +10 -1
- package/dist/models/GetLibraryQuiz.d.ts +124 -0
- package/dist/models/GetLibraryQuiz.js +108 -0
- package/dist/models/GetLibraryQuizAnalytics.d.ts +68 -0
- package/dist/models/GetLibraryQuizAnalytics.js +74 -0
- package/dist/models/GetLibraryQuizList.d.ts +57 -0
- package/dist/models/GetLibraryQuizList.js +67 -0
- package/dist/models/GetLibraryQuizResult.d.ts +94 -0
- package/dist/models/GetLibraryQuizResult.js +86 -0
- package/dist/models/GetLibraryQuizSession.d.ts +177 -0
- package/dist/models/GetLibraryQuizSession.js +137 -0
- package/dist/models/GetLibraryQuizSessionList.d.ts +57 -0
- package/dist/models/GetLibraryQuizSessionList.js +67 -0
- package/dist/models/GetLibraryQuizUsage.d.ts +56 -0
- package/dist/models/GetLibraryQuizUsage.js +66 -0
- package/dist/models/GetLibraryQuizVersion.d.ts +170 -0
- package/dist/models/GetLibraryQuizVersion.js +132 -0
- package/dist/models/GetQuestion.d.ts +7 -1
- package/dist/models/GetQuestion.js +3 -0
- package/dist/models/LibraryQuizCriterion.d.ts +95 -0
- package/dist/models/LibraryQuizCriterion.js +84 -0
- package/dist/models/LibraryQuizQuestion.d.ts +113 -0
- package/dist/models/LibraryQuizQuestion.js +101 -0
- package/dist/models/LibraryQuizQuestionInput.d.ts +50 -0
- package/dist/models/LibraryQuizQuestionInput.js +58 -0
- package/dist/models/LibraryQuizSessionAnswerChoice.d.ts +51 -0
- package/dist/models/LibraryQuizSessionAnswerChoice.js +61 -0
- package/dist/models/LibraryQuizSessionQuestion.d.ts +96 -0
- package/dist/models/LibraryQuizSessionQuestion.js +92 -0
- package/dist/models/PostCourseLibraryQuizSession.d.ts +32 -0
- package/dist/models/PostCourseLibraryQuizSession.js +48 -0
- package/dist/models/PostLibraryQuiz.d.ts +107 -0
- package/dist/models/PostLibraryQuiz.js +77 -0
- package/dist/models/PostLibraryQuizSession.d.ts +32 -0
- package/dist/models/PostLibraryQuizSession.js +48 -0
- package/dist/models/PostLibraryQuizVersion.d.ts +32 -0
- package/dist/models/PostLibraryQuizVersion.js +48 -0
- package/dist/models/PutLibraryQuiz.d.ts +38 -0
- package/dist/models/PutLibraryQuiz.js +50 -0
- package/dist/models/PutLibraryQuizCriteria.d.ts +33 -0
- package/dist/models/PutLibraryQuizCriteria.js +51 -0
- package/dist/models/PutLibraryQuizQuestions.d.ts +33 -0
- package/dist/models/PutLibraryQuizQuestions.js +51 -0
- package/dist/models/PutLibraryQuizSessionAnswer.d.ts +40 -0
- package/dist/models/PutLibraryQuizSessionAnswer.js +52 -0
- package/dist/models/PutLibraryQuizSessionGrade.d.ts +38 -0
- package/dist/models/PutLibraryQuizSessionGrade.js +52 -0
- package/dist/models/PutLibraryQuizVersion.d.ts +101 -0
- package/dist/models/PutLibraryQuizVersion.js +71 -0
- package/dist/models/QuestionSelectionMethod.d.ts +25 -0
- package/dist/models/QuestionSelectionMethod.js +51 -0
- package/dist/models/index.d.ts +24 -0
- package/dist/models/index.js +24 -0
- package/docs/ContentLibraryQuizApi.md +1780 -0
- package/docs/GetCourseVersionItem.md +2 -0
- package/docs/GetLibraryQuiz.md +62 -0
- package/docs/GetLibraryQuizAnalytics.md +46 -0
- package/docs/GetLibraryQuizList.md +42 -0
- package/docs/GetLibraryQuizResult.md +54 -0
- package/docs/GetLibraryQuizSession.md +78 -0
- package/docs/GetLibraryQuizSessionList.md +42 -0
- package/docs/GetLibraryQuizUsage.md +42 -0
- package/docs/GetLibraryQuizVersion.md +78 -0
- package/docs/GetQuestion.md +2 -0
- package/docs/LibraryQuizCriterion.md +48 -0
- package/docs/LibraryQuizQuestion.md +56 -0
- package/docs/LibraryQuizQuestionInput.md +40 -0
- package/docs/LibraryQuizSessionAnswerChoice.md +40 -0
- package/docs/LibraryQuizSessionQuestion.md +50 -0
- package/docs/PlayerApi.md +66 -0
- package/docs/PostCourseLibraryQuizSession.md +34 -0
- package/docs/PostLibraryQuiz.md +58 -0
- package/docs/PostLibraryQuizSession.md +34 -0
- package/docs/PostLibraryQuizVersion.md +34 -0
- package/docs/PutLibraryQuiz.md +36 -0
- package/docs/PutLibraryQuizCriteria.md +34 -0
- package/docs/PutLibraryQuizQuestions.md +34 -0
- package/docs/PutLibraryQuizSessionAnswer.md +36 -0
- package/docs/PutLibraryQuizSessionGrade.md +36 -0
- package/docs/PutLibraryQuizVersion.md +56 -0
- package/docs/QuestionSelectionMethod.md +32 -0
- package/package.json +1 -1
- package/src/apis/ContentLibraryQuizApi.ts +1624 -0
- package/src/apis/PlayerApi.ts +53 -0
- package/src/apis/index.ts +1 -0
- package/src/models/GetCourseVersionItem.ts +17 -0
- package/src/models/GetLibraryQuiz.ts +207 -0
- package/src/models/GetLibraryQuizAnalytics.ts +120 -0
- package/src/models/GetLibraryQuizList.ts +110 -0
- package/src/models/GetLibraryQuizResult.ts +154 -0
- package/src/models/GetLibraryQuizSession.ts +286 -0
- package/src/models/GetLibraryQuizSessionList.ts +110 -0
- package/src/models/GetLibraryQuizUsage.ts +102 -0
- package/src/models/GetLibraryQuizVersion.ts +290 -0
- package/src/models/GetQuestion.ts +9 -1
- package/src/models/LibraryQuizCriterion.ts +147 -0
- package/src/models/LibraryQuizQuestion.ts +185 -0
- package/src/models/LibraryQuizQuestionInput.ts +91 -0
- package/src/models/LibraryQuizSessionAnswerChoice.ts +100 -0
- package/src/models/LibraryQuizSessionQuestion.ts +166 -0
- package/src/models/PostCourseLibraryQuizSession.ts +65 -0
- package/src/models/PostLibraryQuiz.ts +173 -0
- package/src/models/PostLibraryQuizSession.ts +65 -0
- package/src/models/PostLibraryQuizVersion.ts +65 -0
- package/src/models/PutLibraryQuiz.ts +73 -0
- package/src/models/PutLibraryQuizCriteria.ts +74 -0
- package/src/models/PutLibraryQuizQuestions.ts +74 -0
- package/src/models/PutLibraryQuizSessionAnswer.ts +74 -0
- package/src/models/PutLibraryQuizSessionGrade.ts +74 -0
- package/src/models/PutLibraryQuizVersion.ts +163 -0
- package/src/models/QuestionSelectionMethod.ts +53 -0
- package/src/models/index.ts +24 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* LMS API
|
|
3
|
+
* LMS API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { RichTextDocument } from './RichTextDocument';
|
|
13
|
+
import type { LibraryQuizSessionAnswerChoice } from './LibraryQuizSessionAnswerChoice';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface LibraryQuizSessionQuestion
|
|
18
|
+
*/
|
|
19
|
+
export interface LibraryQuizSessionQuestion {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof LibraryQuizSessionQuestion
|
|
24
|
+
*/
|
|
25
|
+
id: string;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof LibraryQuizSessionQuestion
|
|
30
|
+
*/
|
|
31
|
+
displayOrder: number;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof LibraryQuizSessionQuestion
|
|
36
|
+
*/
|
|
37
|
+
points: number;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {LibraryQuizSessionQuestionQuestionTypeEnum}
|
|
41
|
+
* @memberof LibraryQuizSessionQuestion
|
|
42
|
+
*/
|
|
43
|
+
questionType: LibraryQuizSessionQuestionQuestionTypeEnum;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof LibraryQuizSessionQuestion
|
|
48
|
+
*/
|
|
49
|
+
questionText: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {RichTextDocument}
|
|
53
|
+
* @memberof LibraryQuizSessionQuestion
|
|
54
|
+
*/
|
|
55
|
+
questionTextRich?: RichTextDocument | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {Array<LibraryQuizSessionAnswerChoice>}
|
|
59
|
+
* @memberof LibraryQuizSessionQuestion
|
|
60
|
+
*/
|
|
61
|
+
answerChoices: Array<LibraryQuizSessionAnswerChoice>;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof LibraryQuizSessionQuestion
|
|
66
|
+
*/
|
|
67
|
+
isAnswered: boolean;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {{ [key: string]: any; }}
|
|
71
|
+
* @memberof LibraryQuizSessionQuestion
|
|
72
|
+
*/
|
|
73
|
+
answer?: {
|
|
74
|
+
[key: string]: any;
|
|
75
|
+
} | null;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* @export
|
|
79
|
+
*/
|
|
80
|
+
export declare const LibraryQuizSessionQuestionQuestionTypeEnum: {
|
|
81
|
+
readonly SingleAnswer: "single_answer";
|
|
82
|
+
readonly MultipleAnswer: "multiple_answer";
|
|
83
|
+
readonly FillInBlank: "fill_in_blank";
|
|
84
|
+
readonly ShortAnswer: "short_answer";
|
|
85
|
+
readonly Matching: "matching";
|
|
86
|
+
readonly Essay: "essay";
|
|
87
|
+
};
|
|
88
|
+
export type LibraryQuizSessionQuestionQuestionTypeEnum = typeof LibraryQuizSessionQuestionQuestionTypeEnum[keyof typeof LibraryQuizSessionQuestionQuestionTypeEnum];
|
|
89
|
+
/**
|
|
90
|
+
* Check if a given object implements the LibraryQuizSessionQuestion interface.
|
|
91
|
+
*/
|
|
92
|
+
export declare function instanceOfLibraryQuizSessionQuestion(value: object): value is LibraryQuizSessionQuestion;
|
|
93
|
+
export declare function LibraryQuizSessionQuestionFromJSON(json: any): LibraryQuizSessionQuestion;
|
|
94
|
+
export declare function LibraryQuizSessionQuestionFromJSONTyped(json: any, ignoreDiscriminator: boolean): LibraryQuizSessionQuestion;
|
|
95
|
+
export declare function LibraryQuizSessionQuestionToJSON(json: any): LibraryQuizSessionQuestion;
|
|
96
|
+
export declare function LibraryQuizSessionQuestionToJSONTyped(value?: LibraryQuizSessionQuestion | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* LMS API
|
|
6
|
+
* LMS API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.LibraryQuizSessionQuestionQuestionTypeEnum = void 0;
|
|
17
|
+
exports.instanceOfLibraryQuizSessionQuestion = instanceOfLibraryQuizSessionQuestion;
|
|
18
|
+
exports.LibraryQuizSessionQuestionFromJSON = LibraryQuizSessionQuestionFromJSON;
|
|
19
|
+
exports.LibraryQuizSessionQuestionFromJSONTyped = LibraryQuizSessionQuestionFromJSONTyped;
|
|
20
|
+
exports.LibraryQuizSessionQuestionToJSON = LibraryQuizSessionQuestionToJSON;
|
|
21
|
+
exports.LibraryQuizSessionQuestionToJSONTyped = LibraryQuizSessionQuestionToJSONTyped;
|
|
22
|
+
const RichTextDocument_1 = require("./RichTextDocument");
|
|
23
|
+
const LibraryQuizSessionAnswerChoice_1 = require("./LibraryQuizSessionAnswerChoice");
|
|
24
|
+
/**
|
|
25
|
+
* @export
|
|
26
|
+
*/
|
|
27
|
+
exports.LibraryQuizSessionQuestionQuestionTypeEnum = {
|
|
28
|
+
SingleAnswer: 'single_answer',
|
|
29
|
+
MultipleAnswer: 'multiple_answer',
|
|
30
|
+
FillInBlank: 'fill_in_blank',
|
|
31
|
+
ShortAnswer: 'short_answer',
|
|
32
|
+
Matching: 'matching',
|
|
33
|
+
Essay: 'essay'
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Check if a given object implements the LibraryQuizSessionQuestion interface.
|
|
37
|
+
*/
|
|
38
|
+
function instanceOfLibraryQuizSessionQuestion(value) {
|
|
39
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
if (!('displayOrder' in value) || value['displayOrder'] === undefined)
|
|
42
|
+
return false;
|
|
43
|
+
if (!('points' in value) || value['points'] === undefined)
|
|
44
|
+
return false;
|
|
45
|
+
if (!('questionType' in value) || value['questionType'] === undefined)
|
|
46
|
+
return false;
|
|
47
|
+
if (!('questionText' in value) || value['questionText'] === undefined)
|
|
48
|
+
return false;
|
|
49
|
+
if (!('answerChoices' in value) || value['answerChoices'] === undefined)
|
|
50
|
+
return false;
|
|
51
|
+
if (!('isAnswered' in value) || value['isAnswered'] === undefined)
|
|
52
|
+
return false;
|
|
53
|
+
return true;
|
|
54
|
+
}
|
|
55
|
+
function LibraryQuizSessionQuestionFromJSON(json) {
|
|
56
|
+
return LibraryQuizSessionQuestionFromJSONTyped(json, false);
|
|
57
|
+
}
|
|
58
|
+
function LibraryQuizSessionQuestionFromJSONTyped(json, ignoreDiscriminator) {
|
|
59
|
+
if (json == null) {
|
|
60
|
+
return json;
|
|
61
|
+
}
|
|
62
|
+
return {
|
|
63
|
+
'id': json['id'],
|
|
64
|
+
'displayOrder': json['display_order'],
|
|
65
|
+
'points': json['points'],
|
|
66
|
+
'questionType': json['question_type'],
|
|
67
|
+
'questionText': json['question_text'],
|
|
68
|
+
'questionTextRich': json['question_text_rich'] == null ? undefined : (0, RichTextDocument_1.RichTextDocumentFromJSON)(json['question_text_rich']),
|
|
69
|
+
'answerChoices': (json['answer_choices'].map(LibraryQuizSessionAnswerChoice_1.LibraryQuizSessionAnswerChoiceFromJSON)),
|
|
70
|
+
'isAnswered': json['is_answered'],
|
|
71
|
+
'answer': json['answer'] == null ? undefined : json['answer'],
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
function LibraryQuizSessionQuestionToJSON(json) {
|
|
75
|
+
return LibraryQuizSessionQuestionToJSONTyped(json, false);
|
|
76
|
+
}
|
|
77
|
+
function LibraryQuizSessionQuestionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
78
|
+
if (value == null) {
|
|
79
|
+
return value;
|
|
80
|
+
}
|
|
81
|
+
return {
|
|
82
|
+
'id': value['id'],
|
|
83
|
+
'display_order': value['displayOrder'],
|
|
84
|
+
'points': value['points'],
|
|
85
|
+
'question_type': value['questionType'],
|
|
86
|
+
'question_text': value['questionText'],
|
|
87
|
+
'question_text_rich': (0, RichTextDocument_1.RichTextDocumentToJSON)(value['questionTextRich']),
|
|
88
|
+
'answer_choices': (value['answerChoices'].map(LibraryQuizSessionAnswerChoice_1.LibraryQuizSessionAnswerChoiceToJSON)),
|
|
89
|
+
'is_answered': value['isAnswered'],
|
|
90
|
+
'answer': value['answer'],
|
|
91
|
+
};
|
|
92
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* LMS API
|
|
3
|
+
* LMS API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PostCourseLibraryQuizSession
|
|
16
|
+
*/
|
|
17
|
+
export interface PostCourseLibraryQuizSession {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof PostCourseLibraryQuizSession
|
|
22
|
+
*/
|
|
23
|
+
retake?: boolean;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the PostCourseLibraryQuizSession interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfPostCourseLibraryQuizSession(value: object): value is PostCourseLibraryQuizSession;
|
|
29
|
+
export declare function PostCourseLibraryQuizSessionFromJSON(json: any): PostCourseLibraryQuizSession;
|
|
30
|
+
export declare function PostCourseLibraryQuizSessionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCourseLibraryQuizSession;
|
|
31
|
+
export declare function PostCourseLibraryQuizSessionToJSON(json: any): PostCourseLibraryQuizSession;
|
|
32
|
+
export declare function PostCourseLibraryQuizSessionToJSONTyped(value?: PostCourseLibraryQuizSession | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* LMS API
|
|
6
|
+
* LMS API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfPostCourseLibraryQuizSession = instanceOfPostCourseLibraryQuizSession;
|
|
17
|
+
exports.PostCourseLibraryQuizSessionFromJSON = PostCourseLibraryQuizSessionFromJSON;
|
|
18
|
+
exports.PostCourseLibraryQuizSessionFromJSONTyped = PostCourseLibraryQuizSessionFromJSONTyped;
|
|
19
|
+
exports.PostCourseLibraryQuizSessionToJSON = PostCourseLibraryQuizSessionToJSON;
|
|
20
|
+
exports.PostCourseLibraryQuizSessionToJSONTyped = PostCourseLibraryQuizSessionToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the PostCourseLibraryQuizSession interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfPostCourseLibraryQuizSession(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function PostCourseLibraryQuizSessionFromJSON(json) {
|
|
28
|
+
return PostCourseLibraryQuizSessionFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function PostCourseLibraryQuizSessionFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'retake': json['retake'] == null ? undefined : json['retake'],
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
function PostCourseLibraryQuizSessionToJSON(json) {
|
|
39
|
+
return PostCourseLibraryQuizSessionToJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
function PostCourseLibraryQuizSessionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
42
|
+
if (value == null) {
|
|
43
|
+
return value;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
'retake': value['retake'],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* LMS API
|
|
3
|
+
* LMS API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { QuestionSelectionMethod } from './QuestionSelectionMethod';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PostLibraryQuiz
|
|
17
|
+
*/
|
|
18
|
+
export interface PostLibraryQuiz {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PostLibraryQuiz
|
|
23
|
+
*/
|
|
24
|
+
name: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PostLibraryQuiz
|
|
29
|
+
*/
|
|
30
|
+
description?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {QuestionSelectionMethod}
|
|
34
|
+
* @memberof PostLibraryQuiz
|
|
35
|
+
*/
|
|
36
|
+
questionSelectionMethod: QuestionSelectionMethod;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof PostLibraryQuiz
|
|
41
|
+
*/
|
|
42
|
+
maxQuestions?: number | null;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof PostLibraryQuiz
|
|
47
|
+
*/
|
|
48
|
+
passingScore?: number;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof PostLibraryQuiz
|
|
53
|
+
*/
|
|
54
|
+
timeLimitMinutes?: number | null;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {boolean}
|
|
58
|
+
* @memberof PostLibraryQuiz
|
|
59
|
+
*/
|
|
60
|
+
randomizeQuestions?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {boolean}
|
|
64
|
+
* @memberof PostLibraryQuiz
|
|
65
|
+
*/
|
|
66
|
+
randomizeAnswers?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {boolean}
|
|
70
|
+
* @memberof PostLibraryQuiz
|
|
71
|
+
*/
|
|
72
|
+
showResults?: boolean;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {boolean}
|
|
76
|
+
* @memberof PostLibraryQuiz
|
|
77
|
+
*/
|
|
78
|
+
showCorrectAnswers?: boolean;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof PostLibraryQuiz
|
|
83
|
+
*/
|
|
84
|
+
allowReview?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {boolean}
|
|
88
|
+
* @memberof PostLibraryQuiz
|
|
89
|
+
*/
|
|
90
|
+
requireAllQuestions?: boolean;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {{ [key: string]: any; }}
|
|
94
|
+
* @memberof PostLibraryQuiz
|
|
95
|
+
*/
|
|
96
|
+
settings?: {
|
|
97
|
+
[key: string]: any;
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Check if a given object implements the PostLibraryQuiz interface.
|
|
102
|
+
*/
|
|
103
|
+
export declare function instanceOfPostLibraryQuiz(value: object): value is PostLibraryQuiz;
|
|
104
|
+
export declare function PostLibraryQuizFromJSON(json: any): PostLibraryQuiz;
|
|
105
|
+
export declare function PostLibraryQuizFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostLibraryQuiz;
|
|
106
|
+
export declare function PostLibraryQuizToJSON(json: any): PostLibraryQuiz;
|
|
107
|
+
export declare function PostLibraryQuizToJSONTyped(value?: PostLibraryQuiz | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* LMS API
|
|
6
|
+
* LMS API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfPostLibraryQuiz = instanceOfPostLibraryQuiz;
|
|
17
|
+
exports.PostLibraryQuizFromJSON = PostLibraryQuizFromJSON;
|
|
18
|
+
exports.PostLibraryQuizFromJSONTyped = PostLibraryQuizFromJSONTyped;
|
|
19
|
+
exports.PostLibraryQuizToJSON = PostLibraryQuizToJSON;
|
|
20
|
+
exports.PostLibraryQuizToJSONTyped = PostLibraryQuizToJSONTyped;
|
|
21
|
+
const QuestionSelectionMethod_1 = require("./QuestionSelectionMethod");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the PostLibraryQuiz interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfPostLibraryQuiz(value) {
|
|
26
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('questionSelectionMethod' in value) || value['questionSelectionMethod'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function PostLibraryQuizFromJSON(json) {
|
|
33
|
+
return PostLibraryQuizFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function PostLibraryQuizFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'name': json['name'],
|
|
41
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
42
|
+
'questionSelectionMethod': (0, QuestionSelectionMethod_1.QuestionSelectionMethodFromJSON)(json['question_selection_method']),
|
|
43
|
+
'maxQuestions': json['max_questions'] == null ? undefined : json['max_questions'],
|
|
44
|
+
'passingScore': json['passing_score'] == null ? undefined : json['passing_score'],
|
|
45
|
+
'timeLimitMinutes': json['time_limit_minutes'] == null ? undefined : json['time_limit_minutes'],
|
|
46
|
+
'randomizeQuestions': json['randomize_questions'] == null ? undefined : json['randomize_questions'],
|
|
47
|
+
'randomizeAnswers': json['randomize_answers'] == null ? undefined : json['randomize_answers'],
|
|
48
|
+
'showResults': json['show_results'] == null ? undefined : json['show_results'],
|
|
49
|
+
'showCorrectAnswers': json['show_correct_answers'] == null ? undefined : json['show_correct_answers'],
|
|
50
|
+
'allowReview': json['allow_review'] == null ? undefined : json['allow_review'],
|
|
51
|
+
'requireAllQuestions': json['require_all_questions'] == null ? undefined : json['require_all_questions'],
|
|
52
|
+
'settings': json['settings'] == null ? undefined : json['settings'],
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
function PostLibraryQuizToJSON(json) {
|
|
56
|
+
return PostLibraryQuizToJSONTyped(json, false);
|
|
57
|
+
}
|
|
58
|
+
function PostLibraryQuizToJSONTyped(value, ignoreDiscriminator = false) {
|
|
59
|
+
if (value == null) {
|
|
60
|
+
return value;
|
|
61
|
+
}
|
|
62
|
+
return {
|
|
63
|
+
'name': value['name'],
|
|
64
|
+
'description': value['description'],
|
|
65
|
+
'question_selection_method': (0, QuestionSelectionMethod_1.QuestionSelectionMethodToJSON)(value['questionSelectionMethod']),
|
|
66
|
+
'max_questions': value['maxQuestions'],
|
|
67
|
+
'passing_score': value['passingScore'],
|
|
68
|
+
'time_limit_minutes': value['timeLimitMinutes'],
|
|
69
|
+
'randomize_questions': value['randomizeQuestions'],
|
|
70
|
+
'randomize_answers': value['randomizeAnswers'],
|
|
71
|
+
'show_results': value['showResults'],
|
|
72
|
+
'show_correct_answers': value['showCorrectAnswers'],
|
|
73
|
+
'allow_review': value['allowReview'],
|
|
74
|
+
'require_all_questions': value['requireAllQuestions'],
|
|
75
|
+
'settings': value['settings'],
|
|
76
|
+
};
|
|
77
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* LMS API
|
|
3
|
+
* LMS API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PostLibraryQuizSession
|
|
16
|
+
*/
|
|
17
|
+
export interface PostLibraryQuizSession {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof PostLibraryQuizSession
|
|
22
|
+
*/
|
|
23
|
+
restart?: boolean;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the PostLibraryQuizSession interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfPostLibraryQuizSession(value: object): value is PostLibraryQuizSession;
|
|
29
|
+
export declare function PostLibraryQuizSessionFromJSON(json: any): PostLibraryQuizSession;
|
|
30
|
+
export declare function PostLibraryQuizSessionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostLibraryQuizSession;
|
|
31
|
+
export declare function PostLibraryQuizSessionToJSON(json: any): PostLibraryQuizSession;
|
|
32
|
+
export declare function PostLibraryQuizSessionToJSONTyped(value?: PostLibraryQuizSession | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* LMS API
|
|
6
|
+
* LMS API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfPostLibraryQuizSession = instanceOfPostLibraryQuizSession;
|
|
17
|
+
exports.PostLibraryQuizSessionFromJSON = PostLibraryQuizSessionFromJSON;
|
|
18
|
+
exports.PostLibraryQuizSessionFromJSONTyped = PostLibraryQuizSessionFromJSONTyped;
|
|
19
|
+
exports.PostLibraryQuizSessionToJSON = PostLibraryQuizSessionToJSON;
|
|
20
|
+
exports.PostLibraryQuizSessionToJSONTyped = PostLibraryQuizSessionToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the PostLibraryQuizSession interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfPostLibraryQuizSession(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function PostLibraryQuizSessionFromJSON(json) {
|
|
28
|
+
return PostLibraryQuizSessionFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function PostLibraryQuizSessionFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'restart': json['restart'] == null ? undefined : json['restart'],
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
function PostLibraryQuizSessionToJSON(json) {
|
|
39
|
+
return PostLibraryQuizSessionToJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
function PostLibraryQuizSessionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
42
|
+
if (value == null) {
|
|
43
|
+
return value;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
'restart': value['restart'],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* LMS API
|
|
3
|
+
* LMS API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PostLibraryQuizVersion
|
|
16
|
+
*/
|
|
17
|
+
export interface PostLibraryQuizVersion {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PostLibraryQuizVersion
|
|
22
|
+
*/
|
|
23
|
+
changeNotes?: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the PostLibraryQuizVersion interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfPostLibraryQuizVersion(value: object): value is PostLibraryQuizVersion;
|
|
29
|
+
export declare function PostLibraryQuizVersionFromJSON(json: any): PostLibraryQuizVersion;
|
|
30
|
+
export declare function PostLibraryQuizVersionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostLibraryQuizVersion;
|
|
31
|
+
export declare function PostLibraryQuizVersionToJSON(json: any): PostLibraryQuizVersion;
|
|
32
|
+
export declare function PostLibraryQuizVersionToJSONTyped(value?: PostLibraryQuizVersion | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* LMS API
|
|
6
|
+
* LMS API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfPostLibraryQuizVersion = instanceOfPostLibraryQuizVersion;
|
|
17
|
+
exports.PostLibraryQuizVersionFromJSON = PostLibraryQuizVersionFromJSON;
|
|
18
|
+
exports.PostLibraryQuizVersionFromJSONTyped = PostLibraryQuizVersionFromJSONTyped;
|
|
19
|
+
exports.PostLibraryQuizVersionToJSON = PostLibraryQuizVersionToJSON;
|
|
20
|
+
exports.PostLibraryQuizVersionToJSONTyped = PostLibraryQuizVersionToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the PostLibraryQuizVersion interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfPostLibraryQuizVersion(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function PostLibraryQuizVersionFromJSON(json) {
|
|
28
|
+
return PostLibraryQuizVersionFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function PostLibraryQuizVersionFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'changeNotes': json['change_notes'] == null ? undefined : json['change_notes'],
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
function PostLibraryQuizVersionToJSON(json) {
|
|
39
|
+
return PostLibraryQuizVersionToJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
function PostLibraryQuizVersionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
42
|
+
if (value == null) {
|
|
43
|
+
return value;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
'change_notes': value['changeNotes'],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* LMS API
|
|
3
|
+
* LMS API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PutLibraryQuiz
|
|
16
|
+
*/
|
|
17
|
+
export interface PutLibraryQuiz {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PutLibraryQuiz
|
|
22
|
+
*/
|
|
23
|
+
name?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PutLibraryQuiz
|
|
28
|
+
*/
|
|
29
|
+
description?: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the PutLibraryQuiz interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfPutLibraryQuiz(value: object): value is PutLibraryQuiz;
|
|
35
|
+
export declare function PutLibraryQuizFromJSON(json: any): PutLibraryQuiz;
|
|
36
|
+
export declare function PutLibraryQuizFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutLibraryQuiz;
|
|
37
|
+
export declare function PutLibraryQuizToJSON(json: any): PutLibraryQuiz;
|
|
38
|
+
export declare function PutLibraryQuizToJSONTyped(value?: PutLibraryQuiz | null, ignoreDiscriminator?: boolean): any;
|