All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.targomo.client.api.response.EdgeStatisticsReachabilityResponse Maven / Gradle / Ivy

There is a newer version: 0.39.0
Show newest version
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