@otr-app/shared-backend-generated-client 2.4.38 → 2.4.40
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/geoRatesRequest.ts +2 -0
- package/dist/typescript/model/GeoRatesRequest.d.ts +2 -0
- package/dist/typescript/model/GeoRatesRequest.ts +2 -0
- package/dist/typescript-fetch/models/GeoRatesRequest.d.ts +12 -0
- package/dist/typescript-fetch/models/GeoRatesRequest.js +4 -0
- package/dist/typescript-fetch/models/GeoRatesRequest.ts +16 -0
- package/package.json +1 -1
|
@@ -15,8 +15,10 @@ import { ViolationInputRequest } from './violationInputRequest';
|
|
|
15
15
|
export interface GeoRatesRequest {
|
|
16
16
|
courtDate?: string;
|
|
17
17
|
courtId?: string;
|
|
18
|
+
isAccidentCitation?: boolean;
|
|
18
19
|
isCDL?: boolean;
|
|
19
20
|
isFTA?: boolean;
|
|
21
|
+
isPaymentPlan?: boolean;
|
|
20
22
|
legalServiceId?: number;
|
|
21
23
|
violationCount?: number;
|
|
22
24
|
violations?: Array<ViolationInputRequest>;
|
|
@@ -13,8 +13,10 @@ import * as models from './models';
|
|
|
13
13
|
export interface GeoRatesRequest {
|
|
14
14
|
"courtDate"?: string;
|
|
15
15
|
"courtId"?: string;
|
|
16
|
+
"isAccidentCitation"?: boolean;
|
|
16
17
|
"isCDL"?: boolean;
|
|
17
18
|
"isFTA"?: boolean;
|
|
19
|
+
"isPaymentPlan"?: boolean;
|
|
18
20
|
"legalServiceId"?: number;
|
|
19
21
|
"violationCount"?: number;
|
|
20
22
|
"violations"?: Array<models.ViolationInputRequest>;
|
|
@@ -15,8 +15,10 @@ import * as models from './models';
|
|
|
15
15
|
export interface GeoRatesRequest {
|
|
16
16
|
"courtDate"?: string;
|
|
17
17
|
"courtId"?: string;
|
|
18
|
+
"isAccidentCitation"?: boolean;
|
|
18
19
|
"isCDL"?: boolean;
|
|
19
20
|
"isFTA"?: boolean;
|
|
21
|
+
"isPaymentPlan"?: boolean;
|
|
20
22
|
"legalServiceId"?: number;
|
|
21
23
|
"violationCount"?: number;
|
|
22
24
|
"violations"?: Array<models.ViolationInputRequest>;
|
|
@@ -28,6 +28,12 @@ export interface GeoRatesRequest {
|
|
|
28
28
|
* @memberof GeoRatesRequest
|
|
29
29
|
*/
|
|
30
30
|
courtId?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {boolean}
|
|
34
|
+
* @memberof GeoRatesRequest
|
|
35
|
+
*/
|
|
36
|
+
isAccidentCitation?: boolean;
|
|
31
37
|
/**
|
|
32
38
|
*
|
|
33
39
|
* @type {boolean}
|
|
@@ -40,6 +46,12 @@ export interface GeoRatesRequest {
|
|
|
40
46
|
* @memberof GeoRatesRequest
|
|
41
47
|
*/
|
|
42
48
|
isFTA?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {boolean}
|
|
52
|
+
* @memberof GeoRatesRequest
|
|
53
|
+
*/
|
|
54
|
+
isPaymentPlan?: boolean;
|
|
43
55
|
/**
|
|
44
56
|
*
|
|
45
57
|
* @type {number}
|
|
@@ -23,8 +23,10 @@ export function GeoRatesRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
return {
|
|
24
24
|
'courtDate': !exists(json, 'courtDate') ? undefined : (new Date(json['courtDate'])),
|
|
25
25
|
'courtId': !exists(json, 'courtId') ? undefined : json['courtId'],
|
|
26
|
+
'isAccidentCitation': !exists(json, 'isAccidentCitation') ? undefined : json['isAccidentCitation'],
|
|
26
27
|
'isCDL': !exists(json, 'isCDL') ? undefined : json['isCDL'],
|
|
27
28
|
'isFTA': !exists(json, 'isFTA') ? undefined : json['isFTA'],
|
|
29
|
+
'isPaymentPlan': !exists(json, 'isPaymentPlan') ? undefined : json['isPaymentPlan'],
|
|
28
30
|
'legalServiceId': !exists(json, 'legalServiceId') ? undefined : json['legalServiceId'],
|
|
29
31
|
'violationCount': !exists(json, 'violationCount') ? undefined : json['violationCount'],
|
|
30
32
|
'violations': !exists(json, 'violations') ? undefined : (json['violations'].map(ViolationInputRequestFromJSON)),
|
|
@@ -40,8 +42,10 @@ export function GeoRatesRequestToJSON(value) {
|
|
|
40
42
|
return {
|
|
41
43
|
'courtDate': value.courtDate === undefined ? undefined : (value.courtDate.toISOString()),
|
|
42
44
|
'courtId': value.courtId,
|
|
45
|
+
'isAccidentCitation': value.isAccidentCitation,
|
|
43
46
|
'isCDL': value.isCDL,
|
|
44
47
|
'isFTA': value.isFTA,
|
|
48
|
+
'isPaymentPlan': value.isPaymentPlan,
|
|
45
49
|
'legalServiceId': value.legalServiceId,
|
|
46
50
|
'violationCount': value.violationCount,
|
|
47
51
|
'violations': value.violations === undefined ? undefined : (value.violations.map(ViolationInputRequestToJSON)),
|
|
@@ -38,6 +38,12 @@ export interface GeoRatesRequest {
|
|
|
38
38
|
* @memberof GeoRatesRequest
|
|
39
39
|
*/
|
|
40
40
|
courtId?: string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof GeoRatesRequest
|
|
45
|
+
*/
|
|
46
|
+
isAccidentCitation?: boolean;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {boolean}
|
|
@@ -50,6 +56,12 @@ export interface GeoRatesRequest {
|
|
|
50
56
|
* @memberof GeoRatesRequest
|
|
51
57
|
*/
|
|
52
58
|
isFTA?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof GeoRatesRequest
|
|
63
|
+
*/
|
|
64
|
+
isPaymentPlan?: boolean;
|
|
53
65
|
/**
|
|
54
66
|
*
|
|
55
67
|
* @type {number}
|
|
@@ -82,8 +94,10 @@ export function GeoRatesRequestFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
82
94
|
|
|
83
95
|
'courtDate': !exists(json, 'courtDate') ? undefined : (new Date(json['courtDate'])),
|
|
84
96
|
'courtId': !exists(json, 'courtId') ? undefined : json['courtId'],
|
|
97
|
+
'isAccidentCitation': !exists(json, 'isAccidentCitation') ? undefined : json['isAccidentCitation'],
|
|
85
98
|
'isCDL': !exists(json, 'isCDL') ? undefined : json['isCDL'],
|
|
86
99
|
'isFTA': !exists(json, 'isFTA') ? undefined : json['isFTA'],
|
|
100
|
+
'isPaymentPlan': !exists(json, 'isPaymentPlan') ? undefined : json['isPaymentPlan'],
|
|
87
101
|
'legalServiceId': !exists(json, 'legalServiceId') ? undefined : json['legalServiceId'],
|
|
88
102
|
'violationCount': !exists(json, 'violationCount') ? undefined : json['violationCount'],
|
|
89
103
|
'violations': !exists(json, 'violations') ? undefined : ((json['violations'] as Array<any>).map(ViolationInputRequestFromJSON)),
|
|
@@ -101,8 +115,10 @@ export function GeoRatesRequestToJSON(value?: GeoRatesRequest | null): any {
|
|
|
101
115
|
|
|
102
116
|
'courtDate': value.courtDate === undefined ? undefined : (value.courtDate.toISOString()),
|
|
103
117
|
'courtId': value.courtId,
|
|
118
|
+
'isAccidentCitation': value.isAccidentCitation,
|
|
104
119
|
'isCDL': value.isCDL,
|
|
105
120
|
'isFTA': value.isFTA,
|
|
121
|
+
'isPaymentPlan': value.isPaymentPlan,
|
|
106
122
|
'legalServiceId': value.legalServiceId,
|
|
107
123
|
'violationCount': value.violationCount,
|
|
108
124
|
'violations': value.violations === undefined ? undefined : ((value.violations as Array<any>).map(ViolationInputRequestToJSON)),
|