cecon-interfaces
Version:
Interfaces de Projetos Cecon
16 lines (15 loc) • 342 B
TypeScript
export interface 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;
}