@otr-app/shared-backend-generated-client 2.4.67 → 2.4.68
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/api/caseCounterOfferController.service.ts +62 -0
- package/dist/angular/model/caseActionDomain.ts +1 -0
- package/dist/angular/model/caseCounterOfferModel.ts +2 -0
- package/dist/angular/model/getCounterOfferResponse.ts +2 -0
- package/dist/angular/model/initiateCaseCounterResponse.ts +2 -0
- package/dist/angular/model/validateDirectMailResponse.ts +2 -1
- package/dist/otrBackendService.js +42 -0
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/CaseCounterOfferControllerApi.d.ts +7 -0
- package/dist/typescript/api/CaseCounterOfferControllerApi.js +31 -0
- package/dist/typescript/model/CaseActionDomain.d.ts +1 -0
- package/dist/typescript/model/CaseCounterOfferModel.d.ts +2 -0
- package/dist/typescript/model/GetCounterOfferResponse.d.ts +2 -0
- package/dist/typescript/model/InitiateCaseCounterResponse.d.ts +2 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript-fetch/apis/CaseCounterOfferControllerApi.d.ts +12 -0
- package/dist/typescript-fetch/apis/CaseCounterOfferControllerApi.js +31 -0
- package/dist/typescript-fetch/models/CaseActionDomain.d.ts +6 -0
- package/dist/typescript-fetch/models/CaseActionDomain.js +2 -0
- package/dist/typescript-fetch/models/CaseCounterOfferModel.d.ts +12 -0
- package/dist/typescript-fetch/models/CaseCounterOfferModel.js +4 -0
- package/dist/typescript-fetch/models/GetCounterOfferResponse.d.ts +12 -0
- package/dist/typescript-fetch/models/GetCounterOfferResponse.js +4 -0
- package/dist/typescript-fetch/models/InitiateCaseCounterResponse.d.ts +12 -0
- package/dist/typescript-fetch/models/InitiateCaseCounterResponse.js +4 -0
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.d.ts +1 -0
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.js +1 -0
- package/package.json +1 -1
|
@@ -39,6 +39,13 @@ export declare class CaseCounterOfferControllerApi {
|
|
|
39
39
|
* @summary getCaseCounterOptions
|
|
40
40
|
*/
|
|
41
41
|
getCaseCounterOptionsUsingGET(extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCaseCounterOptionsResponse>;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @summary getCounterOfferByCounterId
|
|
45
|
+
* @param caseId caseId
|
|
46
|
+
* @param counterId counterId
|
|
47
|
+
*/
|
|
48
|
+
getCounterOfferByCounterIdUsingGET(caseId: string, counterId: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCounterOfferResponse>;
|
|
42
49
|
/**
|
|
43
50
|
*
|
|
44
51
|
* @summary getCounterOffer
|
|
@@ -109,6 +109,37 @@ export class CaseCounterOfferControllerApi {
|
|
|
109
109
|
}
|
|
110
110
|
return this.$http(httpRequestParams);
|
|
111
111
|
}
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @summary getCounterOfferByCounterId
|
|
115
|
+
* @param caseId caseId
|
|
116
|
+
* @param counterId counterId
|
|
117
|
+
*/
|
|
118
|
+
getCounterOfferByCounterIdUsingGET(caseId, counterId, extraHttpRequestParams) {
|
|
119
|
+
const localVarPath = this.basePath + '/api/v1/cases/{caseId}/counters/{counterId}'
|
|
120
|
+
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)))
|
|
121
|
+
.replace('{' + 'counterId' + '}', encodeURIComponent(String(counterId)));
|
|
122
|
+
let queryParameters = {};
|
|
123
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
124
|
+
// verify required parameter 'caseId' is not null or undefined
|
|
125
|
+
if (caseId === null || caseId === undefined) {
|
|
126
|
+
throw new Error('Required parameter caseId was null or undefined when calling getCounterOfferByCounterIdUsingGET.');
|
|
127
|
+
}
|
|
128
|
+
// verify required parameter 'counterId' is not null or undefined
|
|
129
|
+
if (counterId === null || counterId === undefined) {
|
|
130
|
+
throw new Error('Required parameter counterId was null or undefined when calling getCounterOfferByCounterIdUsingGET.');
|
|
131
|
+
}
|
|
132
|
+
let httpRequestParams = {
|
|
133
|
+
method: 'GET',
|
|
134
|
+
url: localVarPath,
|
|
135
|
+
params: queryParameters,
|
|
136
|
+
headers: headerParams
|
|
137
|
+
};
|
|
138
|
+
if (extraHttpRequestParams) {
|
|
139
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
140
|
+
}
|
|
141
|
+
return this.$http(httpRequestParams);
|
|
142
|
+
}
|
|
112
143
|
/**
|
|
113
144
|
*
|
|
114
145
|
* @summary getCounterOffer
|
|
@@ -13,6 +13,7 @@ import * as models from './models';
|
|
|
13
13
|
export interface CaseActionDomain {
|
|
14
14
|
"actionDate"?: string;
|
|
15
15
|
"actionNote"?: string;
|
|
16
|
+
"actionReferenceId"?: number;
|
|
16
17
|
"actionType"?: CaseActionDomain.ActionTypeEnum;
|
|
17
18
|
"author"?: models.AuthorModel;
|
|
18
19
|
"authorId"?: number;
|
|
@@ -17,6 +17,8 @@ export interface CaseCounterOfferModel {
|
|
|
17
17
|
"counterOfferStatus"?: string;
|
|
18
18
|
"createdByUserId"?: number;
|
|
19
19
|
"createdByUserRoleId"?: number;
|
|
20
|
+
"initialLegalFeeInCents"?: number;
|
|
21
|
+
"initialRefundPercentage"?: number;
|
|
20
22
|
"lawfirmCaseId"?: number;
|
|
21
23
|
"noteToClient"?: string;
|
|
22
24
|
"noteToOtr"?: string;
|
|
@@ -18,6 +18,8 @@ export interface GetCounterOfferResponse {
|
|
|
18
18
|
"counterOptions"?: Array<models.CaseCounterOptionModel>;
|
|
19
19
|
"createdByUserId"?: number;
|
|
20
20
|
"createdByUserRoleId"?: number;
|
|
21
|
+
"initialLegalFeeInCents"?: number;
|
|
22
|
+
"initialRefundPercentage"?: number;
|
|
21
23
|
"lawfirmCaseId"?: number;
|
|
22
24
|
"legalFeeDifferenceInCents"?: number;
|
|
23
25
|
"noteToClient"?: string;
|
|
@@ -18,6 +18,8 @@ export interface InitiateCaseCounterResponse {
|
|
|
18
18
|
"counterOptions"?: Array<models.CaseCounterOptionModel>;
|
|
19
19
|
"createdByUserId"?: number;
|
|
20
20
|
"createdByUserRoleId"?: number;
|
|
21
|
+
"initialLegalFeeInCents"?: number;
|
|
22
|
+
"initialRefundPercentage"?: number;
|
|
21
23
|
"lawfirmCaseId"?: number;
|
|
22
24
|
"noteToClient"?: string;
|
|
23
25
|
"noteToOtr"?: string;
|
|
@@ -28,6 +28,7 @@ export var ValidateDirectMailResponse;
|
|
|
28
28
|
OtrErrorEnum[OtrErrorEnum["CASEALREADYEXISTS"] = 'CASE_ALREADY_EXISTS'] = "CASEALREADYEXISTS";
|
|
29
29
|
OtrErrorEnum[OtrErrorEnum["CASEALREADYPAID"] = 'CASE_ALREADY_PAID'] = "CASEALREADYPAID";
|
|
30
30
|
OtrErrorEnum[OtrErrorEnum["CASEALREADYRESOLVED"] = 'CASE_ALREADY_RESOLVED'] = "CASEALREADYRESOLVED";
|
|
31
|
+
OtrErrorEnum[OtrErrorEnum["CASECOUNTERMISMATCH"] = 'CASE_COUNTER_MISMATCH'] = "CASECOUNTERMISMATCH";
|
|
31
32
|
OtrErrorEnum[OtrErrorEnum["CASEIDCOLLISION"] = 'CASE_ID_COLLISION'] = "CASEIDCOLLISION";
|
|
32
33
|
OtrErrorEnum[OtrErrorEnum["CASEISCANCELLED"] = 'CASE_IS_CANCELLED'] = "CASEISCANCELLED";
|
|
33
34
|
OtrErrorEnum[OtrErrorEnum["CASEMATCHFAILED"] = 'CASE_MATCH_FAILED'] = "CASEMATCHFAILED";
|
|
@@ -21,6 +21,10 @@ export interface DeclineCaseCounterUsingPUTRequest {
|
|
|
21
21
|
counterId: number;
|
|
22
22
|
request: DeclineCaseCounterRequest;
|
|
23
23
|
}
|
|
24
|
+
export interface GetCounterOfferByCounterIdUsingGETRequest {
|
|
25
|
+
caseId: string;
|
|
26
|
+
counterId: number;
|
|
27
|
+
}
|
|
24
28
|
export interface GetCounterOfferUsingGETRequest {
|
|
25
29
|
caseId: string;
|
|
26
30
|
}
|
|
@@ -60,6 +64,14 @@ export declare class CaseCounterOfferControllerApi extends runtime.BaseAPI {
|
|
|
60
64
|
* getCaseCounterOptions
|
|
61
65
|
*/
|
|
62
66
|
getCaseCounterOptionsUsingGET(): Promise<GetCaseCounterOptionsResponse>;
|
|
67
|
+
/**
|
|
68
|
+
* getCounterOfferByCounterId
|
|
69
|
+
*/
|
|
70
|
+
getCounterOfferByCounterIdUsingGETRaw(requestParameters: GetCounterOfferByCounterIdUsingGETRequest): Promise<runtime.ApiResponse<GetCounterOfferResponse>>;
|
|
71
|
+
/**
|
|
72
|
+
* getCounterOfferByCounterId
|
|
73
|
+
*/
|
|
74
|
+
getCounterOfferByCounterIdUsingGET(requestParameters: GetCounterOfferByCounterIdUsingGETRequest): Promise<GetCounterOfferResponse>;
|
|
63
75
|
/**
|
|
64
76
|
* getCounterOffer
|
|
65
77
|
*/
|
|
@@ -118,6 +118,37 @@ export class CaseCounterOfferControllerApi extends runtime.BaseAPI {
|
|
|
118
118
|
return yield response.value();
|
|
119
119
|
});
|
|
120
120
|
}
|
|
121
|
+
/**
|
|
122
|
+
* getCounterOfferByCounterId
|
|
123
|
+
*/
|
|
124
|
+
getCounterOfferByCounterIdUsingGETRaw(requestParameters) {
|
|
125
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
126
|
+
if (requestParameters.caseId === null || requestParameters.caseId === undefined) {
|
|
127
|
+
throw new runtime.RequiredError('caseId', 'Required parameter requestParameters.caseId was null or undefined when calling getCounterOfferByCounterIdUsingGET.');
|
|
128
|
+
}
|
|
129
|
+
if (requestParameters.counterId === null || requestParameters.counterId === undefined) {
|
|
130
|
+
throw new runtime.RequiredError('counterId', 'Required parameter requestParameters.counterId was null or undefined when calling getCounterOfferByCounterIdUsingGET.');
|
|
131
|
+
}
|
|
132
|
+
const queryParameters = {};
|
|
133
|
+
const headerParameters = {};
|
|
134
|
+
const response = yield this.request({
|
|
135
|
+
path: `/api/v1/cases/{caseId}/counters/{counterId}`.replace(`{${"caseId"}}`, encodeURIComponent(String(requestParameters.caseId))).replace(`{${"counterId"}}`, encodeURIComponent(String(requestParameters.counterId))),
|
|
136
|
+
method: 'GET',
|
|
137
|
+
headers: headerParameters,
|
|
138
|
+
query: queryParameters,
|
|
139
|
+
});
|
|
140
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => GetCounterOfferResponseFromJSON(jsonValue));
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* getCounterOfferByCounterId
|
|
145
|
+
*/
|
|
146
|
+
getCounterOfferByCounterIdUsingGET(requestParameters) {
|
|
147
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
148
|
+
const response = yield this.getCounterOfferByCounterIdUsingGETRaw(requestParameters);
|
|
149
|
+
return yield response.value();
|
|
150
|
+
});
|
|
151
|
+
}
|
|
121
152
|
/**
|
|
122
153
|
* getCounterOffer
|
|
123
154
|
*/
|
|
@@ -23,6 +23,7 @@ export function CaseActionDomainFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
return {
|
|
24
24
|
'actionDate': !exists(json, 'actionDate') ? undefined : (new Date(json['actionDate'])),
|
|
25
25
|
'actionNote': !exists(json, 'actionNote') ? undefined : json['actionNote'],
|
|
26
|
+
'actionReferenceId': !exists(json, 'actionReferenceId') ? undefined : json['actionReferenceId'],
|
|
26
27
|
'actionType': !exists(json, 'actionType') ? undefined : json['actionType'],
|
|
27
28
|
'author': !exists(json, 'author') ? undefined : AuthorModelFromJSON(json['author']),
|
|
28
29
|
'authorId': !exists(json, 'authorId') ? undefined : json['authorId'],
|
|
@@ -45,6 +46,7 @@ export function CaseActionDomainToJSON(value) {
|
|
|
45
46
|
return {
|
|
46
47
|
'actionDate': value.actionDate === undefined ? undefined : (value.actionDate.toISOString()),
|
|
47
48
|
'actionNote': value.actionNote,
|
|
49
|
+
'actionReferenceId': value.actionReferenceId,
|
|
48
50
|
'actionType': value.actionType,
|
|
49
51
|
'author': AuthorModelToJSON(value.author),
|
|
50
52
|
'authorId': value.authorId,
|
|
@@ -52,6 +52,18 @@ export interface CaseCounterOfferModel {
|
|
|
52
52
|
* @memberof CaseCounterOfferModel
|
|
53
53
|
*/
|
|
54
54
|
createdByUserRoleId?: number;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {number}
|
|
58
|
+
* @memberof CaseCounterOfferModel
|
|
59
|
+
*/
|
|
60
|
+
initialLegalFeeInCents?: number;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof CaseCounterOfferModel
|
|
65
|
+
*/
|
|
66
|
+
initialRefundPercentage?: number;
|
|
55
67
|
/**
|
|
56
68
|
*
|
|
57
69
|
* @type {number}
|
|
@@ -27,6 +27,8 @@ export function CaseCounterOfferModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
27
|
'counterOfferStatus': !exists(json, 'counterOfferStatus') ? undefined : json['counterOfferStatus'],
|
|
28
28
|
'createdByUserId': !exists(json, 'createdByUserId') ? undefined : json['createdByUserId'],
|
|
29
29
|
'createdByUserRoleId': !exists(json, 'createdByUserRoleId') ? undefined : json['createdByUserRoleId'],
|
|
30
|
+
'initialLegalFeeInCents': !exists(json, 'initialLegalFeeInCents') ? undefined : json['initialLegalFeeInCents'],
|
|
31
|
+
'initialRefundPercentage': !exists(json, 'initialRefundPercentage') ? undefined : json['initialRefundPercentage'],
|
|
30
32
|
'lawfirmCaseId': !exists(json, 'lawfirmCaseId') ? undefined : json['lawfirmCaseId'],
|
|
31
33
|
'noteToClient': !exists(json, 'noteToClient') ? undefined : json['noteToClient'],
|
|
32
34
|
'noteToOtr': !exists(json, 'noteToOtr') ? undefined : json['noteToOtr'],
|
|
@@ -47,6 +49,8 @@ export function CaseCounterOfferModelToJSON(value) {
|
|
|
47
49
|
'counterOfferStatus': value.counterOfferStatus,
|
|
48
50
|
'createdByUserId': value.createdByUserId,
|
|
49
51
|
'createdByUserRoleId': value.createdByUserRoleId,
|
|
52
|
+
'initialLegalFeeInCents': value.initialLegalFeeInCents,
|
|
53
|
+
'initialRefundPercentage': value.initialRefundPercentage,
|
|
50
54
|
'lawfirmCaseId': value.lawfirmCaseId,
|
|
51
55
|
'noteToClient': value.noteToClient,
|
|
52
56
|
'noteToOtr': value.noteToOtr,
|
|
@@ -58,6 +58,18 @@ export interface GetCounterOfferResponse {
|
|
|
58
58
|
* @memberof GetCounterOfferResponse
|
|
59
59
|
*/
|
|
60
60
|
createdByUserRoleId?: number;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof GetCounterOfferResponse
|
|
65
|
+
*/
|
|
66
|
+
initialLegalFeeInCents?: number;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {number}
|
|
70
|
+
* @memberof GetCounterOfferResponse
|
|
71
|
+
*/
|
|
72
|
+
initialRefundPercentage?: number;
|
|
61
73
|
/**
|
|
62
74
|
*
|
|
63
75
|
* @type {number}
|
|
@@ -28,6 +28,8 @@ export function GetCounterOfferResponseFromJSONTyped(json, ignoreDiscriminator)
|
|
|
28
28
|
'counterOptions': !exists(json, 'counterOptions') ? undefined : (json['counterOptions'].map(CaseCounterOptionModelFromJSON)),
|
|
29
29
|
'createdByUserId': !exists(json, 'createdByUserId') ? undefined : json['createdByUserId'],
|
|
30
30
|
'createdByUserRoleId': !exists(json, 'createdByUserRoleId') ? undefined : json['createdByUserRoleId'],
|
|
31
|
+
'initialLegalFeeInCents': !exists(json, 'initialLegalFeeInCents') ? undefined : json['initialLegalFeeInCents'],
|
|
32
|
+
'initialRefundPercentage': !exists(json, 'initialRefundPercentage') ? undefined : json['initialRefundPercentage'],
|
|
31
33
|
'lawfirmCaseId': !exists(json, 'lawfirmCaseId') ? undefined : json['lawfirmCaseId'],
|
|
32
34
|
'legalFeeDifferenceInCents': !exists(json, 'legalFeeDifferenceInCents') ? undefined : json['legalFeeDifferenceInCents'],
|
|
33
35
|
'noteToClient': !exists(json, 'noteToClient') ? undefined : json['noteToClient'],
|
|
@@ -51,6 +53,8 @@ export function GetCounterOfferResponseToJSON(value) {
|
|
|
51
53
|
'counterOptions': value.counterOptions === undefined ? undefined : (value.counterOptions.map(CaseCounterOptionModelToJSON)),
|
|
52
54
|
'createdByUserId': value.createdByUserId,
|
|
53
55
|
'createdByUserRoleId': value.createdByUserRoleId,
|
|
56
|
+
'initialLegalFeeInCents': value.initialLegalFeeInCents,
|
|
57
|
+
'initialRefundPercentage': value.initialRefundPercentage,
|
|
54
58
|
'lawfirmCaseId': value.lawfirmCaseId,
|
|
55
59
|
'legalFeeDifferenceInCents': value.legalFeeDifferenceInCents,
|
|
56
60
|
'noteToClient': value.noteToClient,
|
|
@@ -58,6 +58,18 @@ export interface InitiateCaseCounterResponse {
|
|
|
58
58
|
* @memberof InitiateCaseCounterResponse
|
|
59
59
|
*/
|
|
60
60
|
createdByUserRoleId?: number;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof InitiateCaseCounterResponse
|
|
65
|
+
*/
|
|
66
|
+
initialLegalFeeInCents?: number;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {number}
|
|
70
|
+
* @memberof InitiateCaseCounterResponse
|
|
71
|
+
*/
|
|
72
|
+
initialRefundPercentage?: number;
|
|
61
73
|
/**
|
|
62
74
|
*
|
|
63
75
|
* @type {number}
|
|
@@ -28,6 +28,8 @@ export function InitiateCaseCounterResponseFromJSONTyped(json, ignoreDiscriminat
|
|
|
28
28
|
'counterOptions': !exists(json, 'counterOptions') ? undefined : (json['counterOptions'].map(CaseCounterOptionModelFromJSON)),
|
|
29
29
|
'createdByUserId': !exists(json, 'createdByUserId') ? undefined : json['createdByUserId'],
|
|
30
30
|
'createdByUserRoleId': !exists(json, 'createdByUserRoleId') ? undefined : json['createdByUserRoleId'],
|
|
31
|
+
'initialLegalFeeInCents': !exists(json, 'initialLegalFeeInCents') ? undefined : json['initialLegalFeeInCents'],
|
|
32
|
+
'initialRefundPercentage': !exists(json, 'initialRefundPercentage') ? undefined : json['initialRefundPercentage'],
|
|
31
33
|
'lawfirmCaseId': !exists(json, 'lawfirmCaseId') ? undefined : json['lawfirmCaseId'],
|
|
32
34
|
'noteToClient': !exists(json, 'noteToClient') ? undefined : json['noteToClient'],
|
|
33
35
|
'noteToOtr': !exists(json, 'noteToOtr') ? undefined : json['noteToOtr'],
|
|
@@ -49,6 +51,8 @@ export function InitiateCaseCounterResponseToJSON(value) {
|
|
|
49
51
|
'counterOptions': value.counterOptions === undefined ? undefined : (value.counterOptions.map(CaseCounterOptionModelToJSON)),
|
|
50
52
|
'createdByUserId': value.createdByUserId,
|
|
51
53
|
'createdByUserRoleId': value.createdByUserRoleId,
|
|
54
|
+
'initialLegalFeeInCents': value.initialLegalFeeInCents,
|
|
55
|
+
'initialRefundPercentage': value.initialRefundPercentage,
|
|
52
56
|
'lawfirmCaseId': value.lawfirmCaseId,
|
|
53
57
|
'noteToClient': value.noteToClient,
|
|
54
58
|
'noteToOtr': value.noteToOtr,
|
|
@@ -45,6 +45,7 @@ export declare enum ValidateDirectMailResponseOtrErrorEnum {
|
|
|
45
45
|
CASEALREADYEXISTS = "CASE_ALREADY_EXISTS",
|
|
46
46
|
CASEALREADYPAID = "CASE_ALREADY_PAID",
|
|
47
47
|
CASEALREADYRESOLVED = "CASE_ALREADY_RESOLVED",
|
|
48
|
+
CASECOUNTERMISMATCH = "CASE_COUNTER_MISMATCH",
|
|
48
49
|
CASEIDCOLLISION = "CASE_ID_COLLISION",
|
|
49
50
|
CASEISCANCELLED = "CASE_IS_CANCELLED",
|
|
50
51
|
CASEMATCHFAILED = "CASE_MATCH_FAILED",
|
|
@@ -55,6 +55,7 @@ export var ValidateDirectMailResponseOtrErrorEnum;
|
|
|
55
55
|
ValidateDirectMailResponseOtrErrorEnum["CASEALREADYEXISTS"] = "CASE_ALREADY_EXISTS";
|
|
56
56
|
ValidateDirectMailResponseOtrErrorEnum["CASEALREADYPAID"] = "CASE_ALREADY_PAID";
|
|
57
57
|
ValidateDirectMailResponseOtrErrorEnum["CASEALREADYRESOLVED"] = "CASE_ALREADY_RESOLVED";
|
|
58
|
+
ValidateDirectMailResponseOtrErrorEnum["CASECOUNTERMISMATCH"] = "CASE_COUNTER_MISMATCH";
|
|
58
59
|
ValidateDirectMailResponseOtrErrorEnum["CASEIDCOLLISION"] = "CASE_ID_COLLISION";
|
|
59
60
|
ValidateDirectMailResponseOtrErrorEnum["CASEISCANCELLED"] = "CASE_IS_CANCELLED";
|
|
60
61
|
ValidateDirectMailResponseOtrErrorEnum["CASEMATCHFAILED"] = "CASE_MATCH_FAILED";
|