scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
19 lines (18 loc) • 482 B
TypeScript
import { IToken } from '../interfaces';
export declare class TokenEntity implements IToken {
active: boolean;
companyId: string | null;
companyName: string;
containerId: string | null;
createdAt: number;
customerId: string | null;
description: string;
expiresAt: number;
id: string;
lastAccessAt: number;
name: string;
partnerId: string | null;
sandbox: boolean;
value: string;
constructor(data?: Partial<TokenEntity>);
}