aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce/Models/Api/VippsForceApproveRequest.cs
blob: 24374279751c410d8c9a3146660e27eced725084 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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; }
}