Files
super-app/network/payloads/request/QuoteOfferRequest.ts
Kshitij Pramod Ghongadi 6d8f1b2933 TP-74032 | Journey Revamp Phase 1 | API Endpoint Changes (#11865)
Co-authored-by: Prajjaval Verma <prajjaval.verma@navi.com>
2024-09-24 17:36:55 +00:00

37 lines
651 B
TypeScript

interface QuoteOfferRequest {
sumInsured?: string;
term?: Term;
pinCode?: string;
asset?: Asset[];
cover?: Cover[];
quoteId?: string | null;
buyerName?: string;
preQuoteId?: string | null;
policyToBeCopied?: string;
applicationType?: string;
applicationId?: string | null;
}
interface Term {
unit?: string;
value?: string;
}
interface Asset {
age?: string;
proposerRelationShip?: string;
existingDisease?: boolean;
name?: string;
tagName?: string;
dob?: string;
id?: string;
gender?: string;
assetId?: string;
}
interface Cover {
coverId?: string;
coverVersion?: string;
selectedOption?: string;
}