Class SupportCasePage
A page of support cases, with an explicit cursor for the next one.
public record SupportCasePage : IEquatable<SupportCasePage>
- Inheritance
-
SupportCasePage
- Implements
- Inherited Members
Remarks
Concrete rather than a generic page type, and an array rather than an interface: a contract has to
serialize by construction, and the cheapest way to guarantee that is to leave nothing about the shape to
inference. NextCursor is null when there is no further page.
Properties
Items
public required SupportCase[] Items { get; init; }
Property Value
NextCursor
public string NextCursor { get; init; }