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