Response containing a collection of Field.

interface IFieldCollectionResponse {
    odataCount?: number;
    odataNextLink?: string;
    value?: Field[];
}

Implemented by

Properties

odataCount?: number

The total count of items within a collection.

odataNextLink?: string

A URL to retrieve the next page of the requested collection.

value?: Field[]