@otr-app/shared-backend-generated-client 2.4.86 → 2.4.87
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.
|
@@ -14,6 +14,7 @@ import { WorkflowLineItemModel } from './workflowLineItemModel';
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
export interface LegalServiceModel {
|
|
17
|
+
algoName?: string;
|
|
17
18
|
chanceOfSuccess?: number;
|
|
18
19
|
financials?: WorkflowFinancials;
|
|
19
20
|
isSelected?: boolean;
|
|
@@ -27,6 +28,7 @@ export interface LegalServiceModel {
|
|
|
27
28
|
lineItems?: Array<WorkflowLineItemModel>;
|
|
28
29
|
matchExpirationDateUtc?: string;
|
|
29
30
|
obfuscatedPictureUrl?: string;
|
|
31
|
+
predeterminedLawfirmName?: string;
|
|
30
32
|
profilePictureUrl?: string;
|
|
31
33
|
refundEligibility?: LegalServiceModel.RefundEligibilityEnum;
|
|
32
34
|
refundMessage?: string;
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface LegalServiceModel {
|
|
14
|
+
"algoName"?: string;
|
|
14
15
|
"chanceOfSuccess"?: number;
|
|
15
16
|
"financials"?: models.WorkflowFinancials;
|
|
16
17
|
"isSelected"?: boolean;
|
|
@@ -24,6 +25,7 @@ export interface LegalServiceModel {
|
|
|
24
25
|
"lineItems"?: Array<models.WorkflowLineItemModel>;
|
|
25
26
|
"matchExpirationDateUtc"?: string;
|
|
26
27
|
"obfuscatedPictureUrl"?: string;
|
|
28
|
+
"predeterminedLawfirmName"?: string;
|
|
27
29
|
"profilePictureUrl"?: string;
|
|
28
30
|
"refundEligibility"?: LegalServiceModel.RefundEligibilityEnum;
|
|
29
31
|
"refundMessage"?: string;
|
|
@@ -16,6 +16,12 @@ import { WorkflowFinancials, WorkflowLineItemModel } from './';
|
|
|
16
16
|
* @interface LegalServiceModel
|
|
17
17
|
*/
|
|
18
18
|
export interface LegalServiceModel {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof LegalServiceModel
|
|
23
|
+
*/
|
|
24
|
+
algoName?: string;
|
|
19
25
|
/**
|
|
20
26
|
*
|
|
21
27
|
* @type {number}
|
|
@@ -94,6 +100,12 @@ export interface LegalServiceModel {
|
|
|
94
100
|
* @memberof LegalServiceModel
|
|
95
101
|
*/
|
|
96
102
|
obfuscatedPictureUrl?: string;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof LegalServiceModel
|
|
107
|
+
*/
|
|
108
|
+
predeterminedLawfirmName?: string;
|
|
97
109
|
/**
|
|
98
110
|
*
|
|
99
111
|
* @type {string}
|
|
@@ -21,6 +21,7 @@ export function LegalServiceModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
21
21
|
return json;
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
|
+
'algoName': !exists(json, 'algoName') ? undefined : json['algoName'],
|
|
24
25
|
'chanceOfSuccess': !exists(json, 'chanceOfSuccess') ? undefined : json['chanceOfSuccess'],
|
|
25
26
|
'financials': !exists(json, 'financials') ? undefined : WorkflowFinancialsFromJSON(json['financials']),
|
|
26
27
|
'isSelected': !exists(json, 'isSelected') ? undefined : json['isSelected'],
|
|
@@ -34,6 +35,7 @@ export function LegalServiceModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
35
|
'lineItems': !exists(json, 'lineItems') ? undefined : (json['lineItems'].map(WorkflowLineItemModelFromJSON)),
|
|
35
36
|
'matchExpirationDateUtc': !exists(json, 'matchExpirationDateUtc') ? undefined : (new Date(json['matchExpirationDateUtc'])),
|
|
36
37
|
'obfuscatedPictureUrl': !exists(json, 'obfuscatedPictureUrl') ? undefined : json['obfuscatedPictureUrl'],
|
|
38
|
+
'predeterminedLawfirmName': !exists(json, 'predeterminedLawfirmName') ? undefined : json['predeterminedLawfirmName'],
|
|
37
39
|
'profilePictureUrl': !exists(json, 'profilePictureUrl') ? undefined : json['profilePictureUrl'],
|
|
38
40
|
'refundEligibility': !exists(json, 'refundEligibility') ? undefined : json['refundEligibility'],
|
|
39
41
|
'refundMessage': !exists(json, 'refundMessage') ? undefined : json['refundMessage'],
|
|
@@ -49,6 +51,7 @@ export function LegalServiceModelToJSON(value) {
|
|
|
49
51
|
return null;
|
|
50
52
|
}
|
|
51
53
|
return {
|
|
54
|
+
'algoName': value.algoName,
|
|
52
55
|
'chanceOfSuccess': value.chanceOfSuccess,
|
|
53
56
|
'financials': WorkflowFinancialsToJSON(value.financials),
|
|
54
57
|
'isSelected': value.isSelected,
|
|
@@ -62,6 +65,7 @@ export function LegalServiceModelToJSON(value) {
|
|
|
62
65
|
'lineItems': value.lineItems === undefined ? undefined : (value.lineItems.map(WorkflowLineItemModelToJSON)),
|
|
63
66
|
'matchExpirationDateUtc': value.matchExpirationDateUtc === undefined ? undefined : (value.matchExpirationDateUtc.toISOString()),
|
|
64
67
|
'obfuscatedPictureUrl': value.obfuscatedPictureUrl,
|
|
68
|
+
'predeterminedLawfirmName': value.predeterminedLawfirmName,
|
|
65
69
|
'profilePictureUrl': value.profilePictureUrl,
|
|
66
70
|
'refundEligibility': value.refundEligibility,
|
|
67
71
|
'refundMessage': value.refundMessage,
|