Skip to content

Commit

Permalink
Fixup! change user_id type
Browse files Browse the repository at this point in the history
  • Loading branch information
imnutz committed Jul 18, 2024
1 parent c9daad3 commit 7e07c39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/treasuredata/client/model/TDTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class TDTable
private final String expireDays;
private final String createdAt;
private final String updatedAt;
private final long userId;
private final Integer userId;
private final String description;

@JsonCreator
Expand All @@ -52,7 +52,7 @@ public TDTable(
@JsonProperty("expire_days") String expireDays,
@JsonProperty("created_at") String createdAt,
@JsonProperty("updated_at") String updatedAt,
@JsonProperty("user_id") long userId,
@JsonProperty("user_id") Integer userId,
@JsonProperty("description") String description
)
{
Expand Down Expand Up @@ -132,7 +132,7 @@ public String getUpdatedAt()
return updatedAt;
}

public long getUserId()
public Integer getUserId()
{
return userId;
}
Expand Down

0 comments on commit 7e07c39

Please sign in to comment.