Response containing a collection of Attribute.

interface IAttributeCollectionResponse {
    odataCount?: number;
    odataNextLink?: string;
    value?: Attribute[];
}

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?: Attribute[]