@regulaforensics/document-reader
Version:
This is an npm module for Regula Document Reader SDK. It allows you to read various kinds of identification documents using your phone's camera.
16 lines (12 loc) • 387 B
JavaScript
export class RFIDParams {
paIgnoreNotificationCodes
constructor(options) {
this.paIgnoreNotificationCodes = options?.paIgnoreNotificationCodes;
}
static fromJson(jsonObject) {
if (jsonObject == null) return null;
return new RFIDParams({
paIgnoreNotificationCodes: jsonObject["paIgnoreNotificationCodes"]
});
}
}