27 lines
775 B
C#
27 lines
775 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace gehGassi.Klarna.OrderManagement
|
|
{
|
|
public class Customer
|
|
{
|
|
/// <summary>
|
|
/// The customer date of birth. ISO 8601.
|
|
/// </summary>
|
|
/// <value>The customer date of birth. ISO 8601. </value>
|
|
[JsonProperty("date_of_birth")]
|
|
public DateTime? DateOfBirth { get; set; }
|
|
|
|
/// <summary>
|
|
/// The customer national identification number
|
|
/// </summary>
|
|
/// <value>The customer national identification number</value>
|
|
[JsonProperty("national_identification_number")]
|
|
public string NationalIdentificationNumber { get; set; }
|
|
}
|
|
}
|