The class represents the reporting work item revision filer.

interface ReportingWorkItemRevisionsFilter {
    fields?: string[];
    includeDeleted?: boolean;
    includeIdentityRef?: boolean;
    includeLatestOnly?: boolean;
    includeTagRef?: boolean;
    types?: string[];
}

Properties

fields?: string[]

A list of fields to return in work item revisions. Omit this parameter to get all reportable fields.

includeDeleted?: boolean

Include deleted work item in the result.

includeIdentityRef?: boolean

Return an identity reference instead of a string value for identity fields.

includeLatestOnly?: boolean

Include only the latest version of a work item, skipping over all previous revisions of the work item.

includeTagRef?: boolean

Include tag reference instead of string value for System.Tags field

types?: string[]

A list of types to filter the results to specific work item types. Omit this parameter to get work item revisions of all work item types.