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
{
///
/// Number of days to extend the due date.
///
/// Number of days to extend the due date.
[Required]
[JsonProperty("number_of_days")]
public int? NumberOfDays { get; set; }
}
}