Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 1 addition & 16 deletions src/main/java/com/treasuredata/client/model/TDTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ public class TDTable
private final String expireDays;
private final String createdAt;
private final String updatedAt;
private final Integer userId;
private final String description;

@JsonCreator
public TDTable(
Expand All @@ -51,9 +49,7 @@ public TDTable(
@JsonProperty("last_log_timestamp") String lastLogTimeStamp,
@JsonProperty("expire_days") String expireDays,
@JsonProperty("created_at") String createdAt,
@JsonProperty("updated_at") String updatedAt,
@JsonProperty("user_id") Integer userId,
@JsonProperty("description") String description
@JsonProperty("updated_at") String updatedAt
)
{
this.id = id;
Expand All @@ -66,8 +62,6 @@ public TDTable(
this.expireDays = expireDays;
this.createdAt = createdAt;
this.updatedAt = updatedAt;
this.userId = userId;
this.description = description;
}

public String getId()
Expand Down Expand Up @@ -132,15 +126,6 @@ public String getUpdatedAt()
return updatedAt;
}

public Integer getUserId()
{
return userId;
}

public String getDescription()
{
return description;
}
@Override
public boolean equals(Object obj)
{
Expand Down
2 changes: 0 additions & 2 deletions src/test/java/com/treasuredata/client/TestTDClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,6 @@ public void listTables()
Set<TDTable> tableSet = new HashSet<>();
for (final TDTable t : tableList) {
logger.info("id: " + t.getId());
logger.info("user id:" + t.getUserId());
logger.info("description: " + t.getDescription());
logger.info("type: " + t.getType());
logger.info("estimated size:" + t.getEstimatedStorageSize());
logger.info("last log timestamp: " + t.getLastLogTimeStamp());
Expand Down
Loading