@qite/tide-client
Version:
Frontend client for Tide
18 lines (17 loc) • 489 B
TypeScript
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[];
}