@easyedu/js-lsm-api 1.41.0 → 1.43.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 +22 -0
- package/README.md +23 -2
- package/dist/apis/CourseApi.d.ts +32 -1
- package/dist/apis/CourseApi.js +99 -0
- package/dist/apis/SupportTicketApi.d.ts +191 -0
- package/dist/apis/SupportTicketApi.js +457 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/esm/apis/CourseApi.d.ts +32 -1
- package/dist/esm/apis/CourseApi.js +100 -1
- package/dist/esm/apis/SupportTicketApi.d.ts +191 -0
- package/dist/esm/apis/SupportTicketApi.js +453 -0
- package/dist/esm/apis/index.d.ts +1 -0
- package/dist/esm/apis/index.js +1 -0
- package/dist/esm/models/DownloadSupportTicketAttachment200Response.d.ts +32 -0
- package/dist/esm/models/DownloadSupportTicketAttachment200Response.js +43 -0
- package/dist/esm/models/GetCourseImageUpload.d.ts +32 -0
- package/dist/esm/models/GetCourseImageUpload.js +43 -0
- package/dist/esm/models/GetSupportTicket.d.ts +142 -0
- package/dist/esm/models/GetSupportTicket.js +120 -0
- package/dist/esm/models/GetSupportTicketAttachment.d.ts +62 -0
- package/dist/esm/models/GetSupportTicketAttachment.js +63 -0
- package/dist/esm/models/GetSupportTicketComment.d.ts +57 -0
- package/dist/esm/models/GetSupportTicketComment.js +60 -0
- package/dist/esm/models/GetSupportTicketList.d.ts +57 -0
- package/dist/esm/models/GetSupportTicketList.js +60 -0
- package/dist/esm/models/PostSupportTicket.d.ts +71 -0
- package/dist/esm/models/PostSupportTicket.js +74 -0
- package/dist/esm/models/PostSupportTicketComment.d.ts +38 -0
- package/dist/esm/models/PostSupportTicketComment.js +45 -0
- package/dist/esm/models/PutCourse.d.ts +0 -6
- package/dist/esm/models/PutCourse.js +0 -2
- package/dist/esm/models/PutSupportTicket.d.ts +63 -0
- package/dist/esm/models/PutSupportTicket.js +62 -0
- package/dist/esm/models/SupportTicketUser.d.ts +50 -0
- package/dist/esm/models/SupportTicketUser.js +55 -0
- package/dist/esm/models/index.d.ts +10 -0
- package/dist/esm/models/index.js +10 -0
- package/dist/models/DownloadSupportTicketAttachment200Response.d.ts +32 -0
- package/dist/models/DownloadSupportTicketAttachment200Response.js +50 -0
- package/dist/models/GetCourseImageUpload.d.ts +32 -0
- package/dist/models/GetCourseImageUpload.js +50 -0
- package/dist/models/GetSupportTicket.d.ts +142 -0
- package/dist/models/GetSupportTicket.js +128 -0
- package/dist/models/GetSupportTicketAttachment.d.ts +62 -0
- package/dist/models/GetSupportTicketAttachment.js +70 -0
- package/dist/models/GetSupportTicketComment.d.ts +57 -0
- package/dist/models/GetSupportTicketComment.js +67 -0
- package/dist/models/GetSupportTicketList.d.ts +57 -0
- package/dist/models/GetSupportTicketList.js +67 -0
- package/dist/models/PostSupportTicket.d.ts +71 -0
- package/dist/models/PostSupportTicket.js +82 -0
- package/dist/models/PostSupportTicketComment.d.ts +38 -0
- package/dist/models/PostSupportTicketComment.js +52 -0
- package/dist/models/PutCourse.d.ts +0 -6
- package/dist/models/PutCourse.js +0 -2
- package/dist/models/PutSupportTicket.d.ts +63 -0
- package/dist/models/PutSupportTicket.js +70 -0
- package/dist/models/SupportTicketUser.d.ts +50 -0
- package/dist/models/SupportTicketUser.js +62 -0
- package/dist/models/index.d.ts +10 -0
- package/dist/models/index.js +10 -0
- package/docs/CourseApi.md +138 -0
- package/docs/DownloadSupportTicketAttachment200Response.md +34 -0
- package/docs/GetCourseImageUpload.md +34 -0
- package/docs/GetSupportTicket.md +60 -0
- package/docs/GetSupportTicketAttachment.md +44 -0
- package/docs/GetSupportTicketComment.md +42 -0
- package/docs/GetSupportTicketList.md +42 -0
- package/docs/PostSupportTicket.md +40 -0
- package/docs/PostSupportTicketComment.md +36 -0
- package/docs/PutCourse.md +0 -2
- package/docs/PutSupportTicket.md +38 -0
- package/docs/SupportTicketApi.md +651 -0
- package/docs/SupportTicketUser.md +40 -0
- package/package.json +1 -1
- package/src/apis/CourseApi.ts +129 -0
- package/src/apis/SupportTicketApi.ts +599 -0
- package/src/apis/index.ts +1 -0
- package/src/models/DownloadSupportTicketAttachment200Response.ts +66 -0
- package/src/models/GetCourseImageUpload.ts +66 -0
- package/src/models/GetSupportTicket.ts +231 -0
- package/src/models/GetSupportTicketAttachment.ts +111 -0
- package/src/models/GetSupportTicketComment.ts +110 -0
- package/src/models/GetSupportTicketList.ts +110 -0
- package/src/models/PostSupportTicket.ts +118 -0
- package/src/models/PostSupportTicketComment.ts +74 -0
- package/src/models/PutCourse.ts +0 -8
- package/src/models/PutSupportTicket.ts +104 -0
- package/src/models/SupportTicketUser.ts +93 -0
- package/src/models/index.ts +10 -0
|
@@ -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 DownloadSupportTicketAttachment200Response
|
|
16
|
+
*/
|
|
17
|
+
export interface DownloadSupportTicketAttachment200Response {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DownloadSupportTicketAttachment200Response
|
|
22
|
+
*/
|
|
23
|
+
downloadUrl: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the DownloadSupportTicketAttachment200Response interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfDownloadSupportTicketAttachment200Response(value: object): value is DownloadSupportTicketAttachment200Response;
|
|
29
|
+
export declare function DownloadSupportTicketAttachment200ResponseFromJSON(json: any): DownloadSupportTicketAttachment200Response;
|
|
30
|
+
export declare function DownloadSupportTicketAttachment200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadSupportTicketAttachment200Response;
|
|
31
|
+
export declare function DownloadSupportTicketAttachment200ResponseToJSON(json: any): DownloadSupportTicketAttachment200Response;
|
|
32
|
+
export declare function DownloadSupportTicketAttachment200ResponseToJSONTyped(value?: DownloadSupportTicketAttachment200Response | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* LMS API
|
|
5
|
+
* LMS API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Check if a given object implements the DownloadSupportTicketAttachment200Response interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfDownloadSupportTicketAttachment200Response(value) {
|
|
18
|
+
if (!('downloadUrl' in value) || value['downloadUrl'] === undefined)
|
|
19
|
+
return false;
|
|
20
|
+
return true;
|
|
21
|
+
}
|
|
22
|
+
export function DownloadSupportTicketAttachment200ResponseFromJSON(json) {
|
|
23
|
+
return DownloadSupportTicketAttachment200ResponseFromJSONTyped(json, false);
|
|
24
|
+
}
|
|
25
|
+
export function DownloadSupportTicketAttachment200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
26
|
+
if (json == null) {
|
|
27
|
+
return json;
|
|
28
|
+
}
|
|
29
|
+
return {
|
|
30
|
+
'downloadUrl': json['download_url'],
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
export function DownloadSupportTicketAttachment200ResponseToJSON(json) {
|
|
34
|
+
return DownloadSupportTicketAttachment200ResponseToJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
export function DownloadSupportTicketAttachment200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
37
|
+
if (value == null) {
|
|
38
|
+
return value;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'download_url': value['downloadUrl'],
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -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 GetCourseImageUpload
|
|
16
|
+
*/
|
|
17
|
+
export interface GetCourseImageUpload {
|
|
18
|
+
/**
|
|
19
|
+
* Presigned URL for the uploaded course image
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof GetCourseImageUpload
|
|
22
|
+
*/
|
|
23
|
+
imageUrl: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the GetCourseImageUpload interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfGetCourseImageUpload(value: object): value is GetCourseImageUpload;
|
|
29
|
+
export declare function GetCourseImageUploadFromJSON(json: any): GetCourseImageUpload;
|
|
30
|
+
export declare function GetCourseImageUploadFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCourseImageUpload;
|
|
31
|
+
export declare function GetCourseImageUploadToJSON(json: any): GetCourseImageUpload;
|
|
32
|
+
export declare function GetCourseImageUploadToJSONTyped(value?: GetCourseImageUpload | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* LMS API
|
|
5
|
+
* LMS API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Check if a given object implements the GetCourseImageUpload interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfGetCourseImageUpload(value) {
|
|
18
|
+
if (!('imageUrl' in value) || value['imageUrl'] === undefined)
|
|
19
|
+
return false;
|
|
20
|
+
return true;
|
|
21
|
+
}
|
|
22
|
+
export function GetCourseImageUploadFromJSON(json) {
|
|
23
|
+
return GetCourseImageUploadFromJSONTyped(json, false);
|
|
24
|
+
}
|
|
25
|
+
export function GetCourseImageUploadFromJSONTyped(json, ignoreDiscriminator) {
|
|
26
|
+
if (json == null) {
|
|
27
|
+
return json;
|
|
28
|
+
}
|
|
29
|
+
return {
|
|
30
|
+
'imageUrl': json['image_url'],
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
export function GetCourseImageUploadToJSON(json) {
|
|
34
|
+
return GetCourseImageUploadToJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
export function GetCourseImageUploadToJSONTyped(value, ignoreDiscriminator = false) {
|
|
37
|
+
if (value == null) {
|
|
38
|
+
return value;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'image_url': value['imageUrl'],
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
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 { GetSupportTicketAttachment } from './GetSupportTicketAttachment';
|
|
13
|
+
import type { SupportTicketUser } from './SupportTicketUser';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GetSupportTicket
|
|
18
|
+
*/
|
|
19
|
+
export interface GetSupportTicket {
|
|
20
|
+
/**
|
|
21
|
+
* External ID of the ticket
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof GetSupportTicket
|
|
24
|
+
*/
|
|
25
|
+
id: string;
|
|
26
|
+
/**
|
|
27
|
+
* External ID of the portal
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof GetSupportTicket
|
|
30
|
+
*/
|
|
31
|
+
portalId: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof GetSupportTicket
|
|
36
|
+
*/
|
|
37
|
+
subject: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof GetSupportTicket
|
|
42
|
+
*/
|
|
43
|
+
description: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {GetSupportTicketStatusEnum}
|
|
47
|
+
* @memberof GetSupportTicket
|
|
48
|
+
*/
|
|
49
|
+
status: GetSupportTicketStatusEnum;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {GetSupportTicketPriorityEnum}
|
|
53
|
+
* @memberof GetSupportTicket
|
|
54
|
+
*/
|
|
55
|
+
priority: GetSupportTicketPriorityEnum;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {GetSupportTicketCategoryEnum}
|
|
59
|
+
* @memberof GetSupportTicket
|
|
60
|
+
*/
|
|
61
|
+
category: GetSupportTicketCategoryEnum;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {SupportTicketUser}
|
|
65
|
+
* @memberof GetSupportTicket
|
|
66
|
+
*/
|
|
67
|
+
reporter: SupportTicketUser;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {SupportTicketUser}
|
|
71
|
+
* @memberof GetSupportTicket
|
|
72
|
+
*/
|
|
73
|
+
assignedTo?: SupportTicketUser | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof GetSupportTicket
|
|
78
|
+
*/
|
|
79
|
+
commentCount: number;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {Array<GetSupportTicketAttachment>}
|
|
83
|
+
* @memberof GetSupportTicket
|
|
84
|
+
*/
|
|
85
|
+
attachments: Array<GetSupportTicketAttachment>;
|
|
86
|
+
/**
|
|
87
|
+
* Unix epoch timestamp
|
|
88
|
+
* @type {number}
|
|
89
|
+
* @memberof GetSupportTicket
|
|
90
|
+
*/
|
|
91
|
+
createdAt: number;
|
|
92
|
+
/**
|
|
93
|
+
* Unix epoch timestamp
|
|
94
|
+
* @type {number}
|
|
95
|
+
* @memberof GetSupportTicket
|
|
96
|
+
*/
|
|
97
|
+
updatedAt: number;
|
|
98
|
+
/**
|
|
99
|
+
* Unix epoch timestamp
|
|
100
|
+
* @type {number}
|
|
101
|
+
* @memberof GetSupportTicket
|
|
102
|
+
*/
|
|
103
|
+
closedAt?: number | null;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* @export
|
|
107
|
+
*/
|
|
108
|
+
export declare const GetSupportTicketStatusEnum: {
|
|
109
|
+
readonly Open: "Open";
|
|
110
|
+
readonly InProgress: "InProgress";
|
|
111
|
+
readonly Closed: "Closed";
|
|
112
|
+
};
|
|
113
|
+
export type GetSupportTicketStatusEnum = typeof GetSupportTicketStatusEnum[keyof typeof GetSupportTicketStatusEnum];
|
|
114
|
+
/**
|
|
115
|
+
* @export
|
|
116
|
+
*/
|
|
117
|
+
export declare const GetSupportTicketPriorityEnum: {
|
|
118
|
+
readonly Low: "Low";
|
|
119
|
+
readonly Medium: "Medium";
|
|
120
|
+
readonly High: "High";
|
|
121
|
+
readonly Critical: "Critical";
|
|
122
|
+
};
|
|
123
|
+
export type GetSupportTicketPriorityEnum = typeof GetSupportTicketPriorityEnum[keyof typeof GetSupportTicketPriorityEnum];
|
|
124
|
+
/**
|
|
125
|
+
* @export
|
|
126
|
+
*/
|
|
127
|
+
export declare const GetSupportTicketCategoryEnum: {
|
|
128
|
+
readonly Bug: "Bug";
|
|
129
|
+
readonly FeatureRequest: "FeatureRequest";
|
|
130
|
+
readonly AccountIssue: "AccountIssue";
|
|
131
|
+
readonly ContentIssue: "ContentIssue";
|
|
132
|
+
readonly Other: "Other";
|
|
133
|
+
};
|
|
134
|
+
export type GetSupportTicketCategoryEnum = typeof GetSupportTicketCategoryEnum[keyof typeof GetSupportTicketCategoryEnum];
|
|
135
|
+
/**
|
|
136
|
+
* Check if a given object implements the GetSupportTicket interface.
|
|
137
|
+
*/
|
|
138
|
+
export declare function instanceOfGetSupportTicket(value: object): value is GetSupportTicket;
|
|
139
|
+
export declare function GetSupportTicketFromJSON(json: any): GetSupportTicket;
|
|
140
|
+
export declare function GetSupportTicketFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSupportTicket;
|
|
141
|
+
export declare function GetSupportTicketToJSON(json: any): GetSupportTicket;
|
|
142
|
+
export declare function GetSupportTicketToJSONTyped(value?: GetSupportTicket | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* LMS API
|
|
5
|
+
* LMS API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { GetSupportTicketAttachmentFromJSON, GetSupportTicketAttachmentToJSON, } from './GetSupportTicketAttachment';
|
|
15
|
+
import { SupportTicketUserFromJSON, SupportTicketUserToJSON, } from './SupportTicketUser';
|
|
16
|
+
/**
|
|
17
|
+
* @export
|
|
18
|
+
*/
|
|
19
|
+
export const GetSupportTicketStatusEnum = {
|
|
20
|
+
Open: 'Open',
|
|
21
|
+
InProgress: 'InProgress',
|
|
22
|
+
Closed: 'Closed'
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @export
|
|
26
|
+
*/
|
|
27
|
+
export const GetSupportTicketPriorityEnum = {
|
|
28
|
+
Low: 'Low',
|
|
29
|
+
Medium: 'Medium',
|
|
30
|
+
High: 'High',
|
|
31
|
+
Critical: 'Critical'
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* @export
|
|
35
|
+
*/
|
|
36
|
+
export const GetSupportTicketCategoryEnum = {
|
|
37
|
+
Bug: 'Bug',
|
|
38
|
+
FeatureRequest: 'FeatureRequest',
|
|
39
|
+
AccountIssue: 'AccountIssue',
|
|
40
|
+
ContentIssue: 'ContentIssue',
|
|
41
|
+
Other: 'Other'
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Check if a given object implements the GetSupportTicket interface.
|
|
45
|
+
*/
|
|
46
|
+
export function instanceOfGetSupportTicket(value) {
|
|
47
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
48
|
+
return false;
|
|
49
|
+
if (!('portalId' in value) || value['portalId'] === undefined)
|
|
50
|
+
return false;
|
|
51
|
+
if (!('subject' in value) || value['subject'] === undefined)
|
|
52
|
+
return false;
|
|
53
|
+
if (!('description' in value) || value['description'] === undefined)
|
|
54
|
+
return false;
|
|
55
|
+
if (!('status' in value) || value['status'] === undefined)
|
|
56
|
+
return false;
|
|
57
|
+
if (!('priority' in value) || value['priority'] === undefined)
|
|
58
|
+
return false;
|
|
59
|
+
if (!('category' in value) || value['category'] === undefined)
|
|
60
|
+
return false;
|
|
61
|
+
if (!('reporter' in value) || value['reporter'] === undefined)
|
|
62
|
+
return false;
|
|
63
|
+
if (!('commentCount' in value) || value['commentCount'] === undefined)
|
|
64
|
+
return false;
|
|
65
|
+
if (!('attachments' in value) || value['attachments'] === undefined)
|
|
66
|
+
return false;
|
|
67
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
68
|
+
return false;
|
|
69
|
+
if (!('updatedAt' in value) || value['updatedAt'] === undefined)
|
|
70
|
+
return false;
|
|
71
|
+
return true;
|
|
72
|
+
}
|
|
73
|
+
export function GetSupportTicketFromJSON(json) {
|
|
74
|
+
return GetSupportTicketFromJSONTyped(json, false);
|
|
75
|
+
}
|
|
76
|
+
export function GetSupportTicketFromJSONTyped(json, ignoreDiscriminator) {
|
|
77
|
+
if (json == null) {
|
|
78
|
+
return json;
|
|
79
|
+
}
|
|
80
|
+
return {
|
|
81
|
+
'id': json['id'],
|
|
82
|
+
'portalId': json['portal_id'],
|
|
83
|
+
'subject': json['subject'],
|
|
84
|
+
'description': json['description'],
|
|
85
|
+
'status': json['status'],
|
|
86
|
+
'priority': json['priority'],
|
|
87
|
+
'category': json['category'],
|
|
88
|
+
'reporter': SupportTicketUserFromJSON(json['reporter']),
|
|
89
|
+
'assignedTo': json['assigned_to'] == null ? undefined : SupportTicketUserFromJSON(json['assigned_to']),
|
|
90
|
+
'commentCount': json['comment_count'],
|
|
91
|
+
'attachments': (json['attachments'].map(GetSupportTicketAttachmentFromJSON)),
|
|
92
|
+
'createdAt': json['created_at'],
|
|
93
|
+
'updatedAt': json['updated_at'],
|
|
94
|
+
'closedAt': json['closed_at'] == null ? undefined : json['closed_at'],
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
export function GetSupportTicketToJSON(json) {
|
|
98
|
+
return GetSupportTicketToJSONTyped(json, false);
|
|
99
|
+
}
|
|
100
|
+
export function GetSupportTicketToJSONTyped(value, ignoreDiscriminator = false) {
|
|
101
|
+
if (value == null) {
|
|
102
|
+
return value;
|
|
103
|
+
}
|
|
104
|
+
return {
|
|
105
|
+
'id': value['id'],
|
|
106
|
+
'portal_id': value['portalId'],
|
|
107
|
+
'subject': value['subject'],
|
|
108
|
+
'description': value['description'],
|
|
109
|
+
'status': value['status'],
|
|
110
|
+
'priority': value['priority'],
|
|
111
|
+
'category': value['category'],
|
|
112
|
+
'reporter': SupportTicketUserToJSON(value['reporter']),
|
|
113
|
+
'assigned_to': SupportTicketUserToJSON(value['assignedTo']),
|
|
114
|
+
'comment_count': value['commentCount'],
|
|
115
|
+
'attachments': (value['attachments'].map(GetSupportTicketAttachmentToJSON)),
|
|
116
|
+
'created_at': value['createdAt'],
|
|
117
|
+
'updated_at': value['updatedAt'],
|
|
118
|
+
'closed_at': value['closedAt'],
|
|
119
|
+
};
|
|
120
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
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 GetSupportTicketAttachment
|
|
16
|
+
*/
|
|
17
|
+
export interface GetSupportTicketAttachment {
|
|
18
|
+
/**
|
|
19
|
+
* External attachment ID
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof GetSupportTicketAttachment
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof GetSupportTicketAttachment
|
|
28
|
+
*/
|
|
29
|
+
fileName: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof GetSupportTicketAttachment
|
|
34
|
+
*/
|
|
35
|
+
fileSize: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof GetSupportTicketAttachment
|
|
40
|
+
*/
|
|
41
|
+
mimeType: string;
|
|
42
|
+
/**
|
|
43
|
+
* Presigned URL to download the attachment
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof GetSupportTicketAttachment
|
|
46
|
+
*/
|
|
47
|
+
downloadUrl: string;
|
|
48
|
+
/**
|
|
49
|
+
* Unix epoch timestamp
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof GetSupportTicketAttachment
|
|
52
|
+
*/
|
|
53
|
+
createdAt: number;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Check if a given object implements the GetSupportTicketAttachment interface.
|
|
57
|
+
*/
|
|
58
|
+
export declare function instanceOfGetSupportTicketAttachment(value: object): value is GetSupportTicketAttachment;
|
|
59
|
+
export declare function GetSupportTicketAttachmentFromJSON(json: any): GetSupportTicketAttachment;
|
|
60
|
+
export declare function GetSupportTicketAttachmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSupportTicketAttachment;
|
|
61
|
+
export declare function GetSupportTicketAttachmentToJSON(json: any): GetSupportTicketAttachment;
|
|
62
|
+
export declare function GetSupportTicketAttachmentToJSONTyped(value?: GetSupportTicketAttachment | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* LMS API
|
|
5
|
+
* LMS API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Check if a given object implements the GetSupportTicketAttachment interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfGetSupportTicketAttachment(value) {
|
|
18
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
19
|
+
return false;
|
|
20
|
+
if (!('fileName' in value) || value['fileName'] === undefined)
|
|
21
|
+
return false;
|
|
22
|
+
if (!('fileSize' in value) || value['fileSize'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
if (!('mimeType' in value) || value['mimeType'] === undefined)
|
|
25
|
+
return false;
|
|
26
|
+
if (!('downloadUrl' in value) || value['downloadUrl'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
export function GetSupportTicketAttachmentFromJSON(json) {
|
|
33
|
+
return GetSupportTicketAttachmentFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
export function GetSupportTicketAttachmentFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'id': json['id'],
|
|
41
|
+
'fileName': json['file_name'],
|
|
42
|
+
'fileSize': json['file_size'],
|
|
43
|
+
'mimeType': json['mime_type'],
|
|
44
|
+
'downloadUrl': json['download_url'],
|
|
45
|
+
'createdAt': json['created_at'],
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
export function GetSupportTicketAttachmentToJSON(json) {
|
|
49
|
+
return GetSupportTicketAttachmentToJSONTyped(json, false);
|
|
50
|
+
}
|
|
51
|
+
export function GetSupportTicketAttachmentToJSONTyped(value, ignoreDiscriminator = false) {
|
|
52
|
+
if (value == null) {
|
|
53
|
+
return value;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
'id': value['id'],
|
|
57
|
+
'file_name': value['fileName'],
|
|
58
|
+
'file_size': value['fileSize'],
|
|
59
|
+
'mime_type': value['mimeType'],
|
|
60
|
+
'download_url': value['downloadUrl'],
|
|
61
|
+
'created_at': value['createdAt'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
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 { SupportTicketUser } from './SupportTicketUser';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetSupportTicketComment
|
|
17
|
+
*/
|
|
18
|
+
export interface GetSupportTicketComment {
|
|
19
|
+
/**
|
|
20
|
+
* External comment ID
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof GetSupportTicketComment
|
|
23
|
+
*/
|
|
24
|
+
id: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {SupportTicketUser}
|
|
28
|
+
* @memberof GetSupportTicketComment
|
|
29
|
+
*/
|
|
30
|
+
user: SupportTicketUser;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof GetSupportTicketComment
|
|
35
|
+
*/
|
|
36
|
+
content: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {boolean}
|
|
40
|
+
* @memberof GetSupportTicketComment
|
|
41
|
+
*/
|
|
42
|
+
isInternal: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* Unix epoch timestamp
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof GetSupportTicketComment
|
|
47
|
+
*/
|
|
48
|
+
createdAt: number;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Check if a given object implements the GetSupportTicketComment interface.
|
|
52
|
+
*/
|
|
53
|
+
export declare function instanceOfGetSupportTicketComment(value: object): value is GetSupportTicketComment;
|
|
54
|
+
export declare function GetSupportTicketCommentFromJSON(json: any): GetSupportTicketComment;
|
|
55
|
+
export declare function GetSupportTicketCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSupportTicketComment;
|
|
56
|
+
export declare function GetSupportTicketCommentToJSON(json: any): GetSupportTicketComment;
|
|
57
|
+
export declare function GetSupportTicketCommentToJSONTyped(value?: GetSupportTicketComment | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* LMS API
|
|
5
|
+
* LMS API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { SupportTicketUserFromJSON, SupportTicketUserToJSON, } from './SupportTicketUser';
|
|
15
|
+
/**
|
|
16
|
+
* Check if a given object implements the GetSupportTicketComment interface.
|
|
17
|
+
*/
|
|
18
|
+
export function instanceOfGetSupportTicketComment(value) {
|
|
19
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
20
|
+
return false;
|
|
21
|
+
if (!('user' in value) || value['user'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('content' in value) || value['content'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('isInternal' in value) || value['isInternal'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
export function GetSupportTicketCommentFromJSON(json) {
|
|
32
|
+
return GetSupportTicketCommentFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
export function GetSupportTicketCommentFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'id': json['id'],
|
|
40
|
+
'user': SupportTicketUserFromJSON(json['user']),
|
|
41
|
+
'content': json['content'],
|
|
42
|
+
'isInternal': json['is_internal'],
|
|
43
|
+
'createdAt': json['created_at'],
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
export function GetSupportTicketCommentToJSON(json) {
|
|
47
|
+
return GetSupportTicketCommentToJSONTyped(json, false);
|
|
48
|
+
}
|
|
49
|
+
export function GetSupportTicketCommentToJSONTyped(value, ignoreDiscriminator = false) {
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'id': value['id'],
|
|
55
|
+
'user': SupportTicketUserToJSON(value['user']),
|
|
56
|
+
'content': value['content'],
|
|
57
|
+
'is_internal': value['isInternal'],
|
|
58
|
+
'created_at': value['createdAt'],
|
|
59
|
+
};
|
|
60
|
+
}
|