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

12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
  1. using CustomerOnlineV2.Common.Models.ReceiverModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CustomerOnlineV2.Common.Models.TransactionModel
  8. {
  9. public class TrustPaymentRequest: ReceiverInformationModel
  10. {
  11. public string? sitereference { get; set; }
  12. public string? stprofile { get; set; }
  13. public string? currencyiso3a { get; set; }
  14. public string? mainamount { get; set; }
  15. public string? version { get; set; }
  16. public string? request_source { get; set; }
  17. public string? orderreference { get; set; }
  18. public string? billingfirstname { get; set; }
  19. public string? billinglastname { get; set; }
  20. public string? billingstreet { get; set; }
  21. public string? customerpremise { get; set; }
  22. public string? customerstreet { get; set; }
  23. public string? billingpostcode { get; set; }
  24. public string? customerpostcode { get; set; }
  25. public string? billingtown { get; set; }
  26. public string? customertown { get; set; }
  27. public string? billingcountryiso2a { get; set; }
  28. public string? customercountryiso2a { get; set; }
  29. public string? custobillingtelephonemertown { get; set; }
  30. public string? customertelephone { get; set; }
  31. public string? billingtelephone { get; set; }
  32. public string? billingemail { get; set; }
  33. public string? customeremail { get; set; }
  34. public string? successfulurlredirect { get; set; }
  35. public string? declinedurlredirect { get; set; }
  36. public string? sitesecuritytimestamp { get; set; }
  37. public string? sitesecurity { get; set; }
  38. public string? ruleidentifier { get; set; }
  39. public string? merchantemail { get; set; }
  40. public string? securityCode { get; set; }
  41. public string? transactionreference { get; set; }
  42. public string? errorcode { get; set; }
  43. public string? createddate { get; set; }
  44. public string? tranId { get; set; }
  45. public string? settlestatus { get; set; }
  46. public string? paymenttypedescription { get; set; }
  47. public string? requestreference { get; set; }
  48. public string? responsesitesecurity { get; set; }
  49. public string? title { get; set; }
  50. public string? token { get; set; }
  51. }
  52. }