me.figo.internal.AccountIdentifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
This SDK eases the development of Java applications and web services consuming the figo connect API.
Figo connect allows developers simple access to users bank data on a trustworthy basis. Users can grant your
application access to certain parts of their bank accounts and you can access them without worrying about the
inner workings of online banking.
package me.figo.internal;
import com.google.gson.annotations.Expose;
public class AccountIdentifier {
@Expose
private String id;
@Expose
private String currency;
public AccountIdentifier(String id, String currency) {
super();
this.id = id;
this.currency = currency;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
}