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