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.
 
 
 
 
 

56 lines
2.4 KiB

using CustomerOnlineV2.Common.Models.ReceiverModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomerOnlineV2.Common.Models.TransactionModel
{
public class TrustPaymentRequest: ReceiverInformationModel
{
public string? sitereference { get; set; }
public string? stprofile { get; set; }
public string? currencyiso3a { get; set; }
public string? mainamount { get; set; }
public string? version { get; set; }
public string? request_source { get; set; }
public string? orderreference { get; set; }
public string? billingfirstname { get; set; }
public string? billinglastname { get; set; }
public string? billingstreet { get; set; }
public string? customerpremise { get; set; }
public string? customerstreet { get; set; }
public string? billingpostcode { get; set; }
public string? customerpostcode { get; set; }
public string? billingtown { get; set; }
public string? customertown { get; set; }
public string? billingcountryiso2a { get; set; }
public string? customercountryiso2a { get; set; }
public string? custobillingtelephonemertown { get; set; }
public string? customertelephone { get; set; }
public string? billingtelephone { get; set; }
public string? billingemail { get; set; }
public string? customeremail { get; set; }
public string? successfulurlredirect { get; set; }
public string? declinedurlredirect { get; set; }
public string? sitesecuritytimestamp { get; set; }
public string? sitesecurity { get; set; }
public string? ruleidentifier { get; set; }
public string? merchantemail { get; set; }
public string? securityCode { get; set; }
public string? transactionreference { get; set; }
public string? errorcode { get; set; }
public string? createddate { get; set; }
public string? tranId { get; set; }
public string? settlestatus { get; set; }
public string? paymenttypedescription { get; set; }
public string? requestreference { get; set; }
public string? responsesitesecurity { get; set; }
public string? title { get; set; }
public string? token { get; set; }
}
}