Co-authored-by: Prajjaval Verma <prajjaval.verma@navi.com> Co-authored-by: Balrambhai Sharma <sharma.balrambhai@navi.com>
11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
interface MigrationBenefitScreenRequestData {
|
|
inputMap?: MigrationBenefitScreenRequest | null;
|
|
screenName?: string | null;
|
|
}
|
|
interface MigrationBenefitScreenRequest {
|
|
planId?: string | null;
|
|
previousPlanId?: string | null;
|
|
preQuoteId?: string | null;
|
|
planType?: string | null;
|
|
}
|