Files
super-app/network/payloads/request/QuoteOfferRequest.ts
Prajjaval Verma 4cafc22484 NTP-37712 | UW after Quote Feature (#15077)
Co-authored-by: Kshitij Pramod Ghongadi <kshitij.pramod@navi.com>
2025-02-26 14:45:15 +00:00

39 lines
705 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;
source?: string | null;
pageName?: 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;
}