All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.messaging.eventgrid.systemevents.MapsGeofenceEnteredEventData Maven / Gradle / Ivy

There is a newer version: 4.27.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.messaging.eventgrid.systemevents;

import com.azure.core.annotation.Fluent;
import java.util.List;

/** Schema of the Data property of an EventGridEvent for a Microsoft.Maps.GeofenceEntered event. */
@Fluent
public final class MapsGeofenceEnteredEventData extends MapsGeofenceEventProperties {
    /** Creates an instance of MapsGeofenceEnteredEventData class. */
    public MapsGeofenceEnteredEventData() {}

    /** {@inheritDoc} */
    @Override
    public MapsGeofenceEnteredEventData setExpiredGeofenceGeometryId(List expiredGeofenceGeometryId) {
        super.setExpiredGeofenceGeometryId(expiredGeofenceGeometryId);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public MapsGeofenceEnteredEventData setGeometries(List geometries) {
        super.setGeometries(geometries);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public MapsGeofenceEnteredEventData setInvalidPeriodGeofenceGeometryId(
            List invalidPeriodGeofenceGeometryId) {
        super.setInvalidPeriodGeofenceGeometryId(invalidPeriodGeofenceGeometryId);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public MapsGeofenceEnteredEventData setIsEventPublished(Boolean isEventPublished) {
        super.setIsEventPublished(isEventPublished);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy