scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
17 lines (16 loc) • 369 B
TypeScript
export interface IToken {
active: boolean;
createdAt: number;
expiresAt: number;
id: string;
name: string;
companyId: string | null;
companyName: string;
partnerId: string | null;
customerId: string | null;
containerId: string | null;
sandbox: boolean;
lastAccessAt: number;
description: string;
value: string;
}