Waze Map Editor JavaScript SDK
    Preparing search index...

    Interface VenueUpdateRequest

    interface VenueUpdateRequest {
        changedFields?: ChangedField[];
        createdBy: null | string;
        dateAdded: number;
        id: null | string | number;
        subject: PLACE_UPDATE_SUBJECT;
        updateType: PlaceUpdateType;
    }
    Index

    Properties

    changedFields?: ChangedField[]

    A list of fields that were changed in the venue update request.

    createdBy: null | string

    The user who created the venue update request, or null if not specified.

    dateAdded: number

    The date and time when the venue update request was added (Unix timestamp in milliseconds).

    id: null | string | number

    The ID of the venue update request. Can be null if the request is new.

    The subject of the venue update request (e.g., "IMAGE", "VENUE").

    updateType: PlaceUpdateType

    The type of the update request (e.g., "ADD_IMAGE", "DELETE_VENUE", "UPDATE_VENUE", "flag").