blob: 7978a1994943acac709d4ee3a185a0623fe49582 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api;
public class TCustomerInfo
{
/// <summary>
/// Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code.
/// </summary>
/// <value>Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code.</value>
[JsonPropertyName("mobileNumber")]
public string MobileNumber { get; set; }
}
|