48 lines
1.2 KiB
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 Timeslot
{
/// <summary>
/// The timeslot id
/// </summary>
/// <value>The timeslot id</value>
[JsonProperty("id")]
public string Id { get; set; }
/// <summary>
/// Start of the timeslot
/// </summary>
/// <value>Start of the timeslot</value>
[JsonProperty("start")]
public string Start { get; set; }
/// <summary>
/// End of the timeslot
/// </summary>
/// <value>End of the timeslot</value>
[JsonProperty("end")]
public string End { get; set; }
/// <summary>
/// Cutoff time for delivery
/// </summary>
/// <value>Cutoff time for delivery</value>
[JsonProperty("cutoff")]
public string Cutoff { get; set; }
/// <summary>
/// Price
/// </summary>
/// <value>Price</value>
[JsonProperty("price")]
public long? Price { get; set; }
}
}