Interface HonuaOdataPage<T>

Per-page response envelope for query(). Mirrors the canonical Result<T> fields the contract adapter consumes; the fully-canonical Result<T> shape is constructed in src/contract/source.ts from this envelope (so HonuaOdataEntitySet does not import from contract/).

interface HonuaOdataPage<T> {
    deltaLink?: string;
    nextLink?: string;
    rows: readonly T[];
    totalCount?: number;
}

Type Parameters

  • T

Properties

deltaLink?: string
nextLink?: string
rows: readonly T[]
totalCount?: number