Waze Map Editor JavaScript SDK
    Preparing search index...

    Interface SuggestionAttributeChange<T>

    Represents a single attribute change in an edit suggestion change.

    interface SuggestionAttributeChange<T = unknown> {
        id: string;
        name: string;
        newValue: T;
        objectType: ObjectType;
        oldValue: T;
        timestamp: null | number;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    id: string
    name: string

    The name of the attribute to be changed.

    newValue: T

    The new value of the attribute to be changed.

    objectType: ObjectType

    The type of the object the attribute change is to be applied to.

    oldValue: T

    The old value of the attribute to be changed.

    timestamp: null | number

    The timestamp of the change.