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