Struct PaymentTransactionSearchResult
- Namespace
- Dynamicweb.Ecommerce.Orders.PaymentTransactions
- Assembly
- Dynamicweb.Ecommerce.dll
Represents the payment transaction search results
public readonly record struct PaymentTransactionSearchResult : IEquatable<PaymentTransactionSearchResult>
- Implements
- Inherited Members
Constructors
PaymentTransactionSearchResult(int, IList<PaymentTransaction>)
Initializes a new instance of the PaymentTransactionSearchResult class.
public PaymentTransactionSearchResult(int TotalCount, IList<PaymentTransaction> Items)
Parameters
TotalCountintItemsIList<PaymentTransaction>
Exceptions
- ArgumentNullException
Thrown when
Itemsis null.
Properties
Items
The payment transactions
public IList<PaymentTransaction> Items { get; }
Property Value
TotalCount
The total number of payment transactions
public int TotalCount { get; }