aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce/Models/Api/VippsForceApproveRequest.cs
blob: 6a539c2a95281d91a5b38db7832b6b16555af2c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System.Text.Json.Serialization;

namespace IOL.VippsEcommerce.Models.Api
{
    public class VippsForceApproveRequest
    {
        /// <summary>
        /// Target customer phone number. 8 digits.
        /// </summary>
        /// <value>Target customer phone number. 8 digits.</value>
        [JsonPropertyName("customerPhoneNumber")]
        public string CustomerPhoneNumber { get; set; }

        /// <summary>
        /// The token value recieved in the &#x60;url&#x60; property in the Initiate response
        /// </summary>
        /// <value>The token value recieved in the &#x60;url&#x60; property in the Initiate response</value>
        [JsonPropertyName("token")]
        public string Token { get; set; }
    }
}