@instructure/athena-api-client 2.18.1 → 2.19.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.
|
@@ -33,6 +33,12 @@ export interface EnrollmentTaxonomy {
|
|
|
33
33
|
* @memberof EnrollmentTaxonomy
|
|
34
34
|
*/
|
|
35
35
|
name: string;
|
|
36
|
+
/**
|
|
37
|
+
* Taxonomy description
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof EnrollmentTaxonomy
|
|
40
|
+
*/
|
|
41
|
+
description: string;
|
|
36
42
|
/**
|
|
37
43
|
* Taxonomy status
|
|
38
44
|
* @type {string}
|
|
@@ -28,6 +28,8 @@ export function instanceOfEnrollmentTaxonomy(value) {
|
|
|
28
28
|
return false;
|
|
29
29
|
if (!('name' in value) || value['name'] === undefined)
|
|
30
30
|
return false;
|
|
31
|
+
if (!('description' in value) || value['description'] === undefined)
|
|
32
|
+
return false;
|
|
31
33
|
if (!('status' in value) || value['status'] === undefined)
|
|
32
34
|
return false;
|
|
33
35
|
return true;
|
|
@@ -43,6 +45,7 @@ export function EnrollmentTaxonomyFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
43
45
|
'id': json['id'],
|
|
44
46
|
'slug': json['slug'],
|
|
45
47
|
'name': json['name'],
|
|
48
|
+
'description': json['description'],
|
|
46
49
|
'status': json['status'],
|
|
47
50
|
};
|
|
48
51
|
}
|
|
@@ -57,6 +60,7 @@ export function EnrollmentTaxonomyToJSONTyped(value, ignoreDiscriminator = false
|
|
|
57
60
|
'id': value['id'],
|
|
58
61
|
'slug': value['slug'],
|
|
59
62
|
'name': value['name'],
|
|
63
|
+
'description': value['description'],
|
|
60
64
|
'status': value['status'],
|
|
61
65
|
};
|
|
62
66
|
}
|
|
@@ -33,6 +33,12 @@ export interface EnrollmentTaxonomy {
|
|
|
33
33
|
* @memberof EnrollmentTaxonomy
|
|
34
34
|
*/
|
|
35
35
|
name: string;
|
|
36
|
+
/**
|
|
37
|
+
* Taxonomy description
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof EnrollmentTaxonomy
|
|
40
|
+
*/
|
|
41
|
+
description: string;
|
|
36
42
|
/**
|
|
37
43
|
* Taxonomy status
|
|
38
44
|
* @type {string}
|
|
@@ -36,6 +36,8 @@ function instanceOfEnrollmentTaxonomy(value) {
|
|
|
36
36
|
return false;
|
|
37
37
|
if (!('name' in value) || value['name'] === undefined)
|
|
38
38
|
return false;
|
|
39
|
+
if (!('description' in value) || value['description'] === undefined)
|
|
40
|
+
return false;
|
|
39
41
|
if (!('status' in value) || value['status'] === undefined)
|
|
40
42
|
return false;
|
|
41
43
|
return true;
|
|
@@ -51,6 +53,7 @@ function EnrollmentTaxonomyFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
51
53
|
'id': json['id'],
|
|
52
54
|
'slug': json['slug'],
|
|
53
55
|
'name': json['name'],
|
|
56
|
+
'description': json['description'],
|
|
54
57
|
'status': json['status'],
|
|
55
58
|
};
|
|
56
59
|
}
|
|
@@ -65,6 +68,7 @@ function EnrollmentTaxonomyToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
65
68
|
'id': value['id'],
|
|
66
69
|
'slug': value['slug'],
|
|
67
70
|
'name': value['name'],
|
|
71
|
+
'description': value['description'],
|
|
68
72
|
'status': value['status'],
|
|
69
73
|
};
|
|
70
74
|
}
|