com.route4me.sdk.services.routing.RoutesRequest 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.route4me.sdk.queryconverter.QueryParameter;
import lombok.Data;
import lombok.experimental.Accessors;
@Data
@Accessors(chain = true)
public class RoutesRequest {
@QueryParameter("route_id")
private String id;
@QueryParameter("directions")
private Boolean directions;
@QueryParameter("device_tracking_history")
private Boolean deviceTrackingHistory;
@QueryParameter("limit")
private Integer limit;
@QueryParameter("offset")
private Integer offset;
@QueryParameter("original")
private Boolean original;
@QueryParameter("notes")
private Boolean notes;
@QueryParameter("query")
private String query;
@QueryParameter("reoptimize")
private Boolean reoptimize;
@QueryParameter("recompute_directions")
private Boolean recomputeDirections;
@QueryParameter("start_date")
private String startDate;
@QueryParameter("end_date")
private String endDate;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy