summaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce/Models/Api/VippsGetPaymentDetailsResponse.cs
blob: 844ac88c7634e7f5210bc1e3f11d71f46577662d (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
120
121
122
123
124
125
using System;
using System.Text.Json.Serialization;

namespace IOL.VippsEcommerce.Models.Api
{
    public class VippsGetPaymentDetailsResponse
    {
        [JsonPropertyName("orderId")]
        public string OrderId { get; set; }

        [JsonPropertyName("shippingDetails")]
        public ShippingDetails ShippingDetails { get; set; }

        [JsonPropertyName("transactionLogHistory")]
        public TransactionLogHistory[] TransactionLogHistory { get; set; }

        [JsonPropertyName("transactionSummary")]
        public TransactionSummary TransactionSummary { get; set; }

        [JsonPropertyName("userDetails")]
        public UserDetails UserDetails { get; set; }
    }

    public class ShippingDetails
    {
        [JsonPropertyName("address")]
        public Address Address { get; set; }

        [JsonPropertyName("shippingCost")]
        public long ShippingCost { get; set; }

        [JsonPropertyName("shippingMethod")]
        public string ShippingMethod { get; set; }

        [JsonPropertyName("shippingMethodId")]
        public string ShippingMethodId { get; set; }
    }

    public class Address
    {
        [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("postCode")]
        public string PostCode { get; set; }
    }

    public class TransactionLogHistory
    {
        [JsonPropertyName("amount")]
        public long Amount { get; set; }

        [JsonPropertyName("operation")]
        public string Operation { get; set; }

        [JsonPropertyName("operationSuccess")]
        public bool OperationSuccess { get; set; }

        [JsonPropertyName("requestId")]
        public string RequestId { get; set; }

        [JsonPropertyName("timeStamp")]
        public DateTime TimeStamp { get; set; }

        [JsonPropertyName("transactionId")]
        public string TransactionId { get; set; }

        [JsonPropertyName("transactionText")]
        public string TransactionText { get; set; }
    }

    public class TransactionSummary
    {
        [JsonPropertyName("capturedAmount")]
        public long CapturedAmount { get; set; }

        [JsonPropertyName("refundedAmount")]
        public long RefundedAmount { get; set; }

        [JsonPropertyName("remainingAmountToCapture")]
        public long RemainingAmountToCapture { get; set; }

        [JsonPropertyName("remainingAmountToRefund")]
        public long RemainingAmountToRefund { get; set; }

        [JsonPropertyName("bankIdentificationNumber")]
        public long BankIdentificationNumber { get; set; }
    }

    public class UserDetails
    {
        [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 long MobileNumber { get; set; }

        [JsonPropertyName("ssn")]
        public string Ssn { get; set; }

        [JsonPropertyName("userId")]
        public string UserId { get; set; }
    }
}