@qite/tide-client
Version:
Frontend client for Tide
12 lines (11 loc) • 319 B
TypeScript
import { AgentDossierAllotment } from "./agent-dossier-allotment";
export interface AgentDossier {
id: number;
dossierNumber: string;
dateCreated: Date;
currencyCode: string;
agencyContactPerson: string;
agentId: number;
paxMainBookerName: string;
agentAllotments: AgentDossierAllotment[];
}