@scandit/web-datacapture-id
Version:
Scandit Data Capture SDK for the Web
12 lines (11 loc) • 565 B
TypeScript
import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
import { DrivingLicenseCategory } from "./DrivingLicenseCategory";
import type { DrivingLicenseDetailsJSON } from "../SerializedTypes";
export declare class DrivingLicenseDetails implements Serializable<DrivingLicenseDetailsJSON> {
private json;
get drivingLicenseCategories(): DrivingLicenseCategory[];
get restrictions(): string | null;
get endorsements(): string | null;
private static fromJSON;
toJSONObject(): DrivingLicenseDetailsJSON;
}