Table of Contents

Class PurchasedProductsResult

Namespace
Dynamicweb.Ecommerce.Orders
Assembly
Dynamicweb.Ecommerce.dll

Paginated result of a purchased products query, containing one page of aggregated purchase records and the total number of distinct products across all pages.

public sealed class PurchasedProductsResult
Inheritance
PurchasedProductsResult
Inherited Members

Properties

PurchasedProducts

Gets the page of aggregated purchase records.

public IReadOnlyList<PurchasedProductAggregate> PurchasedProducts { get; init; }

Property Value

IReadOnlyList<PurchasedProductAggregate>

TotalCount

Gets the total number of distinct products purchased by the user (across all pages).

public int TotalCount { get; init; }

Property Value

int

See Also

To top