me.figo.models.TanScheme 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.models;
import com.google.gson.annotations.Expose;
public class TanScheme {
@Expose
private String tan_scheme_id;
@Expose
private String name;
@Expose
private String medium_name;
public String getTan_scheme_id() {
return tan_scheme_id;
}
public void setTan_scheme_id(String tan_scheme_id) {
this.tan_scheme_id = tan_scheme_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getMedium_name() {
return medium_name;
}
public void setMedium_name(String medium_name) {
this.medium_name = medium_name;
}
}