45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Carrier product name
|
|
/// </summary>
|
|
/// <value>Carrier product name</value>
|
|
[JsonProperty("carrier")]
|
|
public string Carrier { get; set; }
|
|
|
|
/// <summary>
|
|
/// Type of shipping class
|
|
/// </summary>
|
|
/// <value>Type of shipping class</value>
|
|
[JsonProperty("class")]
|
|
public string Class { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Product
|
|
/// </summary>
|
|
[JsonProperty("product")]
|
|
public ProductV1 Product { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Timeslot
|
|
/// </summary>
|
|
[JsonProperty("timeslot")]
|
|
public TimeslotV1 Timeslot { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets PickupLocation
|
|
/// </summary>
|
|
[JsonProperty("pickup_location")]
|
|
public PickupLocationV1 PickupLocation { get; set; }
|
|
}
|
|
}
|