com.azure.messaging.eventgrid.systemevents.IotHubDeviceTelemetryEventData 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.
// 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.Map;
/** Event data for Microsoft.Devices.DeviceTelemetry event. */
@Fluent
public final class IotHubDeviceTelemetryEventData extends DeviceTelemetryEventProperties {
/** Creates an instance of IotHubDeviceTelemetryEventData class. */
public IotHubDeviceTelemetryEventData() {}
/** {@inheritDoc} */
@Override
public IotHubDeviceTelemetryEventData setBody(Object body) {
super.setBody(body);
return this;
}
/** {@inheritDoc} */
@Override
public IotHubDeviceTelemetryEventData setProperties(Map properties) {
super.setProperties(properties);
return this;
}
/** {@inheritDoc} */
@Override
public IotHubDeviceTelemetryEventData setSystemProperties(Map systemProperties) {
super.setSystemProperties(systemProperties);
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy