using FindAndDrive.Domain.Models.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FindAndDrive.Domain.Models.Gateways.Experian { public class ExperianGatewayFullResponse { public bool Transaction_Completed { get; set; } public object Ret_Data { get; set; } public string Err_Code { get; set; } public string Err_String { get; set; } } public class ExperianGatewayResponse { public string ID_Number { get; set; } public string Name { get; set; } public string Surname { get; set; } public decimal Expenses { get; set; } public decimal Gross_Income_Amount { get; set; } public decimal Cal_Gross_Income_Amount { get; set; } public decimal Net_Income_Amount { get; set; } public decimal Cal_Net_Income_Amount { get; set; } public decimal GMIP_Value { get; set; } public PredictorConfidence GMIP_Confidence_Level { get; set; } public string GMIP_Band { get; set; } public decimal Bureau_Expenses { get; set; } public decimal Calc_Living_Expenses { get; set; } public decimal Calc_Expense { get; set; } public decimal Disposable_Income { get; set; } public string Enq_Id { get; set; } } }