Class ShippingAttributes
Represents shipping attributes of an order item
Inheritance
System.Object
    ShippingAttributes
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: Klarna.Rest.Core.Model
Assembly: Klarna.Rest.Core.dll
Syntax
public class ShippingAttributes
  Properties
| Improve this Doc View SourceDimensions
The product's dimensions: height, width and length. Each dimension is of type Long.
Declaration
[JsonProperty(PropertyName = "dimensions")]
public Dimensions Dimensions { get; set; }
  Property Value
| Type | Description | 
|---|---|
| Dimensions | 
Tags
The product's extra features
Declaration
[JsonProperty(PropertyName = "tags")]
public ICollection<string> Tags { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.ICollection<System.String> | 
Weight
The product's weight as used in the merchant's webshop. Non-negative. Measured in grams.
Declaration
[JsonProperty(PropertyName = "weight")]
public int Weight { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 |