com.azure.messaging.eventgrid.systemevents.MapsGeofenceExitedEventData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
The 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 com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.List;
/**
* Schema of the Data property of an EventGridEvent for a Microsoft.Maps.GeofenceExited event.
*/
@Fluent
public final class MapsGeofenceExitedEventData extends MapsGeofenceEventProperties {
/**
* Creates an instance of MapsGeofenceExitedEventData class.
*/
public MapsGeofenceExitedEventData() {
}
/**
* {@inheritDoc}
*/
@Override
public MapsGeofenceExitedEventData setExpiredGeofenceGeometryId(List expiredGeofenceGeometryId) {
super.setExpiredGeofenceGeometryId(expiredGeofenceGeometryId);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MapsGeofenceExitedEventData setGeometries(List geometries) {
super.setGeometries(geometries);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MapsGeofenceExitedEventData
setInvalidPeriodGeofenceGeometryId(List invalidPeriodGeofenceGeometryId) {
super.setInvalidPeriodGeofenceGeometryId(invalidPeriodGeofenceGeometryId);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MapsGeofenceExitedEventData setIsEventPublished(Boolean isEventPublished) {
super.setIsEventPublished(isEventPublished);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeArrayField("expiredGeofenceGeometryId", getExpiredGeofenceGeometryId(),
(writer, element) -> writer.writeString(element));
jsonWriter.writeArrayField("geometries", getGeometries(), (writer, element) -> writer.writeJson(element));
jsonWriter.writeArrayField("invalidPeriodGeofenceGeometryId", getInvalidPeriodGeofenceGeometryId(),
(writer, element) -> writer.writeString(element));
jsonWriter.writeBooleanField("isEventPublished", isEventPublished());
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MapsGeofenceExitedEventData from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MapsGeofenceExitedEventData if the JsonReader was pointing to an instance of it, or null
* if it was pointing to JSON null.
* @throws IOException If an error occurs while reading the MapsGeofenceExitedEventData.
*/
public static MapsGeofenceExitedEventData fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MapsGeofenceExitedEventData deserializedMapsGeofenceExitedEventData = new MapsGeofenceExitedEventData();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("expiredGeofenceGeometryId".equals(fieldName)) {
List expiredGeofenceGeometryId = reader.readArray(reader1 -> reader1.getString());
deserializedMapsGeofenceExitedEventData.setExpiredGeofenceGeometryId(expiredGeofenceGeometryId);
} else if ("geometries".equals(fieldName)) {
List geometries
= reader.readArray(reader1 -> MapsGeofenceGeometry.fromJson(reader1));
deserializedMapsGeofenceExitedEventData.setGeometries(geometries);
} else if ("invalidPeriodGeofenceGeometryId".equals(fieldName)) {
List invalidPeriodGeofenceGeometryId = reader.readArray(reader1 -> reader1.getString());
deserializedMapsGeofenceExitedEventData
.setInvalidPeriodGeofenceGeometryId(invalidPeriodGeofenceGeometryId);
} else if ("isEventPublished".equals(fieldName)) {
deserializedMapsGeofenceExitedEventData
.setIsEventPublished(reader.getNullable(JsonReader::getBoolean));
} else {
reader.skipChildren();
}
}
return deserializedMapsGeofenceExitedEventData;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy