blob: a558638817b82f97d15a110bc13a14c4a78fcae1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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; }
}
}
|