@otr-app/shared-backend-generated-client 2.3.283 → 2.4.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/dist/angular/.openapi-generator/FILES +1 -0
- package/dist/typescript/.openapi-generator/VERSION +1 -1
- package/dist/typescript/api/api.js +5 -1
- package/dist/typescript/index.js +5 -1
- package/dist/typescript/model/models.js +5 -1
- package/package.json +1 -1
- package/dist/angular/api/trafficViolationController.service.ts +0 -504
- package/dist/angular/api/watchlistController.service.ts +0 -238
- package/dist/angular/model/acceptCaseCounterRequest.ts +0 -21
- package/dist/angular/model/caseDomain.ts +0 -108
- package/dist/angular/model/caseDomainReq.ts +0 -108
- package/dist/angular/model/caseDomainRes.ts +0 -108
- package/dist/angular/model/citationDomain.ts +0 -134
- package/dist/angular/model/citationDomainReq.ts +0 -134
- package/dist/angular/model/citationDomainRes.ts +0 -134
- package/dist/angular/model/coachingCardEntity.ts +0 -24
- package/dist/angular/model/contactLoopWebhookRequest.ts +0 -27
- package/dist/angular/model/externalContentVoteModel.ts +0 -19
- package/dist/angular/model/externalTicketSiteOutput.ts +0 -18
- package/dist/angular/model/externalUserContentVoteModel.ts +0 -30
- package/dist/angular/model/getCitationsResponse.ts +0 -18
- package/dist/angular/model/getExternalContentUserVotesResponse.ts +0 -18
- package/dist/angular/model/getExternalTicketModel.ts +0 -30
- package/dist/angular/model/getExternalTicketsResponse.ts +0 -29
- package/dist/angular/model/lawfirmCaseDomain.ts +0 -51
- package/dist/angular/model/lawfirmCaseDomainReq.ts +0 -51
- package/dist/angular/model/lawfirmCaseDomainRes.ts +0 -51
- package/dist/angular/model/listBillingSubscribersRequest.ts +0 -17
- package/dist/angular/model/trafficViolationTypeDomain.ts +0 -89
- package/dist/angular/model/userWatchlistsResponseModel.ts +0 -19
- package/dist/angular/model/watchlistItemsRequest.ts +0 -19
- package/dist/angular/model/workflowStateResponse.ts +0 -19
|
@@ -1,238 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OffTheRecord Rest Service API - Devo
|
|
3
|
-
* A service to handle your traffic tickets
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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
|
-
/* tslint:disable:no-unused-variable member-ordering */
|
|
13
|
-
|
|
14
|
-
import { Inject, Injectable, Optional } from '@angular/core';
|
|
15
|
-
import { HttpClient, HttpHeaders, HttpParams,
|
|
16
|
-
HttpResponse, HttpEvent, HttpParameterCodec, HttpContext
|
|
17
|
-
} from '@angular/common/http';
|
|
18
|
-
import { CustomHttpParameterCodec } from '../encoder';
|
|
19
|
-
import { Observable } from 'rxjs';
|
|
20
|
-
|
|
21
|
-
// @ts-ignore
|
|
22
|
-
import { ListUserWatchlistsResponse } from '../model/listUserWatchlistsResponse';
|
|
23
|
-
// @ts-ignore
|
|
24
|
-
import { SaveUserWatchlistsRequest } from '../model/saveUserWatchlistsRequest';
|
|
25
|
-
|
|
26
|
-
// @ts-ignore
|
|
27
|
-
import { BASE_PATH, COLLECTION_FORMATS } from '../variables';
|
|
28
|
-
import { Configuration } from '../configuration';
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
@Injectable({
|
|
33
|
-
providedIn: 'root'
|
|
34
|
-
})
|
|
35
|
-
export class WatchlistControllerService {
|
|
36
|
-
|
|
37
|
-
protected basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
|
|
38
|
-
public defaultHeaders = new HttpHeaders();
|
|
39
|
-
public configuration = new Configuration();
|
|
40
|
-
public encoder: HttpParameterCodec;
|
|
41
|
-
|
|
42
|
-
constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string|string[], @Optional() configuration: Configuration) {
|
|
43
|
-
if (configuration) {
|
|
44
|
-
this.configuration = configuration;
|
|
45
|
-
}
|
|
46
|
-
if (typeof this.configuration.basePath !== 'string') {
|
|
47
|
-
if (Array.isArray(basePath) && basePath.length > 0) {
|
|
48
|
-
basePath = basePath[0];
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
if (typeof basePath !== 'string') {
|
|
52
|
-
basePath = this.basePath;
|
|
53
|
-
}
|
|
54
|
-
this.configuration.basePath = basePath;
|
|
55
|
-
}
|
|
56
|
-
this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
// @ts-ignore
|
|
61
|
-
private addToHttpParams(httpParams: HttpParams, value: any, key?: string): HttpParams {
|
|
62
|
-
if (typeof value === "object" && value instanceof Date === false) {
|
|
63
|
-
httpParams = this.addToHttpParamsRecursive(httpParams, value);
|
|
64
|
-
} else {
|
|
65
|
-
httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
|
|
66
|
-
}
|
|
67
|
-
return httpParams;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string): HttpParams {
|
|
71
|
-
if (value == null) {
|
|
72
|
-
return httpParams;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
if (typeof value === "object") {
|
|
76
|
-
if (Array.isArray(value)) {
|
|
77
|
-
(value as any[]).forEach( elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key));
|
|
78
|
-
} else if (value instanceof Date) {
|
|
79
|
-
if (key != null) {
|
|
80
|
-
httpParams = httpParams.append(key, (value as Date).toISOString().substr(0, 10));
|
|
81
|
-
} else {
|
|
82
|
-
throw Error("key may not be null if value is Date");
|
|
83
|
-
}
|
|
84
|
-
} else {
|
|
85
|
-
Object.keys(value).forEach( k => httpParams = this.addToHttpParamsRecursive(
|
|
86
|
-
httpParams, value[k], key != null ? `${key}.${k}` : k));
|
|
87
|
-
}
|
|
88
|
-
} else if (key != null) {
|
|
89
|
-
httpParams = httpParams.append(key, value);
|
|
90
|
-
} else {
|
|
91
|
-
throw Error("key may not be null if value is not object or array");
|
|
92
|
-
}
|
|
93
|
-
return httpParams;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* listUserWatchlists
|
|
98
|
-
* @param userId userId
|
|
99
|
-
* @param isArchived isArchived
|
|
100
|
-
* @param watchlistId watchlistId
|
|
101
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
102
|
-
* @param reportProgress flag to report request and response progress.
|
|
103
|
-
*/
|
|
104
|
-
public listUserWatchlistsUsingGET(userId: number, isArchived?: boolean, watchlistId?: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<ListUserWatchlistsResponse>;
|
|
105
|
-
public listUserWatchlistsUsingGET(userId: number, isArchived?: boolean, watchlistId?: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<ListUserWatchlistsResponse>>;
|
|
106
|
-
public listUserWatchlistsUsingGET(userId: number, isArchived?: boolean, watchlistId?: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<ListUserWatchlistsResponse>>;
|
|
107
|
-
public listUserWatchlistsUsingGET(userId: number, isArchived?: boolean, watchlistId?: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
|
|
108
|
-
if (userId === null || userId === undefined) {
|
|
109
|
-
throw new Error('Required parameter userId was null or undefined when calling listUserWatchlistsUsingGET.');
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
let localVarQueryParameters = new HttpParams({encoder: this.encoder});
|
|
113
|
-
if (isArchived !== undefined && isArchived !== null) {
|
|
114
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
115
|
-
<any>isArchived, 'isArchived');
|
|
116
|
-
}
|
|
117
|
-
if (watchlistId !== undefined && watchlistId !== null) {
|
|
118
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
119
|
-
<any>watchlistId, 'watchlistId');
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
let localVarHeaders = this.defaultHeaders;
|
|
123
|
-
|
|
124
|
-
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
125
|
-
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
126
|
-
// to determine the Accept header
|
|
127
|
-
const httpHeaderAccepts: string[] = [
|
|
128
|
-
'*/*'
|
|
129
|
-
];
|
|
130
|
-
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
131
|
-
}
|
|
132
|
-
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
133
|
-
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
let localVarHttpContext: HttpContext | undefined = options && options.context;
|
|
137
|
-
if (localVarHttpContext === undefined) {
|
|
138
|
-
localVarHttpContext = new HttpContext();
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
143
|
-
if (localVarHttpHeaderAcceptSelected) {
|
|
144
|
-
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
145
|
-
responseType_ = 'text';
|
|
146
|
-
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
147
|
-
responseType_ = 'json';
|
|
148
|
-
} else {
|
|
149
|
-
responseType_ = 'blob';
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
let localVarPath = `/api/v1/watchlists/${this.configuration.encodeParam({name: "userId", value: userId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/lists`;
|
|
154
|
-
return this.httpClient.request<ListUserWatchlistsResponse>('get', `${this.configuration.basePath}${localVarPath}`,
|
|
155
|
-
{
|
|
156
|
-
context: localVarHttpContext,
|
|
157
|
-
params: localVarQueryParameters,
|
|
158
|
-
responseType: <any>responseType_,
|
|
159
|
-
withCredentials: this.configuration.withCredentials,
|
|
160
|
-
headers: localVarHeaders,
|
|
161
|
-
observe: observe,
|
|
162
|
-
reportProgress: reportProgress
|
|
163
|
-
}
|
|
164
|
-
);
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
/**
|
|
168
|
-
* saveUserWatchlists
|
|
169
|
-
* @param userId userId
|
|
170
|
-
* @param request request
|
|
171
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
172
|
-
* @param reportProgress flag to report request and response progress.
|
|
173
|
-
*/
|
|
174
|
-
public saveUserWatchlistsUsingPOST(userId: number, request: SaveUserWatchlistsRequest, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<any>;
|
|
175
|
-
public saveUserWatchlistsUsingPOST(userId: number, request: SaveUserWatchlistsRequest, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<HttpResponse<any>>;
|
|
176
|
-
public saveUserWatchlistsUsingPOST(userId: number, request: SaveUserWatchlistsRequest, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<HttpEvent<any>>;
|
|
177
|
-
public saveUserWatchlistsUsingPOST(userId: number, request: SaveUserWatchlistsRequest, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<any> {
|
|
178
|
-
if (userId === null || userId === undefined) {
|
|
179
|
-
throw new Error('Required parameter userId was null or undefined when calling saveUserWatchlistsUsingPOST.');
|
|
180
|
-
}
|
|
181
|
-
if (request === null || request === undefined) {
|
|
182
|
-
throw new Error('Required parameter request was null or undefined when calling saveUserWatchlistsUsingPOST.');
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
let localVarHeaders = this.defaultHeaders;
|
|
186
|
-
|
|
187
|
-
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
188
|
-
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
189
|
-
// to determine the Accept header
|
|
190
|
-
const httpHeaderAccepts: string[] = [
|
|
191
|
-
];
|
|
192
|
-
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
193
|
-
}
|
|
194
|
-
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
195
|
-
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
let localVarHttpContext: HttpContext | undefined = options && options.context;
|
|
199
|
-
if (localVarHttpContext === undefined) {
|
|
200
|
-
localVarHttpContext = new HttpContext();
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
// to determine the Content-Type header
|
|
205
|
-
const consumes: string[] = [
|
|
206
|
-
'application/json'
|
|
207
|
-
];
|
|
208
|
-
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);
|
|
209
|
-
if (httpContentTypeSelected !== undefined) {
|
|
210
|
-
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
214
|
-
if (localVarHttpHeaderAcceptSelected) {
|
|
215
|
-
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
216
|
-
responseType_ = 'text';
|
|
217
|
-
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
218
|
-
responseType_ = 'json';
|
|
219
|
-
} else {
|
|
220
|
-
responseType_ = 'blob';
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
let localVarPath = `/api/v1/watchlists/${this.configuration.encodeParam({name: "userId", value: userId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/lists`;
|
|
225
|
-
return this.httpClient.request<any>('post', `${this.configuration.basePath}${localVarPath}`,
|
|
226
|
-
{
|
|
227
|
-
context: localVarHttpContext,
|
|
228
|
-
body: request,
|
|
229
|
-
responseType: <any>responseType_,
|
|
230
|
-
withCredentials: this.configuration.withCredentials,
|
|
231
|
-
headers: localVarHeaders,
|
|
232
|
-
observe: observe,
|
|
233
|
-
reportProgress: reportProgress
|
|
234
|
-
}
|
|
235
|
-
);
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OffTheRecord Rest Service API - Devo
|
|
3
|
-
* A service to handle your traffic tickets
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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 interface AcceptCaseCounterRequest {
|
|
15
|
-
feeInputInCents?: number;
|
|
16
|
-
increaseFee?: boolean;
|
|
17
|
-
noteToClient?: string;
|
|
18
|
-
noteToOtr?: string;
|
|
19
|
-
removeMBG?: boolean;
|
|
20
|
-
}
|
|
21
|
-
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OffTheRecord Rest Service API - Devo
|
|
3
|
-
* A service to handle your traffic tickets
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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 { LawfirmCaseDomain } from './lawfirmCaseDomain';
|
|
13
|
-
import { CaseStatusDomain } from './caseStatusDomain';
|
|
14
|
-
import { UserDomain } from './userDomain';
|
|
15
|
-
import { CitationDomain } from './citationDomain';
|
|
16
|
-
import { CaseActionDomain } from './caseActionDomain';
|
|
17
|
-
import { LetterOfEngagement } from './letterOfEngagement';
|
|
18
|
-
import { Timestamp } from './timestamp';
|
|
19
|
-
import { CancelationDetails } from './cancelationDetails';
|
|
20
|
-
import { PaymentPlanTypeModel } from './paymentPlanTypeModel';
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
export interface CaseDomain {
|
|
24
|
-
actions?: Array<CaseActionDomain>;
|
|
25
|
-
adjustedFineAmount?: number;
|
|
26
|
-
adjustedPointCount?: number;
|
|
27
|
-
bookingConfirmedDate?: Timestamp;
|
|
28
|
-
cancelationDetails?: CancelationDetails;
|
|
29
|
-
cancelationReason?: string;
|
|
30
|
-
cancellationExpiryDate?: Timestamp;
|
|
31
|
-
caseCancellationDate?: Timestamp;
|
|
32
|
-
caseCreationDate?: Timestamp;
|
|
33
|
-
caseId?: string;
|
|
34
|
-
caseResolutionDate?: Timestamp;
|
|
35
|
-
caseStatus?: CaseDomain.CaseStatusEnum;
|
|
36
|
-
caseStatusCategory?: CaseDomain.CaseStatusCategoryEnum;
|
|
37
|
-
caseStatusDomain?: CaseStatusDomain;
|
|
38
|
-
citation?: CitationDomain;
|
|
39
|
-
courtAppointmentDate?: Timestamp;
|
|
40
|
-
hasLeftLawyerReview?: boolean;
|
|
41
|
-
isPointSystemState?: boolean;
|
|
42
|
-
lawfirmCaseDecision?: LawfirmCaseDomain;
|
|
43
|
-
lawfirmCodeApplied?: boolean;
|
|
44
|
-
letterOfEngagement?: LetterOfEngagement;
|
|
45
|
-
paymentPlanTypeModel?: PaymentPlanTypeModel;
|
|
46
|
-
referralCode?: string;
|
|
47
|
-
refundEligibility?: CaseDomain.RefundEligibilityEnum;
|
|
48
|
-
resolutionSummary?: string;
|
|
49
|
-
uiRefundMsg?: string;
|
|
50
|
-
user?: UserDomain;
|
|
51
|
-
userId?: number;
|
|
52
|
-
}
|
|
53
|
-
export namespace CaseDomain {
|
|
54
|
-
export type CaseStatusEnum = 'AMENDED_DOWN_WITHIN_CLASS' | 'AMENDED_FULL_FINE' | 'AMENDED_INCREASED_FINE' | 'AMENDED_NO_FINE' | 'AMENDED_REDUCED_FINE' | 'AMENDED_TO_INFRACTION' | 'AMENDED_TO_NMV' | 'CANCELLED_ATTORNEY_AT_FAULT' | 'CANCELLED_BY_LAWFIRM' | 'CANCELLED_BY_USER' | 'CANCELLED_DUPLICATE' | 'CANCELLED_NMV' | 'CANCELLED_NON_PAYMENT' | 'CANCELLED_NO_LAWFIRM' | 'CANCELLED_OVERDUE' | 'CANCELLED_TOO_SHORT_NOTICE' | 'CASE_IN_PROGRESS' | 'CLIENT_CONFIRMED' | 'CLIENT_CONFIRMED_UNPAID' | 'CLIENT_FIRED_LAWFIRM' | 'CLIENT_FORCED_LOSS' | 'CLIENT_PAID_FINE' | 'CLIENT_UNRESPONSIVE' | 'DEFERRED' | 'DISMISSED' | 'DIVERSION' | 'FEES_DISPUTED' | 'FINE_REDUCTION_ONLY' | 'LAWFIRM_WITHDRAWN' | 'LOST' | 'NO_LAWFIRM_AVAILABLE' | 'POINT_REDUCTION' | 'REFUSED_BY_LAWFIRM' | 'RESOLVED_NON_PAYMENT' | 'STALE' | 'TRAFFIC_SCHOOL' | 'UNCONFIRMED';
|
|
55
|
-
export const CaseStatusEnum = {
|
|
56
|
-
AmendedDownWithinClass: 'AMENDED_DOWN_WITHIN_CLASS' as CaseStatusEnum,
|
|
57
|
-
AmendedFullFine: 'AMENDED_FULL_FINE' as CaseStatusEnum,
|
|
58
|
-
AmendedIncreasedFine: 'AMENDED_INCREASED_FINE' as CaseStatusEnum,
|
|
59
|
-
AmendedNoFine: 'AMENDED_NO_FINE' as CaseStatusEnum,
|
|
60
|
-
AmendedReducedFine: 'AMENDED_REDUCED_FINE' as CaseStatusEnum,
|
|
61
|
-
AmendedToInfraction: 'AMENDED_TO_INFRACTION' as CaseStatusEnum,
|
|
62
|
-
AmendedToNmv: 'AMENDED_TO_NMV' as CaseStatusEnum,
|
|
63
|
-
CancelledAttorneyAtFault: 'CANCELLED_ATTORNEY_AT_FAULT' as CaseStatusEnum,
|
|
64
|
-
CancelledByLawfirm: 'CANCELLED_BY_LAWFIRM' as CaseStatusEnum,
|
|
65
|
-
CancelledByUser: 'CANCELLED_BY_USER' as CaseStatusEnum,
|
|
66
|
-
CancelledDuplicate: 'CANCELLED_DUPLICATE' as CaseStatusEnum,
|
|
67
|
-
CancelledNmv: 'CANCELLED_NMV' as CaseStatusEnum,
|
|
68
|
-
CancelledNonPayment: 'CANCELLED_NON_PAYMENT' as CaseStatusEnum,
|
|
69
|
-
CancelledNoLawfirm: 'CANCELLED_NO_LAWFIRM' as CaseStatusEnum,
|
|
70
|
-
CancelledOverdue: 'CANCELLED_OVERDUE' as CaseStatusEnum,
|
|
71
|
-
CancelledTooShortNotice: 'CANCELLED_TOO_SHORT_NOTICE' as CaseStatusEnum,
|
|
72
|
-
CaseInProgress: 'CASE_IN_PROGRESS' as CaseStatusEnum,
|
|
73
|
-
ClientConfirmed: 'CLIENT_CONFIRMED' as CaseStatusEnum,
|
|
74
|
-
ClientConfirmedUnpaid: 'CLIENT_CONFIRMED_UNPAID' as CaseStatusEnum,
|
|
75
|
-
ClientFiredLawfirm: 'CLIENT_FIRED_LAWFIRM' as CaseStatusEnum,
|
|
76
|
-
ClientForcedLoss: 'CLIENT_FORCED_LOSS' as CaseStatusEnum,
|
|
77
|
-
ClientPaidFine: 'CLIENT_PAID_FINE' as CaseStatusEnum,
|
|
78
|
-
ClientUnresponsive: 'CLIENT_UNRESPONSIVE' as CaseStatusEnum,
|
|
79
|
-
Deferred: 'DEFERRED' as CaseStatusEnum,
|
|
80
|
-
Dismissed: 'DISMISSED' as CaseStatusEnum,
|
|
81
|
-
Diversion: 'DIVERSION' as CaseStatusEnum,
|
|
82
|
-
FeesDisputed: 'FEES_DISPUTED' as CaseStatusEnum,
|
|
83
|
-
FineReductionOnly: 'FINE_REDUCTION_ONLY' as CaseStatusEnum,
|
|
84
|
-
LawfirmWithdrawn: 'LAWFIRM_WITHDRAWN' as CaseStatusEnum,
|
|
85
|
-
Lost: 'LOST' as CaseStatusEnum,
|
|
86
|
-
NoLawfirmAvailable: 'NO_LAWFIRM_AVAILABLE' as CaseStatusEnum,
|
|
87
|
-
PointReduction: 'POINT_REDUCTION' as CaseStatusEnum,
|
|
88
|
-
RefusedByLawfirm: 'REFUSED_BY_LAWFIRM' as CaseStatusEnum,
|
|
89
|
-
ResolvedNonPayment: 'RESOLVED_NON_PAYMENT' as CaseStatusEnum,
|
|
90
|
-
Stale: 'STALE' as CaseStatusEnum,
|
|
91
|
-
TrafficSchool: 'TRAFFIC_SCHOOL' as CaseStatusEnum,
|
|
92
|
-
Unconfirmed: 'UNCONFIRMED' as CaseStatusEnum
|
|
93
|
-
};
|
|
94
|
-
export type CaseStatusCategoryEnum = 'ACTIVE' | 'CANCELLED' | 'RESOLVED' | 'UNCONFIRMED';
|
|
95
|
-
export const CaseStatusCategoryEnum = {
|
|
96
|
-
Active: 'ACTIVE' as CaseStatusCategoryEnum,
|
|
97
|
-
Cancelled: 'CANCELLED' as CaseStatusCategoryEnum,
|
|
98
|
-
Resolved: 'RESOLVED' as CaseStatusCategoryEnum,
|
|
99
|
-
Unconfirmed: 'UNCONFIRMED' as CaseStatusCategoryEnum
|
|
100
|
-
};
|
|
101
|
-
export type RefundEligibilityEnum = 'FULL_REFUND' | 'NO_REFUND';
|
|
102
|
-
export const RefundEligibilityEnum = {
|
|
103
|
-
FullRefund: 'FULL_REFUND' as RefundEligibilityEnum,
|
|
104
|
-
NoRefund: 'NO_REFUND' as RefundEligibilityEnum
|
|
105
|
-
};
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OffTheRecord Rest Service API - Devo
|
|
3
|
-
* A service to handle your traffic tickets
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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 { LawfirmCaseDomainReq } from './lawfirmCaseDomainReq';
|
|
13
|
-
import { CaseStatusDomain } from './caseStatusDomain';
|
|
14
|
-
import { CancelationDetailsReq } from './cancelationDetailsReq';
|
|
15
|
-
import { TimestampReq } from './timestampReq';
|
|
16
|
-
import { CitationDomainReq } from './citationDomainReq';
|
|
17
|
-
import { UserDomainReq } from './userDomainReq';
|
|
18
|
-
import { CaseActionDomain } from './caseActionDomain';
|
|
19
|
-
import { PaymentPlanTypeModelReq } from './paymentPlanTypeModelReq';
|
|
20
|
-
import { LetterOfEngagement } from './letterOfEngagement';
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
export interface CaseDomainReq {
|
|
24
|
-
actions?: Array<CaseActionDomain>;
|
|
25
|
-
adjustedFineAmount?: number;
|
|
26
|
-
adjustedPointCount?: number;
|
|
27
|
-
bookingConfirmedDate?: TimestampReq;
|
|
28
|
-
cancelationDetails?: CancelationDetailsReq;
|
|
29
|
-
cancelationReason?: string;
|
|
30
|
-
cancellationExpiryDate?: TimestampReq;
|
|
31
|
-
caseCancellationDate?: TimestampReq;
|
|
32
|
-
caseCreationDate?: TimestampReq;
|
|
33
|
-
caseId?: string;
|
|
34
|
-
caseResolutionDate?: TimestampReq;
|
|
35
|
-
caseStatus?: CaseDomainReq.CaseStatusEnum;
|
|
36
|
-
caseStatusCategory?: CaseDomainReq.CaseStatusCategoryEnum;
|
|
37
|
-
caseStatusDomain?: CaseStatusDomain;
|
|
38
|
-
citation?: CitationDomainReq;
|
|
39
|
-
courtAppointmentDate?: TimestampReq;
|
|
40
|
-
hasLeftLawyerReview?: boolean;
|
|
41
|
-
isPointSystemState?: boolean;
|
|
42
|
-
lawfirmCaseDecision?: LawfirmCaseDomainReq;
|
|
43
|
-
lawfirmCodeApplied?: boolean;
|
|
44
|
-
letterOfEngagement?: LetterOfEngagement;
|
|
45
|
-
paymentPlanTypeModel?: PaymentPlanTypeModelReq;
|
|
46
|
-
referralCode?: string;
|
|
47
|
-
refundEligibility?: CaseDomainReq.RefundEligibilityEnum;
|
|
48
|
-
resolutionSummary?: string;
|
|
49
|
-
uiRefundMsg?: string;
|
|
50
|
-
user?: UserDomainReq;
|
|
51
|
-
userId?: number;
|
|
52
|
-
}
|
|
53
|
-
export namespace CaseDomainReq {
|
|
54
|
-
export type CaseStatusEnum = 'AMENDED_DOWN_WITHIN_CLASS' | 'AMENDED_FULL_FINE' | 'AMENDED_INCREASED_FINE' | 'AMENDED_NO_FINE' | 'AMENDED_REDUCED_FINE' | 'AMENDED_TO_INFRACTION' | 'AMENDED_TO_NMV' | 'CANCELLED_ATTORNEY_AT_FAULT' | 'CANCELLED_BY_LAWFIRM' | 'CANCELLED_BY_USER' | 'CANCELLED_DUPLICATE' | 'CANCELLED_NMV' | 'CANCELLED_NON_PAYMENT' | 'CANCELLED_NO_LAWFIRM' | 'CANCELLED_OVERDUE' | 'CANCELLED_TOO_SHORT_NOTICE' | 'CASE_IN_PROGRESS' | 'CLIENT_CONFIRMED' | 'CLIENT_CONFIRMED_UNPAID' | 'CLIENT_FIRED_LAWFIRM' | 'CLIENT_FORCED_LOSS' | 'CLIENT_PAID_FINE' | 'CLIENT_UNRESPONSIVE' | 'DEFERRED' | 'DISMISSED' | 'DIVERSION' | 'FEES_DISPUTED' | 'FINE_REDUCTION_ONLY' | 'LAWFIRM_WITHDRAWN' | 'LOST' | 'NO_LAWFIRM_AVAILABLE' | 'POINT_REDUCTION' | 'REFUSED_BY_LAWFIRM' | 'RESOLVED_NON_PAYMENT' | 'STALE' | 'TRAFFIC_SCHOOL' | 'UNCONFIRMED';
|
|
55
|
-
export const CaseStatusEnum = {
|
|
56
|
-
AmendedDownWithinClass: 'AMENDED_DOWN_WITHIN_CLASS' as CaseStatusEnum,
|
|
57
|
-
AmendedFullFine: 'AMENDED_FULL_FINE' as CaseStatusEnum,
|
|
58
|
-
AmendedIncreasedFine: 'AMENDED_INCREASED_FINE' as CaseStatusEnum,
|
|
59
|
-
AmendedNoFine: 'AMENDED_NO_FINE' as CaseStatusEnum,
|
|
60
|
-
AmendedReducedFine: 'AMENDED_REDUCED_FINE' as CaseStatusEnum,
|
|
61
|
-
AmendedToInfraction: 'AMENDED_TO_INFRACTION' as CaseStatusEnum,
|
|
62
|
-
AmendedToNmv: 'AMENDED_TO_NMV' as CaseStatusEnum,
|
|
63
|
-
CancelledAttorneyAtFault: 'CANCELLED_ATTORNEY_AT_FAULT' as CaseStatusEnum,
|
|
64
|
-
CancelledByLawfirm: 'CANCELLED_BY_LAWFIRM' as CaseStatusEnum,
|
|
65
|
-
CancelledByUser: 'CANCELLED_BY_USER' as CaseStatusEnum,
|
|
66
|
-
CancelledDuplicate: 'CANCELLED_DUPLICATE' as CaseStatusEnum,
|
|
67
|
-
CancelledNmv: 'CANCELLED_NMV' as CaseStatusEnum,
|
|
68
|
-
CancelledNonPayment: 'CANCELLED_NON_PAYMENT' as CaseStatusEnum,
|
|
69
|
-
CancelledNoLawfirm: 'CANCELLED_NO_LAWFIRM' as CaseStatusEnum,
|
|
70
|
-
CancelledOverdue: 'CANCELLED_OVERDUE' as CaseStatusEnum,
|
|
71
|
-
CancelledTooShortNotice: 'CANCELLED_TOO_SHORT_NOTICE' as CaseStatusEnum,
|
|
72
|
-
CaseInProgress: 'CASE_IN_PROGRESS' as CaseStatusEnum,
|
|
73
|
-
ClientConfirmed: 'CLIENT_CONFIRMED' as CaseStatusEnum,
|
|
74
|
-
ClientConfirmedUnpaid: 'CLIENT_CONFIRMED_UNPAID' as CaseStatusEnum,
|
|
75
|
-
ClientFiredLawfirm: 'CLIENT_FIRED_LAWFIRM' as CaseStatusEnum,
|
|
76
|
-
ClientForcedLoss: 'CLIENT_FORCED_LOSS' as CaseStatusEnum,
|
|
77
|
-
ClientPaidFine: 'CLIENT_PAID_FINE' as CaseStatusEnum,
|
|
78
|
-
ClientUnresponsive: 'CLIENT_UNRESPONSIVE' as CaseStatusEnum,
|
|
79
|
-
Deferred: 'DEFERRED' as CaseStatusEnum,
|
|
80
|
-
Dismissed: 'DISMISSED' as CaseStatusEnum,
|
|
81
|
-
Diversion: 'DIVERSION' as CaseStatusEnum,
|
|
82
|
-
FeesDisputed: 'FEES_DISPUTED' as CaseStatusEnum,
|
|
83
|
-
FineReductionOnly: 'FINE_REDUCTION_ONLY' as CaseStatusEnum,
|
|
84
|
-
LawfirmWithdrawn: 'LAWFIRM_WITHDRAWN' as CaseStatusEnum,
|
|
85
|
-
Lost: 'LOST' as CaseStatusEnum,
|
|
86
|
-
NoLawfirmAvailable: 'NO_LAWFIRM_AVAILABLE' as CaseStatusEnum,
|
|
87
|
-
PointReduction: 'POINT_REDUCTION' as CaseStatusEnum,
|
|
88
|
-
RefusedByLawfirm: 'REFUSED_BY_LAWFIRM' as CaseStatusEnum,
|
|
89
|
-
ResolvedNonPayment: 'RESOLVED_NON_PAYMENT' as CaseStatusEnum,
|
|
90
|
-
Stale: 'STALE' as CaseStatusEnum,
|
|
91
|
-
TrafficSchool: 'TRAFFIC_SCHOOL' as CaseStatusEnum,
|
|
92
|
-
Unconfirmed: 'UNCONFIRMED' as CaseStatusEnum
|
|
93
|
-
};
|
|
94
|
-
export type CaseStatusCategoryEnum = 'ACTIVE' | 'CANCELLED' | 'RESOLVED' | 'UNCONFIRMED';
|
|
95
|
-
export const CaseStatusCategoryEnum = {
|
|
96
|
-
Active: 'ACTIVE' as CaseStatusCategoryEnum,
|
|
97
|
-
Cancelled: 'CANCELLED' as CaseStatusCategoryEnum,
|
|
98
|
-
Resolved: 'RESOLVED' as CaseStatusCategoryEnum,
|
|
99
|
-
Unconfirmed: 'UNCONFIRMED' as CaseStatusCategoryEnum
|
|
100
|
-
};
|
|
101
|
-
export type RefundEligibilityEnum = 'FULL_REFUND' | 'NO_REFUND';
|
|
102
|
-
export const RefundEligibilityEnum = {
|
|
103
|
-
FullRefund: 'FULL_REFUND' as RefundEligibilityEnum,
|
|
104
|
-
NoRefund: 'NO_REFUND' as RefundEligibilityEnum
|
|
105
|
-
};
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OffTheRecord Rest Service API - Devo
|
|
3
|
-
* A service to handle your traffic tickets
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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 { CaseStatusDomain } from './caseStatusDomain';
|
|
13
|
-
import { UserDomainRes } from './userDomainRes';
|
|
14
|
-
import { LawfirmCaseDomainRes } from './lawfirmCaseDomainRes';
|
|
15
|
-
import { PaymentPlanTypeModelRes } from './paymentPlanTypeModelRes';
|
|
16
|
-
import { CancelationDetailsRes } from './cancelationDetailsRes';
|
|
17
|
-
import { TimestampRes } from './timestampRes';
|
|
18
|
-
import { CaseActionDomain } from './caseActionDomain';
|
|
19
|
-
import { LetterOfEngagement } from './letterOfEngagement';
|
|
20
|
-
import { CitationDomainRes } from './citationDomainRes';
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
export interface CaseDomainRes {
|
|
24
|
-
actions?: Array<CaseActionDomain>;
|
|
25
|
-
adjustedFineAmount?: number;
|
|
26
|
-
adjustedPointCount?: number;
|
|
27
|
-
bookingConfirmedDate?: TimestampRes;
|
|
28
|
-
cancelationDetails?: CancelationDetailsRes;
|
|
29
|
-
cancelationReason?: string;
|
|
30
|
-
cancellationExpiryDate?: TimestampRes;
|
|
31
|
-
caseCancellationDate?: TimestampRes;
|
|
32
|
-
caseCreationDate?: TimestampRes;
|
|
33
|
-
caseId?: string;
|
|
34
|
-
caseResolutionDate?: TimestampRes;
|
|
35
|
-
caseStatus?: CaseDomainRes.CaseStatusEnum;
|
|
36
|
-
caseStatusCategory?: CaseDomainRes.CaseStatusCategoryEnum;
|
|
37
|
-
caseStatusDomain?: CaseStatusDomain;
|
|
38
|
-
citation?: CitationDomainRes;
|
|
39
|
-
courtAppointmentDate?: TimestampRes;
|
|
40
|
-
hasLeftLawyerReview?: boolean;
|
|
41
|
-
isPointSystemState?: boolean;
|
|
42
|
-
lawfirmCaseDecision?: LawfirmCaseDomainRes;
|
|
43
|
-
lawfirmCodeApplied?: boolean;
|
|
44
|
-
letterOfEngagement?: LetterOfEngagement;
|
|
45
|
-
paymentPlanTypeModel?: PaymentPlanTypeModelRes;
|
|
46
|
-
referralCode?: string;
|
|
47
|
-
refundEligibility?: CaseDomainRes.RefundEligibilityEnum;
|
|
48
|
-
resolutionSummary?: string;
|
|
49
|
-
uiRefundMsg?: string;
|
|
50
|
-
user?: UserDomainRes;
|
|
51
|
-
userId?: number;
|
|
52
|
-
}
|
|
53
|
-
export namespace CaseDomainRes {
|
|
54
|
-
export type CaseStatusEnum = 'AMENDED_DOWN_WITHIN_CLASS' | 'AMENDED_FULL_FINE' | 'AMENDED_INCREASED_FINE' | 'AMENDED_NO_FINE' | 'AMENDED_REDUCED_FINE' | 'AMENDED_TO_INFRACTION' | 'AMENDED_TO_NMV' | 'CANCELLED_ATTORNEY_AT_FAULT' | 'CANCELLED_BY_LAWFIRM' | 'CANCELLED_BY_USER' | 'CANCELLED_DUPLICATE' | 'CANCELLED_NMV' | 'CANCELLED_NON_PAYMENT' | 'CANCELLED_NO_LAWFIRM' | 'CANCELLED_OVERDUE' | 'CANCELLED_TOO_SHORT_NOTICE' | 'CASE_IN_PROGRESS' | 'CLIENT_CONFIRMED' | 'CLIENT_CONFIRMED_UNPAID' | 'CLIENT_FIRED_LAWFIRM' | 'CLIENT_FORCED_LOSS' | 'CLIENT_PAID_FINE' | 'CLIENT_UNRESPONSIVE' | 'DEFERRED' | 'DISMISSED' | 'DIVERSION' | 'FEES_DISPUTED' | 'FINE_REDUCTION_ONLY' | 'LAWFIRM_WITHDRAWN' | 'LOST' | 'NO_LAWFIRM_AVAILABLE' | 'POINT_REDUCTION' | 'REFUSED_BY_LAWFIRM' | 'RESOLVED_NON_PAYMENT' | 'STALE' | 'TRAFFIC_SCHOOL' | 'UNCONFIRMED';
|
|
55
|
-
export const CaseStatusEnum = {
|
|
56
|
-
AmendedDownWithinClass: 'AMENDED_DOWN_WITHIN_CLASS' as CaseStatusEnum,
|
|
57
|
-
AmendedFullFine: 'AMENDED_FULL_FINE' as CaseStatusEnum,
|
|
58
|
-
AmendedIncreasedFine: 'AMENDED_INCREASED_FINE' as CaseStatusEnum,
|
|
59
|
-
AmendedNoFine: 'AMENDED_NO_FINE' as CaseStatusEnum,
|
|
60
|
-
AmendedReducedFine: 'AMENDED_REDUCED_FINE' as CaseStatusEnum,
|
|
61
|
-
AmendedToInfraction: 'AMENDED_TO_INFRACTION' as CaseStatusEnum,
|
|
62
|
-
AmendedToNmv: 'AMENDED_TO_NMV' as CaseStatusEnum,
|
|
63
|
-
CancelledAttorneyAtFault: 'CANCELLED_ATTORNEY_AT_FAULT' as CaseStatusEnum,
|
|
64
|
-
CancelledByLawfirm: 'CANCELLED_BY_LAWFIRM' as CaseStatusEnum,
|
|
65
|
-
CancelledByUser: 'CANCELLED_BY_USER' as CaseStatusEnum,
|
|
66
|
-
CancelledDuplicate: 'CANCELLED_DUPLICATE' as CaseStatusEnum,
|
|
67
|
-
CancelledNmv: 'CANCELLED_NMV' as CaseStatusEnum,
|
|
68
|
-
CancelledNonPayment: 'CANCELLED_NON_PAYMENT' as CaseStatusEnum,
|
|
69
|
-
CancelledNoLawfirm: 'CANCELLED_NO_LAWFIRM' as CaseStatusEnum,
|
|
70
|
-
CancelledOverdue: 'CANCELLED_OVERDUE' as CaseStatusEnum,
|
|
71
|
-
CancelledTooShortNotice: 'CANCELLED_TOO_SHORT_NOTICE' as CaseStatusEnum,
|
|
72
|
-
CaseInProgress: 'CASE_IN_PROGRESS' as CaseStatusEnum,
|
|
73
|
-
ClientConfirmed: 'CLIENT_CONFIRMED' as CaseStatusEnum,
|
|
74
|
-
ClientConfirmedUnpaid: 'CLIENT_CONFIRMED_UNPAID' as CaseStatusEnum,
|
|
75
|
-
ClientFiredLawfirm: 'CLIENT_FIRED_LAWFIRM' as CaseStatusEnum,
|
|
76
|
-
ClientForcedLoss: 'CLIENT_FORCED_LOSS' as CaseStatusEnum,
|
|
77
|
-
ClientPaidFine: 'CLIENT_PAID_FINE' as CaseStatusEnum,
|
|
78
|
-
ClientUnresponsive: 'CLIENT_UNRESPONSIVE' as CaseStatusEnum,
|
|
79
|
-
Deferred: 'DEFERRED' as CaseStatusEnum,
|
|
80
|
-
Dismissed: 'DISMISSED' as CaseStatusEnum,
|
|
81
|
-
Diversion: 'DIVERSION' as CaseStatusEnum,
|
|
82
|
-
FeesDisputed: 'FEES_DISPUTED' as CaseStatusEnum,
|
|
83
|
-
FineReductionOnly: 'FINE_REDUCTION_ONLY' as CaseStatusEnum,
|
|
84
|
-
LawfirmWithdrawn: 'LAWFIRM_WITHDRAWN' as CaseStatusEnum,
|
|
85
|
-
Lost: 'LOST' as CaseStatusEnum,
|
|
86
|
-
NoLawfirmAvailable: 'NO_LAWFIRM_AVAILABLE' as CaseStatusEnum,
|
|
87
|
-
PointReduction: 'POINT_REDUCTION' as CaseStatusEnum,
|
|
88
|
-
RefusedByLawfirm: 'REFUSED_BY_LAWFIRM' as CaseStatusEnum,
|
|
89
|
-
ResolvedNonPayment: 'RESOLVED_NON_PAYMENT' as CaseStatusEnum,
|
|
90
|
-
Stale: 'STALE' as CaseStatusEnum,
|
|
91
|
-
TrafficSchool: 'TRAFFIC_SCHOOL' as CaseStatusEnum,
|
|
92
|
-
Unconfirmed: 'UNCONFIRMED' as CaseStatusEnum
|
|
93
|
-
};
|
|
94
|
-
export type CaseStatusCategoryEnum = 'ACTIVE' | 'CANCELLED' | 'RESOLVED' | 'UNCONFIRMED';
|
|
95
|
-
export const CaseStatusCategoryEnum = {
|
|
96
|
-
Active: 'ACTIVE' as CaseStatusCategoryEnum,
|
|
97
|
-
Cancelled: 'CANCELLED' as CaseStatusCategoryEnum,
|
|
98
|
-
Resolved: 'RESOLVED' as CaseStatusCategoryEnum,
|
|
99
|
-
Unconfirmed: 'UNCONFIRMED' as CaseStatusCategoryEnum
|
|
100
|
-
};
|
|
101
|
-
export type RefundEligibilityEnum = 'FULL_REFUND' | 'NO_REFUND';
|
|
102
|
-
export const RefundEligibilityEnum = {
|
|
103
|
-
FullRefund: 'FULL_REFUND' as RefundEligibilityEnum,
|
|
104
|
-
NoRefund: 'NO_REFUND' as RefundEligibilityEnum
|
|
105
|
-
};
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|