You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

46 lines
1.4 KiB

using System;
namespace DealerSelection.Api.Infrastructure.Mulesoft;
public class MulesoftCustomerInfoDto
{
public int BuId { get; set; }
public string BuName { get; set; }
public int RecordId { get; set; }
public string BookingId { get; set; }
public string CustomerName { get; set; }
public string MobileNumber { get; set; }
public string ModelCode { get; set; }
public string ModelName { get; set; }
public string ColorCode { get; set; }
public string DealerCode { get; set; }
public string DealerName { get; set; }
public bool IsRegisterInterestRequest { get; set; }
public string PinCode { get; set; }
public string UtmCustomDetails1 { get; set; }
public string UtmCustomDetails2 { get; set; }
public string Status { get; set; }
public string CCTransactionId { get; set; }
public string ReceiptId { get; set; }
public string AmountPaid { get; set; }
public string ReferralUrl { get; set; }
public bool IsWhatsappOptIn { get; set; }
public int LeadTransferred { get; set; }
public string CustomerLat { get; set; }
public string CustomerLong { get; set; }
}
public class LeadData
{
public string Lead_transferred { get; set; }
public string Lead_status { get; set; }
public string Opportunity_id { get; set; }
public string Prospect_id { get; set; }
public string ApiResponse { get; set; }
public string LeadResponseStatus { get; set; }
}