34 lines
1.3 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 Dimensions
{
/// <summary>
/// The product&#39;s height as used in the merchant&#39;s webshop. Non-negative. Measured in millimeters.
/// </summary>
/// <value>The product&#39;s height as used in the merchant&#39;s webshop. Non-negative. Measured in millimeters.</value>
[JsonProperty("height")]
public long? Height { get; set; }
/// <summary>
/// The product&#39;s width as used in the merchant&#39;s webshop. Non-negative. Measured in millimeters.
/// </summary>
/// <value>The product&#39;s width as used in the merchant&#39;s webshop. Non-negative. Measured in millimeters.</value>
[JsonProperty("width")]
public long? Width { get; set; }
/// <summary>
/// The product&#39;s length as used in the merchant&#39;s webshop. Non-negative. Measured in millimeters.
/// </summary>
/// <value>The product&#39;s length as used in the merchant&#39;s webshop. Non-negative. Measured in millimeters.</value>
[JsonProperty("length")]
public long? Length { get; set; }
}
}