Class ProductIdentifiers
Inheritance
System.Object
ProductIdentifiers
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 ProductIdentifiers
Properties
| Improve this Doc View SourceBrand
The product's brand name as generally recognized by consumers. If no brand is available for a product, do not supply any value.
Declaration
[JsonProperty(PropertyName = "brand")]
public string Brand { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CategoryPath
The product's category path as used in the merchant's webshop. Include the full and most detailed category and separate the segments with ' > '
Declaration
[JsonProperty(PropertyName = "category_path")]
public string CategoryPath { get; set; }
Property Value
Type | Description |
---|---|
System.String |
GlobalTradeItemNumber
The product's Global Trade Item Number (GTIN). Common types of GTIN are EAN, ISBN or UPC. Exclude dashes and spaces, where possible
Declaration
[JsonProperty(PropertyName = "global_trade_item_number")]
public string GlobalTradeItemNumber { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ManufacturerPartNumber
The product's Manufacturer Part Number (MPN), which - together with the brand - uniquely identifies a product. Only submit MPNs assigned by a manufacturer and use the most specific MPN possible
Declaration
[JsonProperty(PropertyName = "manufacturer_part_number")]
public string ManufacturerPartNumber { get; set; }
Property Value
Type | Description |
---|---|
System.String |