com.microsoft.azure.sdk.iot.service.configurations.ConfigurationMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot-service-client Show documentation
Show all versions of iot-service-client Show documentation
The Microsoft Azure IoT Service SDK for Java
The newest version!
package com.microsoft.azure.sdk.iot.service.configurations;
import lombok.Getter;
import lombok.Setter;
import java.util.HashMap;
import java.util.Map;
public class ConfigurationMetrics
{
@Getter
@Setter
Map results;
@Getter
@Setter
Map queries;
/**
* Create a ConfigurationMetrics instance
*/
public ConfigurationMetrics()
{
this.results = new HashMap<>();
this.queries = new HashMap<>();
}
}