blob: 3b02536c803033ec90bbe931af41f063b5b2dc89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
using System;
using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api
{
public class VippsPaymentInitiationCallbackResponse
{
[JsonPropertyName("merchantSerialNumber")]
public string MerchantSerialNumber { get; set; }
[JsonPropertyName("orderId")]
public string OrderId { get; set; }
// [JsonPropertyName("shippingDetails")]
// public TShippingDetails? ShippingDetails { get; set; }
[JsonPropertyName("transactionInfo")]
public TTransactionInfo TransactionInfo { get; set; }
// [JsonPropertyName("userDetails")]
// public UserDetails? UserDetails { get; set; }
//
// [JsonPropertyName("errorInfo")]
// public TErrorInfo? ErrorInfo { get; set; }
public class TErrorInfo
{
[JsonPropertyName("errorGroup")]
public string ErrorGroup { get; set; }
[JsonPropertyName("errorCode")]
public string ErrorCode { get; set; }
[JsonPropertyName("errorMessage")]
public string ErrorMessage { get; set; }
[JsonPropertyName("contextId")]
public Guid ContextId { get; set; }
}
public class TShippingDetails
{
[JsonPropertyName("address")]
public TAddress Address { get; set; }
[JsonPropertyName("shippingCost")]
public int ShippingCost { get; set; }
[JsonPropertyName("shippingMethod")]
public string ShippingMethod { get; set; }
[JsonPropertyName("shippingMethodId")]
public string ShippingMethodId { get; set; }
}
public class TAddress
{
[JsonPropertyName("addressLine1")]
public string AddressLine1 { get; set; }
[JsonPropertyName("addressLine2")]
public string AddressLine2 { get; set; }
[JsonPropertyName("city")]
public string City { get; set; }
[JsonPropertyName("country")]
public string Country { get; set; }
[JsonPropertyName("zipCode")]
public string ZipCode { get; set; }
}
public class TTransactionInfo
{
[JsonPropertyName("amount")]
public int Amount { get; set; }
[JsonPropertyName("status")]
public string Status { get; set; }
public ETransactionStatus StatusEnum() => Enum.Parse<ETransactionStatus>(Status);
[JsonPropertyName("timeStamp")]
public DateTime TimeStamp { get; set; }
[JsonPropertyName("transactionId")]
public string TransactionId { get; set; }
}
public class TUserDetails
{
[JsonPropertyName("bankIdVerified")]
public string BankIdVerified { get; set; }
[JsonPropertyName("dateOfBirth")]
public string DateOfBirth { get; set; }
[JsonPropertyName("email")]
public string Email { get; set; }
[JsonPropertyName("firstName")]
public string FirstName { get; set; }
[JsonPropertyName("lastName")]
public string LastName { get; set; }
[JsonPropertyName("mobileNumber")]
public string MobileNumber { get; set; }
[JsonPropertyName("ssn")]
public string Ssn { get; set; }
[JsonPropertyName("userId")]
public string UserId { get; set; }
}
}
}
|