using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api;
public class TCustomerInfo
{
///
/// Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code.
///
/// Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code.
[JsonPropertyName("mobileNumber")]
public string MobileNumber { get; set; }
}