Represents a suggestion for an edit.

interface Suggestion {
    createdOn: null | number;
    edits: SuggestionEntityEdit[];
    id: string;
    resolutionData: SuggestionResolution[];
}

Properties

createdOn: null | number

The timestamp when the suggestion was created, or null if not specified.

A list of entity edits included in the suggestion.

id: string
resolutionData: SuggestionResolution[]

A list of resolution data entries for the suggestion.