@otr-app/shared-backend-generated-client 2.5.158 → 2.5.159
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/model/caseModel.ts +2 -0
- package/dist/angular/model/caseModelReq.ts +2 -0
- package/dist/angular/model/caseModelRes.ts +2 -0
- package/dist/typescript/model/CaseModel.d.ts +2 -0
- package/dist/typescript/model/CaseModelReq.d.ts +2 -0
- package/dist/typescript/model/CaseModelRes.d.ts +2 -0
- package/dist/typescript-fetch/models/CaseModel.d.ts +12 -0
- package/dist/typescript-fetch/models/CaseModel.js +4 -0
- package/dist/typescript-fetch/models/CaseModelReq.d.ts +12 -0
- package/dist/typescript-fetch/models/CaseModelReq.js +4 -0
- package/dist/typescript-fetch/models/CaseModelRes.d.ts +12 -0
- package/dist/typescript-fetch/models/CaseModelRes.js +4 -0
- package/dist/typescript-open-api/otr-backend.d.ts +12 -0
- package/package.json +1 -1
|
@@ -41,12 +41,14 @@ export interface CaseModel {
|
|
|
41
41
|
caseStatusDomain?: CaseStatusDomain;
|
|
42
42
|
citation?: CitationModel;
|
|
43
43
|
courtAppointmentDate?: Timestamp;
|
|
44
|
+
defendantUserId?: number;
|
|
44
45
|
hasLeftLawyerReview?: boolean;
|
|
45
46
|
isPointSystemState?: boolean;
|
|
46
47
|
lawfirmCaseDecision?: LawfirmCaseModel;
|
|
47
48
|
lawfirmCodeApplied?: boolean;
|
|
48
49
|
letterOfEngagement?: LetterOfEngagement;
|
|
49
50
|
maxPenalties?: Array<CaseViolationPenalty>;
|
|
51
|
+
ownerUserId?: number;
|
|
50
52
|
paymentPlanTypeModel?: PaymentPlanTypeModel;
|
|
51
53
|
referralCode?: string;
|
|
52
54
|
refundEligibility?: CaseModel.RefundEligibilityEnum;
|
|
@@ -41,12 +41,14 @@ export interface CaseModelReq {
|
|
|
41
41
|
caseStatusDomain?: CaseStatusDomain;
|
|
42
42
|
citation?: CitationModelReq;
|
|
43
43
|
courtAppointmentDate?: TimestampReq;
|
|
44
|
+
defendantUserId?: number;
|
|
44
45
|
hasLeftLawyerReview?: boolean;
|
|
45
46
|
isPointSystemState?: boolean;
|
|
46
47
|
lawfirmCaseDecision?: LawfirmCaseModelReq;
|
|
47
48
|
lawfirmCodeApplied?: boolean;
|
|
48
49
|
letterOfEngagement?: LetterOfEngagement;
|
|
49
50
|
maxPenalties?: Array<CaseViolationPenalty>;
|
|
51
|
+
ownerUserId?: number;
|
|
50
52
|
paymentPlanTypeModel?: PaymentPlanTypeModelReq;
|
|
51
53
|
referralCode?: string;
|
|
52
54
|
refundEligibility?: CaseModelReq.RefundEligibilityEnum;
|
|
@@ -41,12 +41,14 @@ export interface CaseModelRes {
|
|
|
41
41
|
caseStatusDomain?: CaseStatusDomain;
|
|
42
42
|
citation?: CitationModelRes;
|
|
43
43
|
courtAppointmentDate?: TimestampRes;
|
|
44
|
+
defendantUserId?: number;
|
|
44
45
|
hasLeftLawyerReview?: boolean;
|
|
45
46
|
isPointSystemState?: boolean;
|
|
46
47
|
lawfirmCaseDecision?: LawfirmCaseModelRes;
|
|
47
48
|
lawfirmCodeApplied?: boolean;
|
|
48
49
|
letterOfEngagement?: LetterOfEngagement;
|
|
49
50
|
maxPenalties?: Array<CaseViolationPenalty>;
|
|
51
|
+
ownerUserId?: number;
|
|
50
52
|
paymentPlanTypeModel?: PaymentPlanTypeModelRes;
|
|
51
53
|
referralCode?: string;
|
|
52
54
|
refundEligibility?: CaseModelRes.RefundEligibilityEnum;
|
|
@@ -28,12 +28,14 @@ export interface CaseModel {
|
|
|
28
28
|
"caseStatusDomain"?: models.CaseStatusDomain;
|
|
29
29
|
"citation"?: models.CitationModel;
|
|
30
30
|
"courtAppointmentDate"?: models.Timestamp;
|
|
31
|
+
"defendantUserId"?: number;
|
|
31
32
|
"hasLeftLawyerReview"?: boolean;
|
|
32
33
|
"isPointSystemState"?: boolean;
|
|
33
34
|
"lawfirmCaseDecision"?: models.LawfirmCaseModel;
|
|
34
35
|
"lawfirmCodeApplied"?: boolean;
|
|
35
36
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
36
37
|
"maxPenalties"?: Array<models.CaseViolationPenalty>;
|
|
38
|
+
"ownerUserId"?: number;
|
|
37
39
|
"paymentPlanTypeModel"?: models.PaymentPlanTypeModel;
|
|
38
40
|
"referralCode"?: string;
|
|
39
41
|
"refundEligibility"?: CaseModel.RefundEligibilityEnum;
|
|
@@ -28,12 +28,14 @@ export interface CaseModelReq {
|
|
|
28
28
|
"caseStatusDomain"?: models.CaseStatusDomain;
|
|
29
29
|
"citation"?: models.CitationModelReq;
|
|
30
30
|
"courtAppointmentDate"?: models.TimestampReq;
|
|
31
|
+
"defendantUserId"?: number;
|
|
31
32
|
"hasLeftLawyerReview"?: boolean;
|
|
32
33
|
"isPointSystemState"?: boolean;
|
|
33
34
|
"lawfirmCaseDecision"?: models.LawfirmCaseModelReq;
|
|
34
35
|
"lawfirmCodeApplied"?: boolean;
|
|
35
36
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
36
37
|
"maxPenalties"?: Array<models.CaseViolationPenalty>;
|
|
38
|
+
"ownerUserId"?: number;
|
|
37
39
|
"paymentPlanTypeModel"?: models.PaymentPlanTypeModelReq;
|
|
38
40
|
"referralCode"?: string;
|
|
39
41
|
"refundEligibility"?: CaseModelReq.RefundEligibilityEnum;
|
|
@@ -28,12 +28,14 @@ export interface CaseModelRes {
|
|
|
28
28
|
"caseStatusDomain"?: models.CaseStatusDomain;
|
|
29
29
|
"citation"?: models.CitationModelRes;
|
|
30
30
|
"courtAppointmentDate"?: models.TimestampRes;
|
|
31
|
+
"defendantUserId"?: number;
|
|
31
32
|
"hasLeftLawyerReview"?: boolean;
|
|
32
33
|
"isPointSystemState"?: boolean;
|
|
33
34
|
"lawfirmCaseDecision"?: models.LawfirmCaseModelRes;
|
|
34
35
|
"lawfirmCodeApplied"?: boolean;
|
|
35
36
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
36
37
|
"maxPenalties"?: Array<models.CaseViolationPenalty>;
|
|
38
|
+
"ownerUserId"?: number;
|
|
37
39
|
"paymentPlanTypeModel"?: models.PaymentPlanTypeModelRes;
|
|
38
40
|
"referralCode"?: string;
|
|
39
41
|
"refundEligibility"?: CaseModelRes.RefundEligibilityEnum;
|
|
@@ -118,6 +118,12 @@ export interface CaseModel {
|
|
|
118
118
|
* @memberof CaseModel
|
|
119
119
|
*/
|
|
120
120
|
courtAppointmentDate?: Timestamp;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {number}
|
|
124
|
+
* @memberof CaseModel
|
|
125
|
+
*/
|
|
126
|
+
defendantUserId?: number;
|
|
121
127
|
/**
|
|
122
128
|
*
|
|
123
129
|
* @type {boolean}
|
|
@@ -154,6 +160,12 @@ export interface CaseModel {
|
|
|
154
160
|
* @memberof CaseModel
|
|
155
161
|
*/
|
|
156
162
|
maxPenalties?: Array<CaseViolationPenalty>;
|
|
163
|
+
/**
|
|
164
|
+
*
|
|
165
|
+
* @type {number}
|
|
166
|
+
* @memberof CaseModel
|
|
167
|
+
*/
|
|
168
|
+
ownerUserId?: number;
|
|
157
169
|
/**
|
|
158
170
|
*
|
|
159
171
|
* @type {PaymentPlanTypeModel}
|
|
@@ -38,12 +38,14 @@ export function CaseModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
38
|
'caseStatusDomain': !exists(json, 'caseStatusDomain') ? undefined : CaseStatusDomainFromJSON(json['caseStatusDomain']),
|
|
39
39
|
'citation': !exists(json, 'citation') ? undefined : CitationModelFromJSON(json['citation']),
|
|
40
40
|
'courtAppointmentDate': !exists(json, 'courtAppointmentDate') ? undefined : TimestampFromJSON(json['courtAppointmentDate']),
|
|
41
|
+
'defendantUserId': !exists(json, 'defendantUserId') ? undefined : json['defendantUserId'],
|
|
41
42
|
'hasLeftLawyerReview': !exists(json, 'hasLeftLawyerReview') ? undefined : json['hasLeftLawyerReview'],
|
|
42
43
|
'isPointSystemState': !exists(json, 'isPointSystemState') ? undefined : json['isPointSystemState'],
|
|
43
44
|
'lawfirmCaseDecision': !exists(json, 'lawfirmCaseDecision') ? undefined : LawfirmCaseModelFromJSON(json['lawfirmCaseDecision']),
|
|
44
45
|
'lawfirmCodeApplied': !exists(json, 'lawfirmCodeApplied') ? undefined : json['lawfirmCodeApplied'],
|
|
45
46
|
'letterOfEngagement': !exists(json, 'letterOfEngagement') ? undefined : LetterOfEngagementFromJSON(json['letterOfEngagement']),
|
|
46
47
|
'maxPenalties': !exists(json, 'maxPenalties') ? undefined : (json['maxPenalties'].map(CaseViolationPenaltyFromJSON)),
|
|
48
|
+
'ownerUserId': !exists(json, 'ownerUserId') ? undefined : json['ownerUserId'],
|
|
47
49
|
'paymentPlanTypeModel': !exists(json, 'paymentPlanTypeModel') ? undefined : PaymentPlanTypeModelFromJSON(json['paymentPlanTypeModel']),
|
|
48
50
|
'referralCode': !exists(json, 'referralCode') ? undefined : json['referralCode'],
|
|
49
51
|
'refundEligibility': !exists(json, 'refundEligibility') ? undefined : json['refundEligibility'],
|
|
@@ -79,12 +81,14 @@ export function CaseModelToJSON(value) {
|
|
|
79
81
|
'caseStatusDomain': CaseStatusDomainToJSON(value.caseStatusDomain),
|
|
80
82
|
'citation': CitationModelToJSON(value.citation),
|
|
81
83
|
'courtAppointmentDate': TimestampToJSON(value.courtAppointmentDate),
|
|
84
|
+
'defendantUserId': value.defendantUserId,
|
|
82
85
|
'hasLeftLawyerReview': value.hasLeftLawyerReview,
|
|
83
86
|
'isPointSystemState': value.isPointSystemState,
|
|
84
87
|
'lawfirmCaseDecision': LawfirmCaseModelToJSON(value.lawfirmCaseDecision),
|
|
85
88
|
'lawfirmCodeApplied': value.lawfirmCodeApplied,
|
|
86
89
|
'letterOfEngagement': LetterOfEngagementToJSON(value.letterOfEngagement),
|
|
87
90
|
'maxPenalties': value.maxPenalties === undefined ? undefined : (value.maxPenalties.map(CaseViolationPenaltyToJSON)),
|
|
91
|
+
'ownerUserId': value.ownerUserId,
|
|
88
92
|
'paymentPlanTypeModel': PaymentPlanTypeModelToJSON(value.paymentPlanTypeModel),
|
|
89
93
|
'referralCode': value.referralCode,
|
|
90
94
|
'refundEligibility': value.refundEligibility,
|
|
@@ -118,6 +118,12 @@ export interface CaseModelReq {
|
|
|
118
118
|
* @memberof CaseModelReq
|
|
119
119
|
*/
|
|
120
120
|
courtAppointmentDate?: TimestampReq;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {number}
|
|
124
|
+
* @memberof CaseModelReq
|
|
125
|
+
*/
|
|
126
|
+
defendantUserId?: number;
|
|
121
127
|
/**
|
|
122
128
|
*
|
|
123
129
|
* @type {boolean}
|
|
@@ -154,6 +160,12 @@ export interface CaseModelReq {
|
|
|
154
160
|
* @memberof CaseModelReq
|
|
155
161
|
*/
|
|
156
162
|
maxPenalties?: Array<CaseViolationPenalty>;
|
|
163
|
+
/**
|
|
164
|
+
*
|
|
165
|
+
* @type {number}
|
|
166
|
+
* @memberof CaseModelReq
|
|
167
|
+
*/
|
|
168
|
+
ownerUserId?: number;
|
|
157
169
|
/**
|
|
158
170
|
*
|
|
159
171
|
* @type {PaymentPlanTypeModelReq}
|
|
@@ -38,12 +38,14 @@ export function CaseModelReqFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
38
|
'caseStatusDomain': !exists(json, 'caseStatusDomain') ? undefined : CaseStatusDomainFromJSON(json['caseStatusDomain']),
|
|
39
39
|
'citation': !exists(json, 'citation') ? undefined : CitationModelReqFromJSON(json['citation']),
|
|
40
40
|
'courtAppointmentDate': !exists(json, 'courtAppointmentDate') ? undefined : TimestampReqFromJSON(json['courtAppointmentDate']),
|
|
41
|
+
'defendantUserId': !exists(json, 'defendantUserId') ? undefined : json['defendantUserId'],
|
|
41
42
|
'hasLeftLawyerReview': !exists(json, 'hasLeftLawyerReview') ? undefined : json['hasLeftLawyerReview'],
|
|
42
43
|
'isPointSystemState': !exists(json, 'isPointSystemState') ? undefined : json['isPointSystemState'],
|
|
43
44
|
'lawfirmCaseDecision': !exists(json, 'lawfirmCaseDecision') ? undefined : LawfirmCaseModelReqFromJSON(json['lawfirmCaseDecision']),
|
|
44
45
|
'lawfirmCodeApplied': !exists(json, 'lawfirmCodeApplied') ? undefined : json['lawfirmCodeApplied'],
|
|
45
46
|
'letterOfEngagement': !exists(json, 'letterOfEngagement') ? undefined : LetterOfEngagementFromJSON(json['letterOfEngagement']),
|
|
46
47
|
'maxPenalties': !exists(json, 'maxPenalties') ? undefined : (json['maxPenalties'].map(CaseViolationPenaltyFromJSON)),
|
|
48
|
+
'ownerUserId': !exists(json, 'ownerUserId') ? undefined : json['ownerUserId'],
|
|
47
49
|
'paymentPlanTypeModel': !exists(json, 'paymentPlanTypeModel') ? undefined : PaymentPlanTypeModelReqFromJSON(json['paymentPlanTypeModel']),
|
|
48
50
|
'referralCode': !exists(json, 'referralCode') ? undefined : json['referralCode'],
|
|
49
51
|
'refundEligibility': !exists(json, 'refundEligibility') ? undefined : json['refundEligibility'],
|
|
@@ -79,12 +81,14 @@ export function CaseModelReqToJSON(value) {
|
|
|
79
81
|
'caseStatusDomain': CaseStatusDomainToJSON(value.caseStatusDomain),
|
|
80
82
|
'citation': CitationModelReqToJSON(value.citation),
|
|
81
83
|
'courtAppointmentDate': TimestampReqToJSON(value.courtAppointmentDate),
|
|
84
|
+
'defendantUserId': value.defendantUserId,
|
|
82
85
|
'hasLeftLawyerReview': value.hasLeftLawyerReview,
|
|
83
86
|
'isPointSystemState': value.isPointSystemState,
|
|
84
87
|
'lawfirmCaseDecision': LawfirmCaseModelReqToJSON(value.lawfirmCaseDecision),
|
|
85
88
|
'lawfirmCodeApplied': value.lawfirmCodeApplied,
|
|
86
89
|
'letterOfEngagement': LetterOfEngagementToJSON(value.letterOfEngagement),
|
|
87
90
|
'maxPenalties': value.maxPenalties === undefined ? undefined : (value.maxPenalties.map(CaseViolationPenaltyToJSON)),
|
|
91
|
+
'ownerUserId': value.ownerUserId,
|
|
88
92
|
'paymentPlanTypeModel': PaymentPlanTypeModelReqToJSON(value.paymentPlanTypeModel),
|
|
89
93
|
'referralCode': value.referralCode,
|
|
90
94
|
'refundEligibility': value.refundEligibility,
|
|
@@ -118,6 +118,12 @@ export interface CaseModelRes {
|
|
|
118
118
|
* @memberof CaseModelRes
|
|
119
119
|
*/
|
|
120
120
|
courtAppointmentDate?: TimestampRes;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {number}
|
|
124
|
+
* @memberof CaseModelRes
|
|
125
|
+
*/
|
|
126
|
+
defendantUserId?: number;
|
|
121
127
|
/**
|
|
122
128
|
*
|
|
123
129
|
* @type {boolean}
|
|
@@ -154,6 +160,12 @@ export interface CaseModelRes {
|
|
|
154
160
|
* @memberof CaseModelRes
|
|
155
161
|
*/
|
|
156
162
|
maxPenalties?: Array<CaseViolationPenalty>;
|
|
163
|
+
/**
|
|
164
|
+
*
|
|
165
|
+
* @type {number}
|
|
166
|
+
* @memberof CaseModelRes
|
|
167
|
+
*/
|
|
168
|
+
ownerUserId?: number;
|
|
157
169
|
/**
|
|
158
170
|
*
|
|
159
171
|
* @type {PaymentPlanTypeModelRes}
|
|
@@ -38,12 +38,14 @@ export function CaseModelResFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
38
|
'caseStatusDomain': !exists(json, 'caseStatusDomain') ? undefined : CaseStatusDomainFromJSON(json['caseStatusDomain']),
|
|
39
39
|
'citation': !exists(json, 'citation') ? undefined : CitationModelResFromJSON(json['citation']),
|
|
40
40
|
'courtAppointmentDate': !exists(json, 'courtAppointmentDate') ? undefined : TimestampResFromJSON(json['courtAppointmentDate']),
|
|
41
|
+
'defendantUserId': !exists(json, 'defendantUserId') ? undefined : json['defendantUserId'],
|
|
41
42
|
'hasLeftLawyerReview': !exists(json, 'hasLeftLawyerReview') ? undefined : json['hasLeftLawyerReview'],
|
|
42
43
|
'isPointSystemState': !exists(json, 'isPointSystemState') ? undefined : json['isPointSystemState'],
|
|
43
44
|
'lawfirmCaseDecision': !exists(json, 'lawfirmCaseDecision') ? undefined : LawfirmCaseModelResFromJSON(json['lawfirmCaseDecision']),
|
|
44
45
|
'lawfirmCodeApplied': !exists(json, 'lawfirmCodeApplied') ? undefined : json['lawfirmCodeApplied'],
|
|
45
46
|
'letterOfEngagement': !exists(json, 'letterOfEngagement') ? undefined : LetterOfEngagementFromJSON(json['letterOfEngagement']),
|
|
46
47
|
'maxPenalties': !exists(json, 'maxPenalties') ? undefined : (json['maxPenalties'].map(CaseViolationPenaltyFromJSON)),
|
|
48
|
+
'ownerUserId': !exists(json, 'ownerUserId') ? undefined : json['ownerUserId'],
|
|
47
49
|
'paymentPlanTypeModel': !exists(json, 'paymentPlanTypeModel') ? undefined : PaymentPlanTypeModelResFromJSON(json['paymentPlanTypeModel']),
|
|
48
50
|
'referralCode': !exists(json, 'referralCode') ? undefined : json['referralCode'],
|
|
49
51
|
'refundEligibility': !exists(json, 'refundEligibility') ? undefined : json['refundEligibility'],
|
|
@@ -79,12 +81,14 @@ export function CaseModelResToJSON(value) {
|
|
|
79
81
|
'caseStatusDomain': CaseStatusDomainToJSON(value.caseStatusDomain),
|
|
80
82
|
'citation': CitationModelResToJSON(value.citation),
|
|
81
83
|
'courtAppointmentDate': TimestampResToJSON(value.courtAppointmentDate),
|
|
84
|
+
'defendantUserId': value.defendantUserId,
|
|
82
85
|
'hasLeftLawyerReview': value.hasLeftLawyerReview,
|
|
83
86
|
'isPointSystemState': value.isPointSystemState,
|
|
84
87
|
'lawfirmCaseDecision': LawfirmCaseModelResToJSON(value.lawfirmCaseDecision),
|
|
85
88
|
'lawfirmCodeApplied': value.lawfirmCodeApplied,
|
|
86
89
|
'letterOfEngagement': LetterOfEngagementToJSON(value.letterOfEngagement),
|
|
87
90
|
'maxPenalties': value.maxPenalties === undefined ? undefined : (value.maxPenalties.map(CaseViolationPenaltyToJSON)),
|
|
91
|
+
'ownerUserId': value.ownerUserId,
|
|
88
92
|
'paymentPlanTypeModel': PaymentPlanTypeModelResToJSON(value.paymentPlanTypeModel),
|
|
89
93
|
'referralCode': value.referralCode,
|
|
90
94
|
'refundEligibility': value.refundEligibility,
|
|
@@ -8608,12 +8608,16 @@ export interface components {
|
|
|
8608
8608
|
caseStatusDomain?: components["schemas"]["CaseStatusDomain"];
|
|
8609
8609
|
citation?: components["schemas"]["CitationModel"];
|
|
8610
8610
|
courtAppointmentDate?: components["schemas"]["Timestamp"];
|
|
8611
|
+
/** Format: int64 */
|
|
8612
|
+
defendantUserId?: number;
|
|
8611
8613
|
hasLeftLawyerReview?: boolean;
|
|
8612
8614
|
isPointSystemState?: boolean;
|
|
8613
8615
|
lawfirmCaseDecision?: components["schemas"]["LawfirmCaseModel"];
|
|
8614
8616
|
lawfirmCodeApplied?: boolean;
|
|
8615
8617
|
letterOfEngagement?: components["schemas"]["LetterOfEngagement"];
|
|
8616
8618
|
maxPenalties?: components["schemas"]["CaseViolationPenalty"][];
|
|
8619
|
+
/** Format: int64 */
|
|
8620
|
+
ownerUserId?: number;
|
|
8617
8621
|
paymentPlanTypeModel?: components["schemas"]["PaymentPlanTypeModel"];
|
|
8618
8622
|
referralCode?: string;
|
|
8619
8623
|
/** @enum {string} */
|
|
@@ -8648,12 +8652,16 @@ export interface components {
|
|
|
8648
8652
|
caseStatusDomain?: components["schemas"]["CaseStatusDomain"];
|
|
8649
8653
|
citation?: components["schemas"]["CitationModelReq"];
|
|
8650
8654
|
courtAppointmentDate?: components["schemas"]["TimestampReq"];
|
|
8655
|
+
/** Format: int64 */
|
|
8656
|
+
defendantUserId?: number;
|
|
8651
8657
|
hasLeftLawyerReview?: boolean;
|
|
8652
8658
|
isPointSystemState?: boolean;
|
|
8653
8659
|
lawfirmCaseDecision?: components["schemas"]["LawfirmCaseModelReq"];
|
|
8654
8660
|
lawfirmCodeApplied?: boolean;
|
|
8655
8661
|
letterOfEngagement?: components["schemas"]["LetterOfEngagement"];
|
|
8656
8662
|
maxPenalties?: components["schemas"]["CaseViolationPenalty"][];
|
|
8663
|
+
/** Format: int64 */
|
|
8664
|
+
ownerUserId?: number;
|
|
8657
8665
|
paymentPlanTypeModel?: components["schemas"]["PaymentPlanTypeModelReq"];
|
|
8658
8666
|
referralCode?: string;
|
|
8659
8667
|
/** @enum {string} */
|
|
@@ -8688,12 +8696,16 @@ export interface components {
|
|
|
8688
8696
|
caseStatusDomain?: components["schemas"]["CaseStatusDomain"];
|
|
8689
8697
|
citation?: components["schemas"]["CitationModelRes"];
|
|
8690
8698
|
courtAppointmentDate?: components["schemas"]["TimestampRes"];
|
|
8699
|
+
/** Format: int64 */
|
|
8700
|
+
defendantUserId?: number;
|
|
8691
8701
|
hasLeftLawyerReview?: boolean;
|
|
8692
8702
|
isPointSystemState?: boolean;
|
|
8693
8703
|
lawfirmCaseDecision?: components["schemas"]["LawfirmCaseModelRes"];
|
|
8694
8704
|
lawfirmCodeApplied?: boolean;
|
|
8695
8705
|
letterOfEngagement?: components["schemas"]["LetterOfEngagement"];
|
|
8696
8706
|
maxPenalties?: components["schemas"]["CaseViolationPenalty"][];
|
|
8707
|
+
/** Format: int64 */
|
|
8708
|
+
ownerUserId?: number;
|
|
8697
8709
|
paymentPlanTypeModel?: components["schemas"]["PaymentPlanTypeModelRes"];
|
|
8698
8710
|
referralCode?: string;
|
|
8699
8711
|
/** @enum {string} */
|