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 SelectedAddon { /// /// Gets or Sets Type /// [JsonProperty("type")] public string Type { get; set; } /// /// Gets or Sets Price /// [JsonProperty("price")] public long? Price { get; set; } /// /// Gets or Sets ExternalId /// [JsonProperty("external_id")] public string ExternalId { get; set; } /// /// Gets or Sets UserInput /// [JsonProperty("user_input")] public string UserInput { get; set; } } }