com.targomo.client.api.response.EdgeStatisticsReachabilityResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client library for easy usage of Targomo web services.
package com.targomo.client.api.response;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import java.util.HashMap;
import java.util.Map;
/**
* Response object of EdgeStatisticsReachabilityRequest
*/
@Getter
@AllArgsConstructor @NoArgsConstructor
public class EdgeStatisticsReachabilityResponse {
// map from location id to a map of statistic id to statistic value
HashMap> data;
// response code
String code;
// response message
String message;
// time spent processing the request
Integer requestTime;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy