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 OptionDto { /// /// How many days to extend the due date with /// /// How many days to extend the due date with [JsonProperty("number_of_days")] public int? NumberOfDays { get; set; } /// /// The fee for extending the due date this many days. In minor units. /// /// The fee for extending the due date this many days. In minor units. [JsonProperty("amount")] public long? Amount { get; set; } } }