27 lines
833 B
C#

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