Class WebhookRejectionPage
- Namespace
- FlowOrchestrator.Core.Storage
- Assembly
- FlowOrchestrator.Core.dll
Paged result from QueryAsync(WebhookRejectionQuery, CancellationToken).
public sealed record WebhookRejectionPage : IEquatable<WebhookRejectionPage>
- Inheritance
-
WebhookRejectionPage
- Implements
- Inherited Members
Constructors
WebhookRejectionPage(IReadOnlyList<WebhookRejectionRecord>, int)
Paged result from QueryAsync(WebhookRejectionQuery, CancellationToken).
public WebhookRejectionPage(IReadOnlyList<WebhookRejectionRecord> Items, int Total)
Parameters
ItemsIReadOnlyList<WebhookRejectionRecord>Rows for the current page (already filtered + paged).
TotalintTotal row count matching the filter, before pagination.
Properties
Items
Rows for the current page (already filtered + paged).
public IReadOnlyList<WebhookRejectionRecord> Items { get; init; }
Property Value
Total
Total row count matching the filter, before pagination.
public int Total { get; init; }