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