Skip to content

Commit

Permalink
rename bank_number to bank_code for Bank model
Browse files Browse the repository at this point in the history
  • Loading branch information
javaes committed Aug 15, 2016
1 parent 95902b4 commit ad218dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/me/figo/models/Bank.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class Bank {
* Bank code
*/
@Expose
private String bank_number;
private String bank_code;

/**
* This flag indicates whether the user has chosen to save the PIN on the figo Connect server
Expand Down Expand Up @@ -65,6 +65,6 @@ public boolean isPinSaved() {
}

public String getBankNumber() {
return this.bank_number;
return this.bank_code;
}
}

0 comments on commit ad218dc

Please sign in to comment.