@otr-app/shared-backend-generated-client 2.2.138 → 2.2.139
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.
|
@@ -11,16 +11,9 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface GeoRatesRequest {
|
|
14
|
-
"cdlStatus"?: GeoRatesRequest.CdlStatusEnum;
|
|
15
14
|
"courtDate"?: string;
|
|
16
15
|
"courtId"?: string;
|
|
16
|
+
"isCDL"?: boolean;
|
|
17
17
|
"violationCount"?: number;
|
|
18
18
|
"violations"?: Array<models.ViolationInputRequest>;
|
|
19
19
|
}
|
|
20
|
-
export declare namespace GeoRatesRequest {
|
|
21
|
-
enum CdlStatusEnum {
|
|
22
|
-
CDLINCOMMERCIALVEHICLE,
|
|
23
|
-
CDLINPERSONALVEHICLE,
|
|
24
|
-
NOCDL
|
|
25
|
-
}
|
|
26
|
-
}
|
|
@@ -11,13 +11,3 @@
|
|
|
11
11
|
* Do not edit the class manually.
|
|
12
12
|
*/
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.GeoRatesRequest = void 0;
|
|
15
|
-
var GeoRatesRequest;
|
|
16
|
-
(function (GeoRatesRequest) {
|
|
17
|
-
var CdlStatusEnum;
|
|
18
|
-
(function (CdlStatusEnum) {
|
|
19
|
-
CdlStatusEnum[CdlStatusEnum["CDLINCOMMERCIALVEHICLE"] = 'CDL_IN_COMMERCIAL_VEHICLE'] = "CDLINCOMMERCIALVEHICLE";
|
|
20
|
-
CdlStatusEnum[CdlStatusEnum["CDLINPERSONALVEHICLE"] = 'CDL_IN_PERSONAL_VEHICLE'] = "CDLINPERSONALVEHICLE";
|
|
21
|
-
CdlStatusEnum[CdlStatusEnum["NOCDL"] = 'NO_CDL'] = "NOCDL";
|
|
22
|
-
})(CdlStatusEnum = GeoRatesRequest.CdlStatusEnum || (GeoRatesRequest.CdlStatusEnum = {}));
|
|
23
|
-
})(GeoRatesRequest = exports.GeoRatesRequest || (exports.GeoRatesRequest = {}));
|