Response containing a collection of AuditReason.

interface IAuditReasonCollectionResponse {
    odataCount?: number;
    odataNextLink?: string;
    value?: AuditReason[];
}

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