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 ExtendDueDateOptions
{
///
/// The currency for the fees. Specified in ISO 4217 format.
///
/// The currency for the fees. Specified in ISO 4217 format.
[JsonProperty("currency")]
public string Currency { get; set; }
///
/// The available options and corresponding fees for extending the due date
///
/// The available options and corresponding fees for extending the due date
[JsonProperty("options")]
public List Options { get; set; }
}
}