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
{
///
/// The customer date of birth. ISO 8601.
///
/// The customer date of birth. ISO 8601.
[JsonProperty("date_of_birth")]
public DateTime? DateOfBirth { get; set; }
///
/// The customer national identification number
///
/// The customer national identification number
[JsonProperty("national_identification_number")]
public string NationalIdentificationNumber { get; set; }
}
}