howsmydriving-nyc
Version:
NYC region plug-in for @HowsMyDrivingWA.
28 lines (27 loc) • 1.15 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var VehicleLookupData = /** @class */ (function () {
function VehicleLookupData(params) {
this.camera_streak_data = params['camera_streak_data'];
this.fines = params['fines'];
this.plate = params['plate'];
this.plate_types = params['plate_types'];
this.previous_lookup_date = params['previous_lookup_date'];
this.previous_violation_count = params['previous_violation_count'];
this.state = params['state'];
this.times_queried = params['times_queried'];
this.violations = params['violations'];
this.violations_count = params['violations_count'];
}
return VehicleLookupData;
}());
exports.VehicleLookupData = VehicleLookupData;
var VehicleLookupResponse = /** @class */ (function () {
function VehicleLookupResponse(params) {
this.vehicle = params['vehicle'];
this.error_string = params['error_string'];
this.successful_lookup = params['successful_lookup'];
}
return VehicleLookupResponse;
}());
exports.VehicleLookupResponse = VehicleLookupResponse;