UNPKG

cecon-interfaces

Version:
23 lines (22 loc) 543 B
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; }