me.figo.internal.Credentials 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 Credentials {
@Expose
public String login_id;
@Expose
public String password;
public Credentials(String login_id, String password) {
super();
this.login_id = login_id;
this.password = password;
}
public String getLogin_id() {
return login_id;
}
public void setLogin_id(String login_id) {
this.login_id = login_id;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}