UNPKG

@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.

22 lines (17 loc) 509 B
export class RFIDParams { paIgnoreNotificationCodes constructor(options) { this.paIgnoreNotificationCodes = options?.paIgnoreNotificationCodes; } static fromJson(jsonObject) { if (jsonObject == null) return null; return new RFIDParams({ paIgnoreNotificationCodes: jsonObject["paIgnoreNotificationCodes"] }); } toJson() { return { "paIgnoreNotificationCodes": this.paIgnoreNotificationCodes, } } }