com.route4me.sdk.services.territories.Territory 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.territories;
import com.google.gson.annotations.SerializedName;
import com.route4me.sdk.queryconverter.QueryParameter;
import java.util.List;
import lombok.Data;
@Data
public class Territory {
@SerializedName("territory_id")
@QueryParameter("territory_id")
private String territoryId;
@SerializedName("territory_name")
private String territoryName;
@SerializedName("territory_color")
private String territoryColor;
@SerializedName("member_id")
private String memberID;
@SerializedName("addresses")
private List addresses;
@SerializedName("orders")
private List orders;
@SerializedName("territory")
private TerritoryData territory;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy