Properties
Order and Order Line metadata in Umbraco Commerce.
Setting Properties
// Set a single property
order.SetProperty("propertyAlias", "Property Value");
// Set multiple properties at once
order.SetProperties(new Dictionary<string, string>{
{ "propertyAlias1", "Property Value 1" },
{ "propertyAlias2", "Property Value 2" },
{ "propertyAlias3", "Property Value 3" }
})
// Remove a property
order.RemoveProperty("propertyAlias");
System Properties
Order System Properties
Alias
Description
Order Line System Properties
Alias
Description
Automatic Properties

Product Uniqueness Properties

Last updated
Was this helpful?