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 UpdateConsumer
{
///
/// Customer shipping address.
///
/// Customer shipping address.
[JsonProperty("shipping_address")]
public Address ShippingAddress { get; set; }
///
/// Customer billing address.
///
/// Customer billing address.
[JsonProperty("billing_address")]
public Address BillingAddress { get; set; }
}
}