@@ -30,8 +30,6 @@ public class TDDatabase
3030 private final String id ;
3131 private final String name ;
3232 private final long count ;
33- private final Integer userId ;
34- private final String description ;
3533 private final String createdAt ;
3634 private final String updatedAt ;
3735 private final Optional <String > organization ;
@@ -41,8 +39,6 @@ public class TDDatabase
4139 public TDDatabase (
4240 @ JsonProperty ("id" ) String id ,
4341 @ JsonProperty ("name" ) String name ,
44- @ JsonProperty ("user_id" ) Integer userId ,
45- @ JsonProperty ("description" ) String description ,
4642 @ JsonProperty ("count" ) long count ,
4743 @ JsonProperty ("created_at" ) String createdAt ,
4844 @ JsonProperty ("updated_at" ) String updatedAt ,
@@ -52,8 +48,6 @@ public TDDatabase(
5248 {
5349 this .id = id ;
5450 this .name = name ;
55- this .userId = userId ;
56- this .description = description ;
5751 this .count = count ;
5852 this .createdAt = createdAt ;
5953 this .updatedAt = updatedAt ;
@@ -73,15 +67,6 @@ public String getName()
7367 return name ;
7468 }
7569
76- public Integer getUserId ()
77- {
78- return userId ;
79- }
80-
81- public String getDescription ()
82- {
83- return description ;
84- }
8570 /**
8671 * Record count
8772 *
0 commit comments