22 lines
553 B
C#
22 lines
553 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace gehGassi.Klarna.OrderManagement
|
|
{
|
|
public class ExtendDueDateRequest
|
|
{
|
|
/// <summary>
|
|
/// Number of days to extend the due date.
|
|
/// </summary>
|
|
/// <value>Number of days to extend the due date.</value>
|
|
[Required]
|
|
[JsonProperty("number_of_days")]
|
|
public int? NumberOfDays { get; set; }
|
|
}
|
|
}
|