33 lines
1.1 KiB
C#
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's weight as used in the merchant's webshop. Non-negative. Measured in grams.
|
|
/// </summary>
|
|
/// <value>The product's weight as used in the merchant'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's extra features, example [\"dangerous_goods\", \"bulky\"]
|
|
/// </summary>
|
|
/// <value>The product's extra features, example [\"dangerous_goods\", \"bulky\"]</value>
|
|
[JsonProperty("tags")]
|
|
public List<string> Tags { get; set; }
|
|
}
|
|
}
|