com.targomo.client.api.pojo.TravelWeight 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.pojo;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* This class is responsible for storing the distance and time taken to route between a source and target
* @author Mario Freitas
*/
@Getter
@AllArgsConstructor
public class TravelWeight {
private final int travelDistance;
private final int travelTime;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy