aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs')
-rw-r--r--src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs b/src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs
new file mode 100644
index 0000000..a558638
--- /dev/null
+++ b/src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file