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