Advertisement
Denisimus

Untitled

Jun 1st, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. ublic class Overview_polyline  {
  2.     @SerializedName("points")
  3.     @Expose
  4.     private String points;
  5.  
  6.     public Overview_polyline(String points) {
  7.         this.points = points;
  8.     }
  9.  
  10.     public String getPoints() {
  11.         return this.points;
  12.     }
  13.  
  14.     @Override
  15.     public String toString() {
  16.         return "Overview_polyline{" +
  17.                 "points='" + points + '\'' +
  18.                 '}';
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement