Waze Map Editor JavaScript SDK
    Preparing search index...

    Interface EditSuggestionChange

    Represents a change suggested in an edit suggestion, containing an attribute change per each changed attribute.

    interface EditSuggestionChange {
        attributeChanges: SuggestionAttributeChange<unknown>[];
        createdOn: null | number;
        rejectionReason: null | SuggestionResolutionRejectionReason;
        status: SuggestionResolutionStatus;
        suggestionId: string;
    }
    Index

    Properties

    attributeChanges: SuggestionAttributeChange<unknown>[]

    A list of attribute changes.

    createdOn: null | number

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

    rejectionReason: null | SuggestionResolutionRejectionReason

    The reason for rejecting the suggestion, if applicable.

    The overall status of the edit suggestion.

    suggestionId: string

    The id of the suggestion in the data model change is to be made for.