interface ChangeList<T> {
    allChangesIncluded?: boolean;
    changeCounts?: { [key: number]: number };
    changes?: Change<T>[];
    comment?: string;
    commentTruncated?: boolean;
    creationDate?: Date;
    notes?: CheckinNote[];
    owner?: string;
    ownerDisplayName?: string;
    ownerId?: string;
    sortDate?: Date;
    version?: string;
}

Type Parameters

  • T

Properties

allChangesIncluded?: boolean
changeCounts?: { [key: number]: number }
changes?: Change<T>[]
comment?: string
commentTruncated?: boolean
creationDate?: Date
notes?: CheckinNote[]
owner?: string
ownerDisplayName?: string
ownerId?: string
sortDate?: Date
version?: string