/* * Copyright 2020-2021 AskChristee, LLC. All rights reserved. */ import {TResponseCoverPage, TResponseMeta, TVacationPdf} from '.'; export type TVacationCalcV2 = { "rate_display": string, "ratio_string": string, "state_sel": string, "report_type": string, "fumess": string, "brow_head": string, "brow_head_2": string, "ratios_results": string, "area": string, "disp_target_piti": string, "disp_sp": string, "disp_ma": string, "ltv": number, "disp_total_mtge": string, "disp_d_payment": string, "disp_totalcc": string, "disp_dol_cred": string, "disp_dol_lend": string, "disp_r_cash": string, "disp_t_cash": string, "disp_ex_cash": string, "disp_t_piti": string, "disp_pi": string, "disp_mi": string, "disp_pt": string, "disp_ins": string, "disp_condo": string, "disp_net_mort_pay": string, "disp_tot_duct": string, "disp_tax_saving": string, "disp_cal_br": string, "cal_br": string, "cal_fr": string, "t_piti": number, "res_pi": string, "res_mi": string, "res_pt": string, "res_ins": string, "res_condo": string, "results$": string, "loan_mess": string, "m_note": string, "m_note1": string, "m_note2": string, "m_note3": string, "m_note4": string, "m_note5": string } export type TVacationCloseV2 = { "sp": number, "area": string, "state_sel": string, "current_date": string, "est_close": string, "first_payment": string, "app_fee": number, "home_ins": number, "cred_rpt": number, "flood_cert": number, "pest_ins": number, "underfee": number, "loan_org$": string, "abs_fee": number, "clo_fee": number, "ins_tit": string, "survey": number, "int_int": "1.88", "days_interest": number, "haz_insur$": string, "escrow_tax": string, "clo_tax": string, "net_tax": string, "transfer": string, "docstamp": string, "mtgetax": string, "clerk_office": number, "totalcc": number, "s_credit$": string, "l_credit$": string, "total_cred": number, "d_payment": number, "r_cash": number, "tax_period$": string, "p_tax_adj$": string, "tax_escrow_date": string, "tax_escrow": number } export type TVacationResultsV2 = { aCalc1?: TVacationCalcV2, aCalc2?: TVacationCalcV2, aCalc3?: TVacationCalcV2, aCalc4?: TVacationCalcV2, bCalc1?: TVacationCalcV2, bCalc2?: TVacationCalcV2, bCalc3?: TVacationCalcV2, bCalc4?: TVacationCalcV2, aClose1?: TVacationCloseV2, aClose2?: TVacationCloseV2, aClose3?: TVacationCloseV2, aClose4?: TVacationCloseV2, bClose1?: TVacationCloseV2, bClose2?: TVacationCloseV2, bClose3?: TVacationCloseV2, bClose4?: TVacationCloseV2, aPdf1?: TVacationPdf, aPdf2?: TVacationPdf, aPdf3?: TVacationPdf, aPdf4?: TVacationPdf, } export type TVacationResponseV2 = { coverPage: TResponseCoverPage, meta: TResponseMeta, results: TVacationResultsV2 };