Skip to content

Commit ed74111

Browse files
authored
Revert "Update response for database api (#350)"
This reverts commit c0ac3b3.
1 parent f04185c commit ed74111

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/main/java/com/treasuredata/client/model/TDDatabase.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)