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 7930dc8 commit cc5d919
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/treasuredata/client/model/TDDatabase.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class TDDatabase
private final String id;
private final String name;
private final long count;
private final long userId;
private final Integer userId;
private final String description;
private final String createdAt;
private final String updatedAt;
Expand All @@ -41,7 +41,7 @@ public class TDDatabase
public TDDatabase(
@JsonProperty("id") String id,
@JsonProperty("name") String name,
@JsonProperty("user_id") long userId,
@JsonProperty("user_id") Integer userId,
@JsonProperty("description") String description,
@JsonProperty("count") long count,
@JsonProperty("created_at") String createdAt,
Expand Down Expand Up @@ -73,7 +73,7 @@ public String getName()
return name;
}

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

0 comments on commit cc5d919

Please sign in to comment.