gehgassi_backend/gehGassi.Klarna/Checkout/ShippingAttributes.cs

33 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 ShippingAttributes
{
/// <summary>
/// The product&#39;s weight as used in the merchant&#39;s webshop. Non-negative. Measured in grams.
/// </summary>
/// <value>The product&#39;s weight as used in the merchant&#39;s webshop. Non-negative. Measured in grams.</value>
[JsonProperty("weight")]
public long? Weight { get; set; }
/// <summary>
/// Gets or Sets Dimensions
/// </summary>
[JsonProperty("dimensions")]
public Dimensions Dimensions { get; set; }
/// <summary>
/// The product&#39;s extra features, example [\&quot;dangerous_goods\&quot;, \&quot;bulky\&quot;]
/// </summary>
/// <value>The product&#39;s extra features, example [\&quot;dangerous_goods\&quot;, \&quot;bulky\&quot;]</value>
[JsonProperty("tags")]
public List<string> Tags { get; set; }
}
}