33 lines
743 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace gehGassi.Klarna.Checkout
{
public class PickupLocationV1
{
/// <summary>
/// Id
/// </summary>
/// <value>Id</value>
[JsonProperty("id")]
public string Id { get; set; }
/// <summary>
/// Name of the location
/// </summary>
/// <value>Name of the location</value>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// Gets or Sets Address
/// </summary>
[JsonProperty("address")]
public Address Address { get; set; }
}
}