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.
58 lines
2.3 KiB
58 lines
2.3 KiB
|
|
namespace DealerSelection.Api.Models;
|
|
|
|
public class MulesoftCustomerInfo
|
|
{
|
|
public MulesoftCustomerInfo(int buId, string buName, int recordId, string bookingId, string customerName, string mobileNumber, string modelCode, string modelName, string colorCode, string dealerCode, string dealerName, bool isRegisterInterestRequest, string pinCode, string utmCustomDetails1, string utmCustomDetails2, string status, string cCTransactionId, string receiptId, string amountPaid, string referralUrl, bool isWhatsappOptIn, int leadTransferred, string customerLat, string customerLong)
|
|
{
|
|
BuId = buId;
|
|
BuName = buName;
|
|
RecordId = recordId;
|
|
BookingId = bookingId;
|
|
CustomerName = customerName;
|
|
MobileNumber = mobileNumber;
|
|
ModelCode = modelCode;
|
|
ModelName = modelName;
|
|
ColorCode = colorCode;
|
|
DealerCode = dealerCode;
|
|
DealerName = dealerName;
|
|
IsRegisterInterestRequest = isRegisterInterestRequest;
|
|
PinCode = pinCode;
|
|
UtmCustomDetails1 = utmCustomDetails1;
|
|
UtmCustomDetails2 = utmCustomDetails2;
|
|
Status = status;
|
|
CCTransactionId = cCTransactionId;
|
|
ReceiptId = receiptId;
|
|
AmountPaid = amountPaid;
|
|
ReferralUrl = referralUrl;
|
|
IsWhatsappOptIn = isWhatsappOptIn;
|
|
LeadTransferred = leadTransferred;
|
|
CustomerLat = customerLat;
|
|
CustomerLong = customerLong;
|
|
}
|
|
|
|
public int BuId { get; }
|
|
public string BuName { get; }
|
|
public int RecordId { get; }
|
|
public string BookingId { get; }
|
|
public string CustomerName { get; }
|
|
public string MobileNumber { get; }
|
|
public string ModelCode { get; }
|
|
public string ModelName { get; }
|
|
public string ColorCode { get; }
|
|
public string DealerCode { get; }
|
|
public string DealerName { get; }
|
|
public bool IsRegisterInterestRequest { get; }
|
|
public string PinCode { get; }
|
|
public string UtmCustomDetails1 { get; }
|
|
public string UtmCustomDetails2 { get; }
|
|
public string Status { get; }
|
|
public string CCTransactionId { get; }
|
|
public string ReceiptId { get; }
|
|
public string AmountPaid { get; }
|
|
public string ReferralUrl { get; }
|
|
public bool IsWhatsappOptIn { get; }
|
|
public int LeadTransferred { get; }
|
|
public string CustomerLat { get; }
|
|
public string CustomerLong { get; }
|
|
}
|