Table of Contents

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

TotalCount int
Items IList<PaymentTransaction>

Exceptions

ArgumentNullException

Thrown when Items is null.

Properties

Items

The payment transactions

public IList<PaymentTransaction> Items { get; }

Property Value

IList<PaymentTransaction>

TotalCount

The total number of payment transactions

public int TotalCount { get; }

Property Value

int
To top