Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Created by irufus on 2/18/15.
*/
public class AccountHistory {
private Integer id;
private String id;
private String created_at;
private BigDecimal amount;
private BigDecimal balance;
Expand All @@ -17,11 +17,11 @@ public class AccountHistory {

public AccountHistory() {}

public Integer getId() {
public String getId() {
return id;
}

public void setId(Integer id) {
public void setId(String id) {
this.id = id;
}

Expand Down