UNPKG

cecon-interfaces

Version:
18 lines (17 loc) 484 B
import { INatipayToken } from '../interfaces/i-token'; export declare class NatipayTokenEntity implements INatipayToken { appId: string; createdAt: Date; deviceId: string | null; expiresAt: Date; id: string; ipAddress: string | null; isRevoked: boolean; refreshToken: string; revokedAt: Date | null; sandbox: boolean; updatedAt: Date; userAgent: string | null; userId: string; constructor(data?: Partial<NatipayTokenEntity>); }