Table of Contents

Class PriceQuantityInfo

Namespace
Dynamicweb.Ecommerce.Prices
Assembly
Dynamicweb.Ecommerce.dll

Price quantity information.

public sealed record PriceQuantityInfo : IEquatable<PriceQuantityInfo>
Inheritance
PriceQuantityInfo
Implements
Inherited Members

Properties

Quantity

Gets or sets the quantity.

public double Quantity { get; init; }

Property Value

double

StockLocationId

Gets or sets the stock location identifier.

public long StockLocationId { get; init; }

Property Value

long

UnitId

Gets or sets the unit identifier.

public string? UnitId { get; init; }

Property Value

string

ValidFrom

Gets the start date from which this price is valid, or null if it has no start date.

public DateTime? ValidFrom { get; init; }

Property Value

DateTime?

ValidTo

Gets the end date until which this price is valid, or null if it has no end date.

public DateTime? ValidTo { get; init; }

Property Value

DateTime?
To top