Represents the resolution details for a suggestion.

interface SuggestionResolution {
    createdBy: null | string;
    createdOn: number;
    rejectionReason: null | SuggestionResolutionRejectionReason;
    resolution: SuggestionResolutionStatus;
}

Properties

createdBy: null | string

The user who created the resolution, or null if not specified.

createdOn: number

The timestamp when the resolution was created.

rejectionReason: null | SuggestionResolutionRejectionReason

The reason for rejecting the suggestion, if applicable.

The resolution of the suggestion.