cecon-interfaces
Version:
Interfaces de Projetos Cecon
23 lines (22 loc) • 543 B
TypeScript
import { EDocType } from '../../general';
import { InviteStatusEnum } from '../enums';
export interface IInvite {
companyId: string | null;
companyName: string | null;
containerId: string | null;
customerId: string | null;
createdAt: Date;
doc: string;
docType: EDocType;
email: string;
expireAt: Date;
expired: boolean;
id: string;
internationalCode: string;
name: string;
phoneNumber: string;
photoUrl: string;
status: InviteStatusEnum;
uid: string;
updatedAt: Date;
}