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 { /// /// Id /// /// Id [JsonProperty("id")] public string Id { get; set; } /// /// Name of the location /// /// Name of the location [JsonProperty("name")] public string Name { get; set; } /// /// Gets or Sets Address /// [JsonProperty("address")] public Address Address { get; set; } } }