com.microsoft.azure.sdk.iot.device.twin.ReportedPropertiesUpdateResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot-device-client Show documentation
Show all versions of iot-device-client Show documentation
The Microsoft Azure IoT Device SDK for Java
package com.microsoft.azure.sdk.iot.device.twin;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* The response fields for a reported properties update request.
*/
@AllArgsConstructor
public class ReportedPropertiesUpdateResponse
{
/**
* The new version of the reported properties after a successful reported properties update. If the client updating
* its reported properties is connected to Edgehub instead of IoT Hub, then this version won't change since Edgehub
* does not apply this reported properties update immediately.
*/
@Getter
private final int version;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy