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 Location { /// /// The location id /// /// The location id [JsonProperty("id")] public string Id { get; set; } /// /// The display name of the location /// /// The display name of the location [JsonProperty("name")] public string Name { get; set; } /// /// The price for this location /// /// The price for this location [JsonProperty("price")] public long? Price { get; set; } /// /// The address of the location /// /// The address of the location [JsonProperty("address")] public Address Address { get; set; } } }