Skip to content

Commit

Permalink
Added unique_destination_count to Route object
Browse files Browse the repository at this point in the history
  • Loading branch information
r4m-juan committed Aug 26, 2022
1 parent 271bdaf commit e9b6d05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.route4me</groupId>
<artifactId>route4me-java-sdk</artifactId>
<version>1.13.0</version>
<version>1.13.1</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/route4me/sdk/services/routing/Route.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

@Data
public class Route extends DataObject {

@SerializedName("route_id")
@QueryParameter("route_id")
private String id;
Expand Down Expand Up @@ -79,4 +80,7 @@ public class Route extends DataObject {
List<Note> notes;
@SerializedName("path")
private List<GeoCoordinates> path;
@SerializedName("unique_destination_count")
private Integer uniqueDestinationCount;

}

0 comments on commit e9b6d05

Please sign in to comment.