Class PriceInfo
BG-29: Price details for an invoice line.
public sealed record PriceInfo : IEquatable<PriceInfo>
- Inheritance
-
PriceInfo
- Implements
- Inherited Members
Properties
BaseQuantity
BT-149: Base quantity for the price.
public decimal? BaseQuantity { get; init; }
Property Value
BaseQuantityUnitCode
BT-150: Unit for the base quantity.
public UnitOfMeasure? BaseQuantityUnitCode { get; init; }
Property Value
GrossPrice
BT-148: Item gross price (before discount).
public decimal? GrossPrice { get; init; }
Property Value
PriceAmount
BT-146: Item net price (after line-level discount).
public required decimal PriceAmount { get; init; }
Property Value
PriceDiscount
BT-147: Item price discount (applied to gross price).
public decimal? PriceDiscount { get; init; }