Files
super-app/network/payloads/request/QuoteOfferRequest.ts
Kshitij Pramod Ghongadi 557e0b8d55 TP-79772 | RN ScreenActionHandler Code cleanup (#12629)
Co-authored-by: Prajjaval Verma <prajjaval.verma@navi.com>
2024-09-20 10:01:18 +00:00

36 lines
618 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;
}
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;
}