com.route4me.sdk.services.routing.DataObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route4me-java-sdk Show documentation
Show all versions of route4me-java-sdk Show documentation
>This SDK makes it easier for you use the Route4Me API, which creates optimally sequenced driving routes for many drivers.
package com.route4me.sdk.services.routing;
import com.google.gson.annotations.SerializedName;
import com.route4me.sdk.services.tracking.TrackingHistory;
import lombok.Data;
import java.util.List;
@Data
public class DataObject {
@SerializedName("addresses")
private List addresses;
@SerializedName("tracking_history")
private List trackingHistory;
@SerializedName("parameters")
private Parameters parameters;
@SerializedName("optimization_problem_id")
private String optimizationProblemId;
@SerializedName("state")
private Number state;
@SerializedName("sent_to_background")
private Boolean sentToBackground;
@SerializedName("links")
private Links links;
@SerializedName("driver_alias")
private String driverAlias;
@SerializedName("optimal_position")
private Boolean optimalPosition;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy