A wrapper around the ODataValue with extra odata.nextLink and odata.count.

interface IODataValueContextOfIListOfWEntryLinkInfo {
    odataCount?: number;
    odataNextLink?: string;
    value?: WEntryLinkInfo[];
}

Hierarchy (view full)

Implemented by

Properties

odataCount?: number

It contains the count of a collection of entities or a collection of entity references.

odataNextLink?: string

It contains a URL that allows retrieving the next subset of the requested collection.

value?: WEntryLinkInfo[]