zklib-ts
Version:
Unofficial zkteco library allows Node.js developers to easily interface with ZK BioMetric Fingerprint Attendance Devices
18 lines (17 loc) • 473 B
TypeScript
/**
* Represents an Attendance Records
*/
export declare class Attendance {
/** Internal serial number for the user */
sn: number;
/** User ID/Pin stored as a string */
user_id: string;
/** Verification type */
type?: number;
/** Time of the attendance event */
record_time: Date;
/** Verify state */
state?: number;
ip?: string;
constructor(sn: number, user_id: string, type: number, record_time: Date, state?: number);
}