cecon-interfaces
Version:
Interfaces de Projetos Cecon
21 lines (20 loc) • 583 B
TypeScript
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>);
}