Skip to content

Commit e9b6d05

Browse files
committed
Added unique_destination_count to Route object
1 parent 271bdaf commit e9b6d05

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.github.route4me</groupId>
66
<artifactId>route4me-java-sdk</artifactId>
7-
<version>1.13.0</version>
7+
<version>1.13.1</version>
88
<packaging>jar</packaging>
99
<properties>
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

src/main/java/com/route4me/sdk/services/routing/Route.java

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
@Data
1111
public class Route extends DataObject {
12+
1213
@SerializedName("route_id")
1314
@QueryParameter("route_id")
1415
private String id;
@@ -79,4 +80,7 @@ public class Route extends DataObject {
7980
List<Note> notes;
8081
@SerializedName("path")
8182
private List<GeoCoordinates> path;
83+
@SerializedName("unique_destination_count")
84+
private Integer uniqueDestinationCount;
85+
8286
}

0 commit comments

Comments
 (0)