Class Dimensions
Represents a product's dimensions
Inheritance
System.Object
    Dimensions
  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 Dimensions
  Properties
| Improve this Doc View SourceHeight
The product's height as used in the merchant's webshop. Non-negative. Measured in millimeters.
Declaration
[JsonProperty(PropertyName = "height")]
public long Height { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int64 | 
Length
The product's length as used in the merchant's webshop. Non-negative. Measured in millimeters.
Declaration
[JsonProperty(PropertyName = "length")]
public long Length { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int64 | 
Width
The product's width as used in the merchant's webshop. Non-negative. Measured in millimeters.
Declaration
[JsonProperty(PropertyName = "width")]
public long Width { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int64 |