UNPKG

cecon-interfaces

Version:
21 lines (20 loc) 583 B
import { IPayioToken } from '../interfaces/i-token'; export declare class PayioTokenEntity implements IPayioToken { appId: string; companyId: string | null; createdAt: Date; /** @deprecated use machineUid instead */ deviceId: string | null; expiresAt: Date; id: string; ipAddress: string | null; isRevoked: boolean; machineUid: string | null; refreshToken: string; revokedAt: Date | null; sandbox: boolean; updatedAt: Date; userAgent: string | null; userId: string; constructor(data?: Partial<PayioTokenEntity>); }