@qite/tide-client
Version:
Frontend client for Tide
20 lines (19 loc) • 621 B
TypeScript
import { AgentDossierAllotment } from "./agent-dossier-allotment";
import { AgentDossierEntryLine } from "./agent-dossier-entry-line";
import { AgentDossierTraveler } from "./agent-dossier-traveler";
export interface AgentDossier {
id: number;
dossierNumber: string;
entryStatus: number;
dateCreated: Date;
currencyCode: string;
sellingPrice: number;
optionDate: Date;
agencyContactPerson: string;
agentId: number;
paxMainBookerName: string;
productTagIds: number[];
agentAllotments: AgentDossierAllotment[];
agentEntryLines: AgentDossierEntryLine[];
agentTravelers: AgentDossierTraveler[];
}