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