Class PaymentInformation
- Assembly
- arolariu.Backend.Domain.Invoices.dll
The payment information record.
public sealed record PaymentInformation : IEquatable<PaymentInformation>
- Inheritance
-
PaymentInformation
- Implements
- Inherited Members
Properties
Currency
The original currency.
public Currency Currency { get; set; }
Property Value
PaymentType
The payment type.
public PaymentType PaymentType { get; set; }
Property Value
TotalCostAmount
The total amount, in the original currency.
public decimal TotalCostAmount { get; set; }
Property Value
TotalTaxAmount
The tax amount, in the original currency.
public decimal TotalTaxAmount { get; set; }
Property Value
TransactionDate
The date of purchase.
public DateTimeOffset TransactionDate { get; set; }