using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace gehGassi.Klarna.Checkout
{
public class DeliveryDetailsV1
{
///
/// Carrier product name
///
/// Carrier product name
[JsonProperty("carrier")]
public string Carrier { get; set; }
///
/// Type of shipping class
///
/// Type of shipping class
[JsonProperty("class")]
public string Class { get; set; }
///
/// Gets or Sets Product
///
[JsonProperty("product")]
public ProductV1 Product { get; set; }
///
/// Gets or Sets Timeslot
///
[JsonProperty("timeslot")]
public TimeslotV1 Timeslot { get; set; }
///
/// Gets or Sets PickupLocation
///
[JsonProperty("pickup_location")]
public PickupLocationV1 PickupLocation { get; set; }
}
}