UNPKG

@qite/tide-client

Version:
18 lines (17 loc) 489 B
import { AgentDossierAllotmentItem } from "./agent-dossier-allotment-item"; export interface AgentDossierItem { id: number; dossierNumber: string; dossierStartDate: Date; dossierEndDate: Date; dateCreated: Date; officeId: number; isActive: boolean; entryStatus: number; customEntryStatusId: number | null; productCodes: string[]; agentAllotments: AgentDossierAllotmentItem[]; agentAllotmentStartDate: Date | null; paxNames: string[]; productTagIds: number[]; }