Class PriceInfo

Namespace
EInvoice.Core.Model
Assembly
EInvoice.Core.dll

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

decimal?

BaseQuantityUnitCode

BT-150: Unit for the base quantity.

public UnitOfMeasure? BaseQuantityUnitCode { get; init; }

Property Value

UnitOfMeasure

GrossPrice

BT-148: Item gross price (before discount).

public decimal? GrossPrice { get; init; }

Property Value

decimal?

PriceAmount

BT-146: Item net price (after line-level discount).

public required decimal PriceAmount { get; init; }

Property Value

decimal

PriceDiscount

BT-147: Item price discount (applied to gross price).

public decimal? PriceDiscount { get; init; }

Property Value

decimal?