cecon-interfaces
Version:
Interfaces de Projetos Cecon
19 lines (18 loc) • 447 B
TypeScript
export interface IPayioToken {
appId: string;
companyId: string | null;
createdAt: Date;
/** @deprecated use machineUid instead */
deviceId: string | null;
machineUid: 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;
}